text
stringlengths 1.93k
14.3k
| source
stringclasses 15
values | input_ids
sequencelengths 2.05k
2.05k
|
---|---|---|
_ping_timer);
}
switch (t->keepalive_state) {
case GRPC_CHTTP2_KEEPALIVE_STATE_WAITING:
grpc_timer_cancel(&t->keepalive_ping_timer);
break;
case GRPC_CHTTP2_KEEPALIVE_STATE_PINGING:
grpc_timer_cancel(&t->keepalive_ping_timer);
grpc_timer_cancel(&t->keepalive_watchdog_timer);
break;
case GRPC_CHTTP2_KEEPALIVE_STATE_DYING:
case GRPC_CHTTP2_KEEPALIVE_STATE_DISABLED:
// keepalive timers are not set in these two states
break;
}
// flush writable stream list to avoid dangling references
grpc_chttp2_stream* s;
while (grpc_chttp2_list_pop_writable_stream(t, &s)) {
GRPC_CHTTP2_STREAM_UNREF(s, "chttp2_writing:close");
}
GPR_ASSERT(t->write_state == GRPC_CHTTP2_WRITE_STATE_IDLE);
grpc_endpoint_shutdown(t->ep, GRPC_ERROR_REF(error));
}
if (t->notify_on_receive_settings!= nullptr) {
grpc_core::ExecCtx::Run(DEBUG_LOCATION, t->notify_on_receive_settings,
GRPC_ERROR_REF(error));
t->notify_on_receive_settings = nullptr;
}
GRPC_ERROR_UNREF(error);
}
#ifndef NDEBUG
void grpc_chttp2_stream_ref(grpc_chttp2_stream* s, const char* reason) {
grpc_stream_ref(s->refcount, reason);
}
void grpc_chttp2_stream_unref(grpc_chttp2_stream* s, const char* reason) {
grpc_stream_unref(s->refcount, reason);
}
#else
void grpc_chttp2_stream_ref(grpc_chttp2_stream* s) {
grpc_stream_ref(s->refcount);
}
void grpc_chttp2_stream_unref(grpc_chttp2_stream* s) {
grpc_stream_unref(s->refcount);
}
#endif
grpc_chttp2_stream::Reffer::Reffer(grpc_chttp2_stream* s) {
// We reserve one 'active stream' that's dropped when the stream is
// read-closed. The others are for Chttp2IncomingByteStreams that are
// actively reading
GRPC_CHTTP2_STREAM_REF(s, "chttp2");
GRPC_CHTTP2_REF_TRANSPORT(s->t, "stream");
}
grpc_chttp2_stream::grpc_chttp2_stream(grpc_chttp2_transport* t,
grpc_stream_refcount* refcount,
const void* server_data,
grpc_core::Arena* arena)
: t(t),
refcount(refcount),
reffer(this),
metadata_buffer{grpc_chttp2_incoming_metadata_buffer(arena),
grpc_chttp2_incoming_metadata_buffer(arena)} {
if (server_data) {
id = static_cast<uint32_t>((uintptr_t)server_data);
*t->accepting_stream = this;
grpc_chttp2_stream_map_add(&t->stream_map, id, this);
post_destructive_reclaimer(t);
}
if (t->flow_control->flow_control_enabled()) {
flow_control.Init<grpc_core::chttp2::StreamFlowControl>(
static_cast<grpc_core::chttp2::TransportFlowControl*>(
t->flow_control.get()),
this);
} else {
flow_control.Init<grpc_core::chttp2::StreamFlowControlDisabled>();
}
grpc_slice_buffer_init(&frame_storage);
grpc_slice_buffer_init(&unprocessed_incoming_frames_buffer);
grpc_slice_buffer_init(&flow_controlled_buffer);
GRPC_CLOSURE_INIT(&reset_byte_stream, ::reset_byte_stream, this, nullptr);
}
grpc_chttp2_stream::~grpc_chttp2_stream() {
if (t->channelz_socket!= nullptr) {
if ((t->is_client && eos_received) || (!t->is_client && eos_sent)) {
t->channelz_socket->RecordStreamSucceeded();
} else {
t->channelz_socket->RecordStreamFailed();
}
}
GPR_ASSERT((write_closed && read_closed) || id == 0);
if (id!= 0) {
GPR_ASSERT(grpc_chttp2_stream_map_find(&t->stream_map, id) == nullptr);
}
grpc_slice_buffer_destroy_internal(&unprocessed_incoming_frames_buffer);
grpc_slice_buffer_destroy_internal(&frame_storage);
if (stream_compression_method!= GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS) {
grpc_slice_buffer_destroy_internal(&compressed_data_buffer);
}
if (stream_decompression_method!=
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS) {
grpc_slice_buffer_destroy_internal(&decompressed_data_buffer);
}
grpc_chttp2_list_remove_stalled_by_transport(t, this);
grpc_chttp2_list_remove_stalled_by_stream(t, this);
for (int i = 0; i < STREAM_LIST_COUNT; i++) {
if (GPR_UNLIKELY(included[i])) {
gpr_log(GPR_ERROR, "%s stream %d still included in list %d",
t->is_client? "client" : "server", id, i);
abort();
}
}
GPR_ASSERT(send_initial_metadata_finished == nullptr);
GPR_ASSERT(fetching_send_message == nullptr);
GPR_ASSERT(send_trailing_metadata_finished == nullptr);
GPR_ASSERT(recv_initial_metadata_ready == nullptr);
GPR_ASSERT(recv_message_ready == nullptr);
GPR_ASSERT(recv_trailing_metadata_finished == nullptr);
grpc_slice_buffer_destroy_internal(&flow_controlled_buffer);
GRPC_ERROR_UNREF(read_closed_error);
GRPC_ERROR_UNREF(write_closed_error);
GRPC_ERROR_UNREF(byte_stream_error);
flow_control.Destroy();
if (t->resource_user!= nullptr) {
grpc_resource_user_free(t->resource_user, GRPC_RESOURCE_QUOTA_CALL_SIZE);
}
GRPC_CHTTP2_UNREF_TRANSPORT(t, "stream");
grpc_core::ExecCtx::Run(DEBUG_LOCATION, destroy_stream_arg, GRPC_ERROR_NONE);
}
static int init_stream(grpc_transport* gt, grpc_stream* gs,
grpc_stream_refcount* refcount, const void* server_data,
grpc_core::Arena* arena) {
GPR_TIMER_SCOPE("init_stream", 0);
grpc_chttp2_transport* t = reinterpret_cast<grpc_chttp2_transport*>(gt);
new (gs) grpc_chttp2_stream(t, refcount, server_data, arena);
return 0;
}
static void destroy_stream_locked(void* sp, grpc_error* /*error*/) {
GPR_TIMER_SCOPE("destroy_stream", 0);
grpc_chttp2_stream* s = static_cast<grpc | redpajama | [
64,
14650,
64,
26320,
558,
187,
50274,
94,
187,
50274,
16065,
313,
85,
1168,
19773,
267,
422,
64,
3409,
10,
551,
187,
50272,
5045,
9942,
5077,
64,
2775,
12348,
19,
64,
44,
35447,
1556,
11477,
64,
19247,
64,
46176,
2637,
27,
187,
50270,
737,
5902,
64,
26320,
64,
35899,
6395,
85,
1168,
19773,
267,
422,
64,
14650,
64,
26320,
558,
187,
50270,
7054,
28,
187,
50272,
5045,
9942,
5077,
64,
2775,
12348,
19,
64,
44,
35447,
1556,
11477,
64,
19247,
64,
49439,
2637,
27,
187,
50270,
737,
5902,
64,
26320,
64,
35899,
6395,
85,
1168,
19773,
267,
422,
64,
14650,
64,
26320,
558,
187,
50270,
737,
5902,
64,
26320,
64,
35899,
6395,
85,
1168,
19773,
267,
422,
64,
13060,
21428,
64,
26320,
558,
187,
50270,
7054,
28,
187,
50272,
5045,
9942,
5077,
64,
2775,
12348,
19,
64,
44,
35447,
1556,
11477,
64,
19247,
64,
32201,
2637,
27,
187,
50272,
5045,
9942,
5077,
64,
2775,
12348,
19,
64,
44,
35447,
1556,
11477,
64,
19247,
64,
15857,
2925,
23167,
27,
187,
50270,
605,
1978,
267,
422,
4522,
398,
403,
417,
873,
275,
841,
767,
3054,
187,
50270,
7054,
28,
187,
50274,
94,
535,
50274,
605,
26363,
2416,
494,
5542,
1618,
281,
3693,
277,
36874,
10414,
187,
50274,
737,
5902,
64,
348,
11344,
19,
64,
4963,
11,
256,
28,
187,
50274,
6050,
313,
737,
5902,
64,
348,
11344,
19,
64,
3550,
64,
9576,
64,
8510,
494,
64,
4963,
9,
85,
13,
708,
84,
1228,
551,
187,
50272,
6217,
5077,
64,
2775,
12348,
19,
64,
39579,
64,
4037,
15619,
9,
84,
13,
346,
348,
11344,
19,
64,
17695,
27,
10483,
3287,
187,
50274,
94,
187,
50274,
40,
3175,
64,
25202,
9,
85,
1168,
6343,
64,
3409,
2295,
9942,
5077,
64,
2775,
12348,
19,
64,
25444,
64,
19247,
64,
1838,
1843,
558,
187,
50274,
737,
5902,
64,
42882,
64,
43780,
3487,
9,
85,
1168,
554,
13,
9942,
5077,
64,
12641,
64,
15619,
9,
3775,
4027,
187,
50276,
94,
187,
50276,
338,
313,
85,
1168,
34457,
64,
251,
64,
44105,
64,
17494,
35495,
28471,
10,
551,
187,
50274,
737,
5902,
64,
6443,
1450,
12560,
5229,
89,
1450,
12965,
9,
18828,
64,
21766,
6570,
13,
246,
1168,
34457,
64,
251,
64,
44105,
64,
17494,
13,
187,
50254,
50274,
6217,
5077,
64,
12641,
64,
15619,
9,
3775,
4027,
187,
50274,
85,
1168,
34457,
64,
251,
64,
44105,
64,
17494,
426,
28471,
28,
187,
50276,
94,
187,
50276,
6217,
5077,
64,
12641,
64,
4037,
15619,
9,
3775,
558,
187,
94,
187,
187,
4,
17331,
427,
18828,
187,
4353,
650,
5902,
64,
348,
11344,
19,
64,
4963,
64,
709,
9,
737,
5902,
64,
348,
11344,
19,
64,
4963,
11,
256,
13,
1030,
1018,
11,
1921,
10,
551,
187,
50276,
737,
5902,
64,
4963,
64,
709,
9,
84,
1168,
709,
5560,
13,
1921,
558,
187,
94,
187,
4353,
650,
5902,
64,
348,
11344,
19,
64,
4963,
64,
328,
709,
9,
737,
5902,
64,
348,
11344,
19,
64,
4963,
11,
256,
13,
1030,
1018,
11,
1921,
10,
551,
187,
50276,
737,
5902,
64,
4963,
64,
328,
709,
9,
84,
1168,
709,
5560,
13,
1921,
558,
187,
94,
187,
4,
7271,
187,
4353,
650,
5902,
64,
348,
11344,
19,
64,
4963,
64,
709,
9,
737,
5902,
64,
348,
11344,
19,
64,
4963,
11,
256,
10,
551,
187,
50276,
737,
5902,
64,
4963,
64,
709,
9,
84,
1168,
709,
5560,
558,
187,
94,
187,
4353,
650,
5902,
64,
348,
11344,
19,
64,
4963,
64,
328,
709,
9,
737,
5902,
64,
348,
11344,
19,
64,
4963,
11,
256,
10,
551,
187,
50276,
737,
5902,
64,
4963,
64,
328,
709,
9,
84,
1168,
709,
5560,
558,
187,
94,
187,
4,
7287,
187,
187,
737,
5902,
64,
348,
11344,
19,
64,
4963,
1450,
1785,
4424,
1450,
1785,
4424,
9,
737,
5902,
64,
348,
11344,
19,
64,
4963,
11,
256,
10,
551,
187,
50276,
605,
844,
15917,
581,
686,
4507,
5542,
8,
326,
434,
8231,
672,
253,
5542,
310,
187,
50276,
605,
50275,
1088,
14,
13784,
15,
380,
2571,
403,
323,
330,
2413,
19,
688,
4202,
19117,
998,
9779,
326,
403,
187,
50276,
605,
50275,
39237,
4361,
187,
50276,
6217,
5077,
64,
2775,
12348,
19,
64,
39579,
64,
15619,
9,
84,
13,
346,
348,
11344,
19,
3287,
187,
50276,
6217,
5077,
64,
2775,
12348,
19,
64,
15619,
64,
37157,
4350,
7396,
9,
84,
1168,
85,
13,
346,
4963,
3287,
187,
94,
187,
187,
737,
5902,
64,
348,
11344,
19,
64,
4963,
1450,
737,
5902,
64,
348,
11344,
19,
64,
4963,
9,
737,
5902,
64,
348,
11344,
19,
64,
33788,
11,
246,
13,
187,
50254,
50263,
737,
5902,
64,
4963,
64,
709,
5560,
11,
1275,
5560,
13,
187,
50254,
50263,
3474,
2991,
11,
4771,
64,
2203,
13,
187,
50254,
50263,
737,
5902,
64,
6443,
1450,
34,
18946,
11,
23192,
10,
187,
50274,
27,
246,
9,
85,
582,
187,
50272,
709,
5560,
9,
709,
5560,
582,
187,
50272,
250,
4424,
9,
2520,
582,
187,
50272,
21552,
64,
11023,
92,
737,
5902,
64,
348,
11344,
19,
64,
249,
4202,
64,
21552,
64,
11023,
9,
6950,
66,
582,
187,
50256,
737,
5902,
64,
348,
11344,
19,
64,
249,
4202,
64,
21552,
64,
11023,
9,
6950,
66,
3117,
551,
187,
50276,
338,
313,
9438,
64,
2203,
10,
551,
187,
50274,
301,
426,
4228,
64,
4008,
29,
8531,
1237,
64,
85,
31,
4464,
8531,
4773,
64,
85,
10,
9438,
64,
2203,
558,
187,
50274,
11,
85,
1168,
14764,
272,
64,
4963,
426,
436,
28,
187,
50274,
737,
5902,
64,
348,
11344,
19,
64,
4963,
64,
4251,
64,
1911,
6395,
85,
1168,
4963,
64,
4251,
13,
2654,
13,
436,
558,
187,
50274,
5996,
64,
43739,
422,
64,
250,
34837,
9,
85,
558,
187,
50276,
94,
187,
50276,
338,
313,
85,
1168,
5449,
64,
8519,
1168,
5449,
64,
8519,
64,
22331,
6649,
551,
187,
50274,
5449,
64,
8519,
15,
10828,
29,
737,
5902,
64,
6443,
1450,
348,
11344,
19,
1450,
8093,
20671,
10588,
8743,
187,
50270,
4659,
64,
4008,
29,
737,
5902,
64,
6443,
1450,
348,
11344,
19,
1450,
33495,
20671,
10588,
46802,
187,
50266,
85,
1168,
5449,
64,
8519,
15,
788,
35632,
187,
50270,
2520,
558,
187,
50276,
94,
2010,
551,
187,
50274,
5449,
64,
8519,
15,
10828,
29,
737,
5902,
64,
6443,
1450,
348,
11344,
19,
1450,
8093,
20671,
10588,
47703,
18257,
187,
50276,
94,
535,
50276,
737,
5902,
64,
27494,
64,
11023,
64,
4478,
6395,
6301,
64,
22214,
558,
187,
50276,
737,
5902,
64,
27494,
64,
11023,
64,
4478,
6395,
328,
36981,
64,
249,
4202,
64,
27388,
64,
11023,
558,
187,
50276,
737,
5902,
64,
27494,
64,
11023,
64,
4478,
6395,
5449,
64,
16894,
64,
11023,
558,
187,
50276,
6217,
5077,
64,
3207,
2697,
10860,
64,
25844,
6395,
19511,
64,
8833,
64,
4963,
13,
12590,
19511,
64,
8833,
64,
4963,
13,
436,
13,
28471,
558,
187,
94,
187,
187,
737,
5902,
64,
348,
11344,
19,
64,
4963,
1450,
95,
737,
5902,
64,
348,
11344,
19,
64,
4963,
1082,
551,
187,
50276,
338,
313,
85,
1168,
13695,
91,
64,
25328,
35495,
28471,
10,
551,
187,
50274,
338,
6048,
85,
1168,
261,
64,
8780,
3857,
299,
375,
64,
35413,
10,
2785,
6522,
85,
1168,
261,
64,
8780,
3857,
299,
375,
64,
17094,
1228,
551,
187,
50272,
85,
1168,
13695,
91,
64,
25328,
1168,
16324,
8093,
52,
1028,
49930,
1874,
187,
50274,
94,
2010,
551,
187,
50272,
85,
1168,
13695,
91,
64,
25328,
1168,
16324,
8093,
26383,
1874,
187,
50274,
94,
187,
50276,
94,
535,
50276,
40,
3175,
64,
25202,
4464,
6343,
64,
13784,
3857,
1239,
64,
13784,
10,
2785,
2654,
2295,
470,
558,
187,
50276,
338,
313,
301,
35495,
470,
10,
551,
187,
50274,
40,
3175,
64,
25202,
9,
737,
5902,
64,
348,
11344,
19,
64,
4963,
64,
4251,
64,
8606,
6395,
85,
1168,
4963,
64,
4251,
13,
2654,
10,
2295,
28471,
558,
187,
50276,
94,
535,
50276,
737,
5902,
64,
27494,
64,
11023,
64,
26316,
64,
11577,
6395,
328,
36981,
64,
249,
4202,
64,
27388,
64,
11023,
558,
187,
50276,
737,
5902,
64,
27494,
64,
11023,
64,
26316,
64,
11577,
6395,
6301,
64,
22214,
558,
187,
50276,
338,
313,
4963,
64,
3118,
1256,
64,
9349,
35495,
9942,
5077,
64,
39579,
64,
9507,
22400,
2449,
64,
25788,
7400,
64,
9507,
22400,
10,
551,
187,
50274,
737,
5902,
64,
27494,
64,
11023,
64,
26316,
64,
11577,
6395,
3118,
2079,
64,
2203,
64,
11023,
558,
187,
50276,
94,
187,
50276,
338,
313,
4963,
64,
615,
3118,
1256,
64,
9349,
35495,
187,
50272,
6217,
5077,
64,
39579,
64,
9507,
22400,
2449,
64,
25788,
7400,
64,
2573,
9507,
22400,
10,
551,
187,
50274,
737,
5902,
64,
27494,
64,
11023,
64,
26316,
64,
11577,
6395,
615,
3118,
2079,
64,
2203,
64,
11023,
558,
187,
50276,
94,
535,
50276,
737,
5902,
64,
348,
11344,
19,
64,
3550,
64,
12163,
64,
296,
18859,
64,
1615,
64,
33788,
9,
85,
13,
436,
558,
187,
50276,
737,
5902,
64,
348,
11344,
19,
64,
3550,
64,
12163,
64,
296,
18859,
64,
1615,
64,
4963,
9,
85,
13,
436,
558,
535,
50276,
1542,
313,
565,
891,
426,
470,
28,
891,
654,
3915,
30704,
64,
23422,
64,
28784,
28,
891,
9234,
551,
187,
50274,
338,
313,
40,
3175,
64,
4037,
18206,
44,
39155,
9,
44247,
60,
74,
27829,
551,
187,
50272,
72,
1087,
64,
2808,
9,
40,
3175,
64,
12641,
13,
17280,
84,
5542,
2462,
69,
1335,
2908,
275,
1618,
2462,
69,
995,
187,
50264,
85,
1168,
261,
64,
8780,
32,
346,
8780,
3,
1163,
346,
9438,
995,
2654,
13,
891,
558,
187,
50272,
357,
430,
1874,
187,
50274,
94,
187,
50276,
94,
535,
50276,
40,
3175,
64,
25202,
9,
13161,
64,
19078,
64,
21552,
64,
36077,
2295,
28471,
558,
187,
50276,
40,
3175,
64,
25202,
9,
39792,
7695,
64,
13161,
64,
8559,
2295,
28471,
558,
187,
50276,
40,
3175,
64,
25202,
9,
13161,
64,
7604,
4837,
64,
21552,
64,
36077,
2295,
28471,
558,
187,
50276,
40,
3175,
64,
25202,
9,
46376,
64,
19078,
64,
21552,
64,
2038,
2295,
28471,
558,
187,
50276,
40,
3175,
64,
25202,
9,
46376,
64,
8559,
64,
2038,
2295,
28471,
558,
187,
50276,
40,
3175,
64,
25202,
9,
46376,
64,
7604,
4837,
64,
21552,
64,
36077,
2295,
28471,
558,
187,
50276,
737,
5902,
64,
27494,
64,
11023,
64,
26316,
64,
11577,
6395,
5449,
64,
16894,
64,
11023,
558,
187,
50276,
6217,
5077,
64,
12641,
64,
4037,
15619,
9,
1088,
64,
13784,
64,
3775,
558,
187,
50276,
6217,
5077,
64,
12641,
64,
4037,
15619,
9,
6343,
64,
13784,
64,
3775,
558,
187,
50276,
6217,
5077,
64,
12641,
64,
4037,
15619,
9,
8833,
64,
4963,
64,
3775,
558,
535,
50276,
5449,
64,
8519,
15,
42881,
1874,
535,
50276,
338,
313,
85,
1168,
15024,
64,
4537,
35495,
28471,
10,
551,
187,
50274,
737,
5902,
64,
15024,
64,
4537,
64,
4924,
9,
85,
1168,
15024,
64,
4537,
13,
9942,
5077,
64,
13045,
22656,
64,
8846,
37326,
64,
24434,
64,
12771,
558,
187,
50276,
94,
535,
50276,
6217,
5077,
64,
2775,
12348,
19,
64,
4037,
15619,
64,
37157,
4350,
7396,
9,
85,
13,
346,
4963,
3287,
187,
50276,
737,
5902,
64,
6443,
1450,
12560,
5229,
89,
1450,
12965,
9,
18828,
64,
21766,
6570,
13,
6909,
64,
4963,
64,
1662,
13,
9942,
5077,
64,
12641,
64,
32623,
558,
187,
94,
187,
187,
4659,
540,
2012,
64,
4963,
9,
737,
5902,
64,
33788,
11,
305,
85,
13,
650,
5902,
64,
4963,
11,
305,
84,
13,
187,
50255,
737,
5902,
64,
4963,
64,
709,
5560,
11,
1275,
5560,
13,
1030,
2991,
11,
4771,
64,
2203,
13,
187,
50255,
737,
5902,
64,
6443,
1450,
34,
18946,
11,
23192,
10,
551,
187,
50276,
40,
3175,
64,
25490,
947,
64,
4061,
34287,
1587,
4478,
64,
4963,
995,
470,
558,
187,
50276,
737,
5902,
64,
348,
11344,
19,
64,
33788,
11,
246,
426,
294,
22416,
64,
4008,
29,
737,
5902,
64,
348,
11344,
19,
64,
33788,
46802,
7332,
558,
187,
50276,
1826,
313,
5943,
10,
650,
5902,
64,
348,
11344,
19,
64,
4963,
9,
85,
13,
1275,
5560,
13,
4771,
64,
2203,
13,
23192,
558,
187,
50276,
2309,
470,
28,
187,
94,
187,
187,
4659,
2991,
6909,
64,
4963,
64,
30730,
9,
4353,
11,
653,
13,
650,
5902,
64,
3775,
11,
3476,
3775,
8480,
10,
551,
187,
50276,
40,
3175,
64,
25490,
947,
64,
4061,
34287,
1587,
26316,
64,
4963,
995,
470,
558,
187,
50276,
737,
5902,
64,
348,
11344,
19,
64,
4963,
11,
256,
426,
4228,
64,
4008,
29,
737,
5902
] |
, and come back right away. But after a month there's still no word from him.
>
> So God sends another angel to find out what happened to the first one. Later that day, the second angel returns with a sad look on his face. God asks him, "Did you find the first angel I sent?"
>
> "Yes, Lord, I did," he replies. "He'd been asking questions about Saddam, and now they've got him locked up at the General Security Service headquarters."
Shortly after my return to Baghdad, I attended a conference at the former lawyers syndicate organized by forty of the new political parties. As soon as I walked in the door, I was besieged by new party leaders and their often pert female personal assistants who obliged me to promise to visit their headquarters, have tea and learn more about (read: promote) their activities. The hot topic at the conference was the formation of the twenty-five-member Iraqi governing council. Most of the parties at the conference complained that Bremer's administration had given too much authority to "foreign" parties like Chalabi's Iraqi National Congress.
Although I was surprised at the prominent role given to Chalabi, considering the widespread accusations of corruption and graft against him in the Arab world, I was generally impressed with the United States' selection of the council members. The council was not the toothless group of US lackeys and sycophants I'd suspected the American administration would have preferred to have appointed. Instead, the Bremer administration hadn't shied away from appointing Iraqi Muslim leaders and other people who harbored deep suspicions about the United States and its policies in the Middle East. I have some doubts, however, about whether the US administration fully realizes what it created, giving huge authority to the Shiite merja and the Shiite Daawa (Islamic call) party, a previously militant movement Saddam had brutally and systematically crushed. I thought the United States' appointments to the council were very courageous.
But no matter what the United States did, the Iraqis weren't happy. After a few months in Iraq, I was becoming frustrated by the constant complaining I heard. Iraqis—who'd been told what to do and what to think for decades—suddenly had opinions about everything. It became impossible to turn on a television camera on a busy street in Baghdad without a crowd of people forming, yelling: "Where's our electricity? Where's our security? Where is the aid the Americans promised us?"
Sometimes I told people, "Yes, you're right. The Americans aren't doing anything right. They should re-appoint Saddam." I'd watch the life drain out of their faces.
While more could be done to improve the infrastructure in Iraq, I believe there is a fundamental reason why the Iraqis are so dissatisfied and feel so insecure. It's because they can finally vent their frustrations, speak freely and know that someone is listening. They are scared not just because of the increase of crime and bombings, but also because they don't know what will happen to Iraq and who will run it.
The Americans also opened themselves up to the avalanche of criticism by taking on the task of radically restructuring Iraqi society and fighting an often brutal guerilla war while giving the Iraqis the freedom to openly comment on what's going on around them. It's the correct, but also the most difficult approach.
Iraqis had unrealistic expectations of what the Americans would and could do after the war. After watching the US military crush what they'd been told was the powerful Iraqi armed forces, most Iraqis simply couldn't accept that the same US military wasn't able to turn on the lights in Baghdad or arrest a few thieves. It was the same disbelief I'd seen at the al-Shaab market when it was bombed during the war when people assumed American missiles couldn't have been misdirected or malfunctioned and therefore suspected the United States of foul play. Many Iraqis now concluded that the United States _wanted_ Iraq to remain in chaos in order to keep it weak, thereby easing the US/Zionist plot to plunder the nation's oil, a belief fueled by the shameful fact that the Oil Ministry was one of a few buildings the US military secured after entering Baghdad.
Although I was energized to see so much freedom in Iraq, I realized that Iraqis can't live on freedom alone. They need jobs and security too, because without them there's no way to enjoy liberty. This point was driven home when I looked up Ali.
I found Ali even more shy than usual. He smiled demurely when he saw me in the coffee shop of the hotel where I was staying, but I could tell he was depressed. I excitedly asked him how he was, and if he was still working with reporters. He said he couldn't work anymore because he'd been carjacked at gunpoint. The white Toyota Super that he'd driven throughout the war hadn't survived the initial months of peace. Ali told me he had grown tired of working in dangerous situations and was considering taking a job at a neighbor's clothing shop for almost no money. He seemed utterly apathetic. The post-war chaos and crime wave had traumatized Ali more than the war itself.
Since the fall of Baghdad on April 9, car theft, murder and rape have skyrocketed. The lawlessness was evident at the Al-Dora police station. At 8 A.M. on the day I spent as an observer at the station, Lieutenant Colonel Ala'a Hassan—a stocky twentyyear veteran cop in his late forties—started his shift by taking a report about a stolen 1997 Datsun. There were 380,000 people in his precinct and he had only a hundred officers, one telephone, two patrol cars and a pickup truck to provide them protection. There had been 60,000 police in Baghdad before the war. By mid-September, there was only a quarter of that number, although the US administration in Iraq has actively been recruiting more.
At 10:55 A.M., a grandmother walked into Lt. Col. Hassan's Spartan white office crying. She told Hassan that she'd accepted a ride from a man after she'd gotten off a bus, finding it too crowded. When she offered the man some money, however, he stole $500 from her purse, the equivalent of almost half a year's wages for most Iraqis.
"It's your fault," Hassan yelled. "You shouldn't get into a car with strangers! The situation here now isn't stable." He was frustrated. He felt powerless, and he was venting on the victim.
An hour later, a policeman told Hassan that a patrol searching for unexploded ordnance had discovered a decomposed body hidden among reeds growing along a nearby road. The body stunk like sewage when we arrived in the station's pickup truck to collect it. It was broken in three pieces and had been partially eaten by animals and insects. The police, paid $120 a month, unenthusiastically put the body in a cardboard box and carted it away. They were disgusted by the stench, but not surprised to have found a corpse tossed along the side of the road. They assumed the crime was a revenge killing, which had become commonplace.
Iraqi newspapers were full of articles of old grudges being settled. One told the story of a farmer who'd become enraged in the late 1990s in the southern city of Basra when a bureaucrat at the government Health Ministry ignored his plea for medicine for his sick cow. The farmer believed he was given the runaround because he wasn't a Baath party member or anyone important. After the war, the farmer tracked down the former bureaucrat and demanded that he pay for the cow; otherwise, the farmer threatened, he'd kill him. In Baghdad, there was a story of a bulldozer operator who'd demolished three homes of Shiite Muslims in the early 1990s on orders from the government. After the war he was approached by their relatives, who said that unless he paid for new houses, he'd pay with his life. There was no need to bluff in Baghdad, because it was easy to get away with murder. In fact, murders had become so pervasive—there were as many as seven hundred a month in Baghdad, fourteen times as many as in New York City—that one happened in front of my hotel.
A man walked up to a car, talked to a man inside it for a few minutes and then shot him in the head before escaping in a waiting vehicle. People in the neighborhood came onto the street after the shots were fired, brandishing their own guns in front of their homes and stores and squeezing off a few rounds in the air to show that they were serious. After about twenty minutes, an Iraqi police patrol arrived on the scene, but kept on driving after seeing all the armed people in the streets. The body of the murdered man remained slumped over in the car for about twelve hours, until US troops came by and took it away. I have no idea what motivated the murderer, but I was struck by how easy it had been. It made me feel as if I were a potential victim, and I wasn't alone. Iraqi women, fearing kidnap and rape, were wearing Islamic veils more than before, hoping the head coverings would make them less tempting to assailants. Iraqi men were applying the same logic to their cars. I saw several pickup trucks in Baghdad had been taken apart—the flatbeds and doors removed—making them less valuable and therefore less likely to be stolen. It was all too much for Ali. Although he'd always been withdrawn, he'd become numb since the end of the war. The enthusiasm I'd seen on his face the day the statue | redpajama | [
13,
285,
1705,
896,
987,
1977,
15,
1292,
846,
247,
1770,
627,
434,
1335,
642,
3159,
432,
779,
15,
187,
31,
209,
187,
31,
1893,
2656,
16965,
1529,
23087,
281,
1089,
562,
752,
4592,
281,
253,
806,
581,
15,
14772,
326,
1388,
13,
253,
1273,
23087,
6548,
342,
247,
8872,
1007,
327,
521,
2454,
15,
2656,
12325,
779,
13,
346,
8917,
368,
1089,
253,
806,
23087,
309,
2197,
865,
187,
31,
209,
187,
31,
346,
4374,
13,
6203,
13,
309,
858,
937,
344,
32114,
15,
346,
1328,
1871,
644,
7004,
3533,
670,
42795,
13,
285,
1024,
597,
1849,
1694,
779,
12623,
598,
387,
253,
4214,
9044,
6631,
17929,
449,
187,
187,
17624,
314,
846,
619,
1091,
281,
39759,
13,
309,
11612,
247,
8059,
387,
253,
3438,
16099,
7979,
9038,
10932,
407,
14327,
273,
253,
747,
3569,
4676,
15,
1284,
3517,
347,
309,
7428,
275,
253,
3369,
13,
309,
369,
6290,
466,
2400,
407,
747,
3128,
7038,
285,
616,
2223,
6925,
5343,
3367,
35785,
665,
26337,
479,
281,
9023,
281,
4143,
616,
17929,
13,
452,
10331,
285,
3037,
625,
670,
313,
1088,
27,
8591,
10,
616,
4712,
15,
380,
3511,
9400,
387,
253,
8059,
369,
253,
4702,
273,
253,
6818,
14,
12071,
14,
14360,
24923,
13200,
12265,
15,
5595,
273,
253,
4676,
387,
253,
8059,
19375,
326,
7528,
961,
434,
5286,
574,
1677,
1512,
1199,
6265,
281,
346,
37380,
3,
4676,
751,
39293,
18754,
434,
24923,
3313,
5759,
15,
187,
187,
8430,
309,
369,
9861,
387,
253,
11906,
2554,
1677,
281,
39293,
18754,
13,
7296,
253,
14414,
29672,
273,
16933,
285,
13684,
1411,
779,
275,
253,
8365,
1533,
13,
309,
369,
3839,
17847,
342,
253,
1986,
2077,
8,
5438,
273,
253,
12265,
2758,
15,
380,
12265,
369,
417,
253,
15205,
1417,
1387,
273,
1982,
26238,
12305,
285,
726,
68,
2689,
1103,
309,
1871,
13282,
253,
2448,
5286,
651,
452,
9013,
281,
452,
11162,
15,
7820,
13,
253,
7528,
961,
5286,
8715,
626,
439,
728,
1977,
432,
6544,
272,
24923,
8797,
7038,
285,
643,
952,
665,
37050,
2149,
3676,
44873,
670,
253,
1986,
2077,
285,
697,
7823,
275,
253,
10515,
5791,
15,
309,
452,
690,
24626,
13,
2299,
13,
670,
1880,
253,
1982,
5286,
4751,
36683,
752,
352,
3562,
13,
4933,
5699,
6265,
281,
253,
31645,
614,
4285,
6362,
285,
253,
31645,
614,
12073,
11415,
313,
34330,
280,
1067,
10,
3128,
13,
247,
3786,
41515,
4866,
42795,
574,
16325,
595,
285,
24181,
24983,
15,
309,
1869,
253,
1986,
2077,
8,
30219,
281,
253,
12265,
497,
1077,
15838,
528,
15,
187,
187,
1989,
642,
2647,
752,
253,
1986,
2077,
858,
13,
253,
9256,
261,
10345,
626,
5211,
15,
2732,
247,
1643,
2607,
275,
9256,
13,
309,
369,
7552,
23573,
407,
253,
3638,
25917,
309,
3735,
15,
9256,
261,
1128,
10002,
1871,
644,
2183,
752,
281,
513,
285,
752,
281,
1158,
323,
8007,
1128,
84,
438,
22912,
574,
11626,
670,
3253,
15,
733,
3395,
7479,
281,
1614,
327,
247,
7315,
6568,
327,
247,
10000,
6406,
275,
39759,
1293,
247,
9539,
273,
952,
9046,
13,
34553,
27,
346,
7161,
434,
776,
13978,
32,
7900,
434,
776,
3988,
32,
7900,
310,
253,
8596,
253,
7108,
12316,
441,
865,
187,
187,
20806,
309,
2183,
952,
13,
346,
4374,
13,
368,
1472,
987,
15,
380,
7108,
6403,
626,
2509,
2712,
987,
15,
1583,
943,
294,
14,
9626,
42795,
449,
309,
1871,
3698,
253,
1495,
12657,
562,
273,
616,
9365,
15,
187,
187,
6175,
625,
812,
320,
2218,
281,
3157,
253,
11319,
275,
9256,
13,
309,
2868,
627,
310,
247,
7936,
1921,
2139,
253,
9256,
261,
403,
594,
5408,
33496,
285,
1928,
594,
46519,
15,
733,
434,
984,
597,
476,
4720,
5698,
616,
15052,
569,
13,
3984,
15744,
285,
871,
326,
3095,
310,
11298,
15,
1583,
403,
16060,
417,
816,
984,
273,
253,
2572,
273,
6617,
285,
10110,
723,
13,
533,
671,
984,
597,
1053,
626,
871,
752,
588,
5108,
281,
9256,
285,
665,
588,
1408,
352,
15,
187,
187,
510,
7108,
671,
5485,
3746,
598,
281,
253,
37182,
10024,
273,
14226,
407,
3192,
327,
253,
4836,
273,
39278,
48090,
24923,
5948,
285,
8615,
271,
2223,
23180,
1149,
254,
6077,
2137,
1223,
4933,
253,
9256,
261,
253,
7185,
281,
22134,
4385,
327,
752,
434,
1469,
327,
1475,
731,
15,
733,
434,
253,
3451,
13,
533,
671,
253,
954,
2834,
2746,
15,
187,
187,
42,
376,
82,
261,
574,
46521,
12656,
273,
752,
253,
7108,
651,
285,
812,
513,
846,
253,
2137,
15,
2732,
7487,
253,
1982,
4668,
30582,
752,
597,
1871,
644,
2183,
369,
253,
6422,
24923,
12360,
5621,
13,
954,
9256,
261,
3365,
4571,
626,
2997,
326,
253,
1072,
1982,
4668,
3589,
626,
2104,
281,
1614,
327,
253,
10654,
275,
39759,
390,
5263,
247,
1643,
42727,
15,
733,
369,
253,
1072,
45582,
309,
1871,
2326,
387,
253,
355,
14,
2809,
66,
357,
2791,
672,
352,
369,
13962,
3026,
1309,
253,
2137,
672,
952,
8025,
2448,
28665,
4571,
626,
452,
644,
3731,
27481,
390,
43280,
264,
285,
3103,
13282,
253,
1986,
2077,
273,
27358,
1132,
15,
6676,
9256,
261,
1024,
7945,
326,
253,
1986,
2077,
795,
49823,
64,
9256,
281,
3464,
275,
20142,
275,
1340,
281,
1978,
352,
5075,
13,
7624,
1842,
272,
253,
1982,
16,
59,
279,
382,
7484,
281,
499,
4524,
253,
5674,
434,
4166,
13,
247,
9927,
45511,
407,
253,
14816,
1020,
958,
326,
253,
17226,
13421,
369,
581,
273,
247,
1643,
9195,
253,
1982,
4668,
14049,
846,
11734,
39759,
15,
187,
187,
8430,
309,
369,
10838,
1025,
281,
923,
594,
1199,
7185,
275,
9256,
13,
309,
8156,
326,
9256,
261,
476,
626,
3153,
327,
7185,
3815,
15,
1583,
878,
7375,
285,
3988,
1512,
13,
984,
1293,
731,
627,
434,
642,
1039,
281,
4264,
17843,
15,
831,
1127,
369,
8877,
1728,
672,
309,
3261,
598,
14355,
15,
187,
187,
42,
1119,
14355,
1014,
625,
23478,
685,
7312,
15,
754,
11373,
1471,
459,
314,
672,
344,
3047,
479,
275,
253,
8574,
8979,
273,
253,
8614,
835,
309,
369,
14596,
13,
533,
309,
812,
2028,
344,
369,
23201,
15,
309,
9049,
314,
2546,
779,
849,
344,
369,
13,
285,
604,
344,
369,
1335,
2444,
342,
16817,
15,
754,
753,
344,
4571,
626,
789,
10542,
984,
344,
1871,
644,
1113,
75,
16970,
387,
5654,
3659,
15,
380,
3168,
32714,
6053,
326,
344,
1871,
8877,
4768,
253,
2137,
8715,
626,
16139,
253,
3302,
2607,
273,
6330,
15,
14355,
2183,
479,
344,
574,
8228,
11870,
273,
2444,
275,
8312,
9534,
285,
369,
7296,
3192,
247,
2628,
387,
247,
6346,
434,
14234,
8979,
323,
2761,
642,
2583,
15,
754,
4455,
23228,
1049,
22811,
15,
380,
1501,
14,
7523,
20142,
285,
6617,
5149,
574,
1140,
21154,
1025,
14355,
625,
685,
253,
2137,
3139,
15,
187,
187,
7542,
253,
2965,
273,
39759,
327,
4162,
898,
13,
1113,
19610,
13,
7701,
285,
16773,
452,
8467,
16249,
33610,
15,
380,
1569,
23786,
369,
8943,
387,
253,
1219,
14,
37,
6464,
3513,
4660,
15,
2058,
854,
329,
15,
46,
15,
327,
253,
1388,
309,
5262,
347,
271,
19969,
387,
253,
4660,
13,
22389,
20575,
31463,
8,
66,
47420,
1128,
66,
5739,
90,
6818,
2913,
18425,
5440,
275,
521,
3563,
323,
2890,
1128,
40324,
521,
5333,
407,
3192,
247,
1304,
670,
247,
15661,
8210,
399,
1832,
328,
15,
1707,
497,
31118,
13,
933,
952,
275,
521,
3509,
4291,
285,
344,
574,
760,
247,
4289,
6251,
13,
581,
11265,
13,
767,
21820,
8458,
285,
247,
26351,
9988,
281,
2085,
731,
6055,
15,
1707,
574,
644,
3925,
13,
933,
3513,
275,
39759,
1078,
253,
2137,
15,
2896,
4260,
14,
21859,
13,
627,
369,
760,
247,
7150,
273,
326,
1180,
13,
3738,
253,
1982,
5286,
275,
9256,
556,
15257,
644,
27714,
625,
15,
187,
187,
3404,
884,
27,
2417,
329,
15,
46,
904,
247,
20606,
7428,
715,
34146,
15,
2065,
15,
47420,
434,
33789,
266,
3168,
3906,
17800,
15,
1500,
2183,
47420,
326,
703,
1871,
7607,
247,
9549,
432,
247,
637,
846,
703,
1871,
12759,
745,
247,
1685,
13,
4560,
352,
1512,
22299,
15,
2091,
703,
5907,
253,
637,
690,
2583,
13,
2299,
13,
344,
26044,
370,
5388,
432,
617,
29725,
13,
253,
6425,
273,
2761,
2716,
247,
807,
434,
17575,
323,
954,
9256,
261,
15,
187,
187,
3,
1147,
434,
634,
9331,
937,
47420,
28435,
15,
346,
1394,
10095,
626,
755,
715,
247,
1113,
342,
26636,
2,
380,
4112,
1060,
1024,
3548,
626,
6474,
449,
754,
369,
23573,
15,
754,
3543,
1612,
1417,
13,
285,
344,
369,
5698,
272,
327,
253,
5487,
15,
187,
187,
1145,
4964,
1996,
13,
247,
40677,
2183,
47420,
326,
247,
21820,
12203,
323,
35021,
7459,
4036,
79,
593,
574,
6888,
247,
45765,
2133,
8763,
2190,
294,
5797,
5675,
2112,
247,
10151,
3971,
15,
380,
2133,
331,
3938,
751,
42655,
672,
359,
7244,
275,
253,
4660,
434,
26351,
9988,
281,
4822,
352,
15,
733,
369,
7154,
275,
1264,
7437,
285,
574,
644,
10571,
22186,
407,
5074,
285,
22392,
15,
380,
3513,
13,
5087,
370,
8193,
247,
1770,
13,
440,
7385,
28954,
20595,
1691,
253,
2133,
275,
247,
40068,
3817,
285,
7281,
264,
352,
1977,
15,
1583,
497,
20538,
15172,
407,
253,
331,
15152,
13,
533,
417,
9861,
281,
452,
1119,
247,
35093,
27352,
2112,
253,
1930,
273,
253,
3971,
15,
1583,
8025,
253,
6617,
369,
247,
25442,
9811,
13,
534,
574,
2489,
47817,
15,
187,
187,
42,
376,
33980,
18930,
497,
2120,
273,
7774,
273,
1711,
650,
438,
2510,
1146,
11371,
15,
2596,
2183,
253,
2926,
273,
247,
24718,
665,
1871,
2489,
546,
34785,
275,
253,
3563,
7901,
84,
275,
253,
11053,
2846,
273,
8373,
376,
672,
247,
25126,
9296,
387,
253,
2208,
4775,
13421,
12841,
521,
12678,
323,
9921,
323,
521,
8334,
12120,
15,
380,
24718,
6566,
344,
369,
1677,
253,
1408,
16576,
984,
344,
3589,
626,
247,
11086,
506,
3128,
3558,
390,
3780,
1774,
15,
2732,
253,
2137,
13,
253,
24718,
27173,
1066,
253,
3438,
25126,
9296,
285,
15665,
326,
344,
2075,
323,
253,
12120,
28,
5010,
13,
253,
24718,
13699,
13,
344,
1871,
5159,
779,
15,
496,
39759,
13,
627,
369,
247,
2926,
273,
247,
5152,
392,
6002,
254,
5572,
665,
1871,
44550,
1264,
9076,
273,
31645,
614,
16492,
275,
253,
2393,
7901,
84,
327,
7367,
432,
253,
2208,
15,
2732,
253,
2137,
344,
369,
13781,
407,
616,
17772,
13,
665,
753,
326,
5734,
344,
5087,
323,
747,
9910,
13,
344,
1871,
2075,
342,
521,
1495,
15,
1707,
369,
642,
878,
281,
787,
2066,
275,
39759,
13,
984,
352,
369,
3477,
281,
755,
1977,
342,
7701,
15,
496,
958,
13,
29803,
574,
2489,
594,
42551,
1128,
9088,
497,
347,
1142,
347,
5093,
4289,
247,
1770,
275,
39759,
13,
25963,
2069,
347,
1142,
347,
275,
1457,
2816,
3228,
1128,
3529,
581,
4592,
275,
2914,
273,
619,
8614,
15,
187,
187,
34,
637,
7428,
598,
281,
247,
1113,
13,
10062,
281,
247,
637,
3304,
352,
323,
247,
1643,
2909,
285,
840,
5103,
779,
275,
253,
1481,
1078,
34528,
275,
247,
6179,
4958,
15,
6491,
275,
253,
9168,
2210,
4830,
253,
6406,
846,
253,
13768,
497,
11226,
13,
7138,
3647,
616,
1211,
11942,
275,
2914,
273,
616,
9076,
285,
10111,
285,
43464,
745,
247,
1643,
16334,
275,
253,
2329,
281,
921,
326,
597,
497,
4092,
15,
2732,
670,
6818,
2909,
13,
271,
24923,
3513,
21820,
7244,
327,
253,
6200,
13,
533,
4934,
327,
6276,
846,
6523,
512,
253,
12360,
952,
275,
253,
10198,
15,
380,
2133,
273,
253,
21021,
637,
6376,
1499,
26515,
689,
275,
253,
1113,
323,
670,
13265,
3038,
13,
1919,
1982,
10824,
2210,
407,
285,
2335,
352,
1977,
15,
309,
452,
642,
2934,
752,
17194,
253,
37658,
13,
533,
309,
369,
10903,
407,
849,
3477,
352,
574,
644,
15,
733,
1160,
479,
1928,
347,
604,
309,
497,
247,
2442,
5487,
13,
285,
309,
3589,
626,
3815,
15,
24923,
2255,
13,
4709,
272,
21064,
522,
285,
16773,
13,
497,
9398,
13281,
1670,
3683,
625,
685,
1078,
13,
11525,
253,
1481,
3835,
723,
651,
1056,
731,
1679,
39189,
281,
49198,
1103,
15,
24923,
1821,
497,
9433,
253,
1072,
9317,
281,
616,
8458,
15,
309,
3047,
2067,
26351,
21510,
275,
39759,
574,
644,
2668,
7419,
1128,
783,
6507,
3026,
84,
285,
11008,
5176,
1128,
11849,
731,
1679,
9865,
285,
3103,
1679,
2779,
281,
320,
15661,
15,
733,
369,
512,
1512,
1199,
323,
14355,
15,
4129,
344,
1871,
1900,
644,
26924,
13,
344,
1871,
2489,
39856,
1580,
253,
990,
273,
253,
2137,
15,
380,
23027,
309,
1871,
2326,
327,
521,
2454,
253,
1388,
253,
23957
] |
help you determine why you sometimes perform at your highest level, and what stops you from performing at your best. You can look at performance as if it were two sides of the same coin. On one side, what can I do to increase my performance level? On the other side, what can I not do that decreases my performance level? From there, it should be relatively simple to develop a strategy to enable you to perform consistently at your highest level.
Ultimately, we want to find the cause of good—even great—performance. If you can identify what causes great performance, then you can replicate that (i.e., what you can do that will induce "being in the zone"). And if you know what causes "bad" performance, you can make the necessary changes to avoid that.
## _How This Book is Organized_
Throughout this book we will suggest specific strategies (planned processes used to achieve a goal) that you can use to improve your performance behind the wheel of a race car. Without a strategy, you rarely make any constructive changes. This will include specific strategies for left/right brain integration, brain/body integration, visual integration, balance, mental preparation, building a belief system for the desired state of mind, at-track mental exercises, learning new techniques and tracks, and more. It will then be up to you to select the appropriate strategies and incorporate them into your own Personal Performance Plan.
We wanted the topics presented in this book to be easy to implement. After all, you can have all the information in the world, but if you don't do anything with it, your performance will never improve. For that reason, Appendix A is a very important part of _Inner Speed Secrets_. Appendix A is a list of all the specific strategies presented throughout the book. It is designed for you to pick and choose your very own Personal Performance Program—an overall program consisting of all the strategies you decide to use. Of course, you will need to read the first 20 chapters to gain the full understanding, and therefore motivation, to implement these strategies.
_The real key to winning races is not the race car, but you, the driver. And the key to your performance—whether you win or lose—is your mind._
We admit that you may feel a bit awkward or uncomfortable at first using some of the strategies we suggest here. Don't worry; you're not the only one. However, there are ways and places to do them where you won't feel that way. And, we're sure once you start performing at your very best on a consistent basis, everyone around you will want to know what your secret is. You can decide then if you want to show them your tools—your inner speed secrets.
Some of the strategies we suggest will not seem or feel _right_ to you, while others will. Use the ones that feel right immediately, and try the others every now and then, and make note of the changes in your performance over time. Just because a strategy doesn't feel right or seem to be making a difference, doesn't mean you should dismiss it completely. The more strategies you use on a regular basis, the better a race driver you will be.
Although we will be looking at a variety of concepts and performance strategies separately, they are all interrelated. We can separate them into chapters for discussion purposes, but it is impossible to separate them functionally. By the end of the book we hope to tie everything together, and that it will all make sense to you.
We all know that one of the necessary ingredients for each of us to do anything is motivation. There are no quick, easy fixes. We do not have a pill that will quickly increase your performance level, nor a pill to give anyone motivation. Motivation is self-directed; it comes from your inner self making a decision to implement, to follow through, to work to change the way that you do things.
This requires a commitment. Motivation and commitment can be developed more easily when you believe that what you are doing will actually be effective. This belief, however, is subject to your understanding of the process. Without the understanding, few people will accept the strategies. That is why we will explain the why and how in this book. The better you understand the concepts, the stronger your belief in their effectiveness will be, and the stronger your motivation will be to use them.
Evidence of some success is also necessary to provide continued motivation. But without implementing these strategies, there can be no evidence. We have all heard people say "I tried that once, and it didn't work." And, "I knew it wouldn't work!" If you witnessed the success we've achieved with other race drivers—some of your competitors—you would have all the evidence and motivation you need. You may be able to argue about the theory of something, but when you see and experience the results, there is no argument. Once you begin to use these strategies, you will experience firsthand the results and gain all the motivation you need to continue.
By the way, throughout this book we will refer to the race driver as "he." This is in no way meant to imply women cannot drive race cars. It is used only for simplicity's sake. In fact, we often prefer coaching women, because they are usually more open to the learning process. Many men think they already know everything, at least about driving and maybe one other subject.
This book is meant to be a tool for successful race drivers. How would you feel if the mechanic preparing your race car learned all the most up-to-date technical performance-enhancing aspects of the car, bought all the latest tools and equipment, and then left them all back at the shop? It's exactly the same with this book—it is a tool. If you don't use it, it won't help you win more races. Simple as that. And trust us, many of your competitors are already using these tools.
And no matter how much natural talent you have, it is what you do with it—how you develop it, and how often you access it all—that will determine how successful you are. Your inner speed secrets determine your performance level, and therefore, how often you win.
_Somewhere, someone is practicing. And when you
meet him in head to head competition, he will beat you!_
**—Anonymous**
(found on a wall at a canoe racing
club in Hilo, Hawaii)
_Throughout this book we will be throwing a lot of interrelated information at you all at once, hoping to tie it all together by the end. It's a lot like trying to juggle 19 balls all at once while talking about each one individually, and then catching them all at the same time._
## _**Chapter 1**_
_**Performance**_
Before we can get to what causes good and bad performance, we must first define and agree on exactly what performance is.
Western culture, and particularly competitive people like race drivers, usually define or rate performance by the outcome—the result. In other words, our perspective of performance is usually viewed in the past tense. We look at the effect rather than the cause. If you win, you tend to think of that as a great performance. If you lose, that is bad performance. But is that really what performance is all about? Is that the right way of looking at it? It is certainly one way, but we'd like to ask you to look at it differently.
Have you ever won a race after making a number of mistakes, knowing you could have done better? Was that a great performance? Have you ever finished 3rd, 5th, or even 10th, but felt you got everything possible out of your car on that day? Was that a bad performance? In other words, how many times have you performed at your own personal maximum or best, and yet not had a _great_ result, and vice versa?
_Typically, your performance as a race driver lies somewhere on the spectrum between crummy and great. Wouldn't you prefer it to be great all the time?_
By the pure definition of the word, shouldn't performance be related to how you performed, rather than on the result you achieved? We think so.
### **_INNER SPEED SECRET #1_**
**_Focus on your performance, not the result._**
We need to have a much better understanding of what causes performance—especially the performance of the driver. The performance spectrum ranges from crummy to great. We usually operate somewhere in between. From day to day, our performance level can change, although we usually have no idea why. If it's not because our skill changes from one day to the next, it must be something else. There are many potential reasons, which is why it can be so challenging to perform at a high level on a consistent basis.
#### **The Performance Model**
Over the past several years, we have developed a model that we use with every program we teach. It allows us to look at performance differently, and attempt to understand what causes performance. We call it the Performance Model. Remember that we are using _performance_ in terms of _cause_. Your time and your finishing position are the effect, or the result. Your performance is what caused the result. This model gives us a way to see, experience, and understand the cause of performance.
If we look at performance as a _cause_, then, and only then, can we define strategies. As an example, there are no cures for symptoms (effects), only remedies. We can give you two aspirin for a headache, and that may help with the symptom (pain). But it will not cure the cause of the headache.
If we can identify the cause, then we might be | redpajama | [
1361,
368,
3653,
2139,
368,
4536,
1347,
387,
634,
4585,
1268,
13,
285,
752,
14545,
368,
432,
9591,
387,
634,
1682,
15,
1422,
476,
1007,
387,
3045,
347,
604,
352,
497,
767,
7123,
273,
253,
1072,
18011,
15,
1623,
581,
1930,
13,
752,
476,
309,
513,
281,
2572,
619,
3045,
1268,
32,
1623,
253,
643,
1930,
13,
752,
476,
309,
417,
513,
326,
12075,
619,
3045,
1268,
32,
4325,
627,
13,
352,
943,
320,
4942,
2969,
281,
1287,
247,
5700,
281,
8046,
368,
281,
1347,
12724,
387,
634,
4585,
1268,
15,
187,
187,
33447,
7325,
13,
359,
971,
281,
1089,
253,
2847,
273,
1175,
1128,
9154,
1270,
1128,
24159,
15,
1310,
368,
476,
4271,
752,
5997,
1270,
3045,
13,
840,
368,
476,
25464,
326,
313,
74,
15,
70,
904,
752,
368,
476,
513,
326,
588,
10808,
346,
11952,
275,
253,
8232,
6788,
1244,
604,
368,
871,
752,
5997,
346,
14367,
3,
3045,
13,
368,
476,
1056,
253,
3309,
2544,
281,
3693,
326,
15,
187,
187,
817,
795,
2347,
831,
7225,
310,
10164,
1025,
64,
187,
187,
34937,
436,
1984,
359,
588,
1804,
2173,
8130,
313,
44752,
4870,
908,
281,
5115,
247,
4736,
10,
326,
368,
476,
897,
281,
3157,
634,
3045,
3212,
253,
9530,
273,
247,
5492,
1113,
15,
12414,
247,
5700,
13,
368,
11766,
1056,
667,
25799,
2544,
15,
831,
588,
2486,
2173,
8130,
323,
1669,
16,
918,
3998,
9554,
13,
3998,
16,
2915,
9554,
13,
5304,
9554,
13,
6654,
13,
6255,
9008,
13,
3652,
247,
9927,
985,
323,
253,
6799,
1375,
273,
2564,
13,
387,
14,
13712,
6255,
18418,
13,
4715,
747,
5609,
285,
11411,
13,
285,
625,
15,
733,
588,
840,
320,
598,
281,
368,
281,
3609,
253,
4569,
8130,
285,
19071,
731,
715,
634,
1211,
23307,
21856,
9224,
15,
187,
187,
1231,
3078,
253,
12989,
3559,
275,
436,
1984,
281,
320,
3477,
281,
3359,
15,
2732,
512,
13,
368,
476,
452,
512,
253,
1491,
275,
253,
1533,
13,
533,
604,
368,
1053,
626,
513,
2712,
342,
352,
13,
634,
3045,
588,
1620,
3157,
15,
1198,
326,
1921,
13,
17138,
329,
310,
247,
1077,
1774,
629,
273,
795,
38090,
24090,
1023,
39796,
4414,
17138,
329,
310,
247,
1618,
273,
512,
253,
2173,
8130,
3559,
4768,
253,
1984,
15,
733,
310,
4158,
323,
368,
281,
2619,
285,
5206,
634,
1077,
1211,
23307,
21856,
8246,
1128,
266,
4583,
2086,
11253,
273,
512,
253,
8130,
368,
7617,
281,
897,
15,
4683,
2282,
13,
368,
588,
878,
281,
1239,
253,
806,
1384,
23168,
281,
6351,
253,
2120,
4685,
13,
285,
3103,
16038,
13,
281,
3359,
841,
8130,
15,
187,
187,
64,
510,
1524,
2234,
281,
9880,
15820,
310,
417,
253,
5492,
1113,
13,
533,
368,
13,
253,
6254,
15,
1244,
253,
2234,
281,
634,
3045,
1128,
20094,
368,
3330,
390,
7168,
1128,
261,
634,
2564,
3333,
187,
187,
1231,
11476,
326,
368,
778,
1928,
247,
2372,
19328,
390,
20032,
387,
806,
970,
690,
273,
253,
8130,
359,
1804,
1060,
15,
5037,
626,
7664,
28,
368,
1472,
417,
253,
760,
581,
15,
1723,
13,
627,
403,
4088,
285,
5053,
281,
513,
731,
835,
368,
1912,
626,
1928,
326,
1039,
15,
1244,
13,
359,
1472,
2119,
2378,
368,
1265,
9591,
387,
634,
1077,
1682,
327,
247,
5185,
3720,
13,
4130,
1475,
368,
588,
971,
281,
871,
752,
634,
4279,
310,
15,
1422,
476,
7617,
840,
604,
368,
971,
281,
921,
731,
634,
5657,
1128,
12550,
6703,
3885,
20196,
15,
187,
187,
6080,
273,
253,
8130,
359,
1804,
588,
417,
1646,
390,
1928,
795,
918,
64,
281,
368,
13,
1223,
2571,
588,
15,
7890,
253,
4394,
326,
1928,
987,
4745,
13,
285,
1611,
253,
2571,
1046,
1024,
285,
840,
13,
285,
1056,
3877,
273,
253,
2544,
275,
634,
3045,
689,
673,
15,
3771,
984,
247,
5700,
2506,
626,
1928,
987,
390,
1646,
281,
320,
2403,
247,
3064,
13,
2506,
626,
1599,
368,
943,
5597,
352,
4336,
15,
380,
625,
8130,
368,
897,
327,
247,
3963,
3720,
13,
253,
1805,
247,
5492,
6254,
368,
588,
320,
15,
187,
187,
8430,
359,
588,
320,
2819,
387,
247,
5235,
273,
12342,
285,
3045,
8130,
11794,
13,
597,
403,
512,
734,
4919,
15,
844,
476,
4858,
731,
715,
23168,
323,
5955,
6378,
13,
533,
352,
310,
7479,
281,
4858,
731,
30333,
15,
2896,
253,
990,
273,
253,
1984,
359,
3524,
281,
13898,
3253,
2366,
13,
285,
326,
352,
588,
512,
1056,
3282,
281,
368,
15,
187,
187,
1231,
512,
871,
326,
581,
273,
253,
3309,
12696,
323,
1016,
273,
441,
281,
513,
2712,
310,
16038,
15,
1707,
403,
642,
3158,
13,
3477,
26019,
15,
844,
513,
417,
452,
247,
12575,
326,
588,
4541,
2572,
634,
3045,
1268,
13,
4543,
247,
12575,
281,
1918,
3780,
16038,
15,
9849,
7639,
310,
1881,
14,
27481,
28,
352,
3249,
432,
634,
6703,
1881,
2403,
247,
3061,
281,
3359,
13,
281,
956,
949,
13,
281,
789,
281,
1818,
253,
1039,
326,
368,
513,
1841,
15,
187,
187,
1552,
4419,
247,
11847,
15,
9849,
7639,
285,
11847,
476,
320,
3715,
625,
4354,
672,
368,
2868,
326,
752,
368,
403,
2509,
588,
2686,
320,
3576,
15,
831,
9927,
13,
2299,
13,
310,
2256,
281,
634,
4685,
273,
253,
1232,
15,
12414,
253,
4685,
13,
1643,
952,
588,
2997,
253,
8130,
15,
2064,
310,
2139,
359,
588,
5513,
253,
2139,
285,
849,
275,
436,
1984,
15,
380,
1805,
368,
2096,
253,
12342,
13,
253,
10046,
634,
9927,
275,
616,
12510,
588,
320,
13,
285,
253,
10046,
634,
16038,
588,
320,
281,
897,
731,
15,
187,
187,
49153,
273,
690,
2323,
310,
671,
3309,
281,
2085,
4821,
16038,
15,
1292,
1293,
16994,
841,
8130,
13,
627,
476,
320,
642,
1941,
15,
844,
452,
512,
3735,
952,
1333,
346,
42,
3597,
326,
2378,
13,
285,
352,
1904,
626,
789,
449,
1244,
13,
346,
42,
3260,
352,
5082,
626,
789,
1476,
1310,
368,
21153,
253,
2323,
359,
1849,
6786,
342,
643,
5492,
10865,
1128,
8826,
273,
634,
21607,
1128,
5658,
651,
452,
512,
253,
1941,
285,
16038,
368,
878,
15,
1422,
778,
320,
2104,
281,
9059,
670,
253,
3762,
273,
1633,
13,
533,
672,
368,
923,
285,
2793,
253,
1543,
13,
627,
310,
642,
4154,
15,
7243,
368,
3135,
281,
897,
841,
8130,
13,
368,
588,
2793,
806,
4608,
253,
1543,
285,
6351,
512,
253,
16038,
368,
878,
281,
4035,
15,
187,
187,
3463,
253,
1039,
13,
4768,
436,
1984,
359,
588,
3730,
281,
253,
5492,
6254,
347,
346,
248,
449,
831,
310,
275,
642,
1039,
5486,
281,
16084,
2255,
2550,
4446,
5492,
8458,
15,
733,
310,
908,
760,
323,
17647,
434,
13232,
15,
496,
958,
13,
359,
2223,
4510,
21855,
2255,
13,
984,
597,
403,
3798,
625,
1527,
281,
253,
4715,
1232,
15,
6676,
1821,
1158,
597,
2168,
871,
3253,
13,
387,
1878,
670,
6276,
285,
5046,
581,
643,
2256,
15,
187,
187,
1552,
1984,
310,
5486,
281,
320,
247,
4968,
323,
5547,
5492,
10865,
15,
1359,
651,
368,
1928,
604,
253,
39212,
13828,
634,
5492,
1113,
6311,
512,
253,
954,
598,
14,
936,
14,
2754,
7681,
3045,
14,
17305,
6816,
7794,
273,
253,
1113,
13,
8686,
512,
253,
6323,
5657,
285,
6500,
13,
285,
840,
1669,
731,
512,
896,
387,
253,
8979,
32,
733,
434,
4555,
253,
1072,
342,
436,
1984,
1128,
262,
310,
247,
4968,
15,
1310,
368,
1053,
626,
897,
352,
13,
352,
1912,
626,
1361,
368,
3330,
625,
15820,
15,
19743,
347,
326,
15,
1244,
4517,
441,
13,
1142,
273,
634,
21607,
403,
2168,
970,
841,
5657,
15,
187,
187,
1898,
642,
2647,
849,
1199,
3626,
12816,
368,
452,
13,
352,
310,
752,
368,
513,
342,
352,
1128,
5430,
368,
1287,
352,
13,
285,
849,
2223,
368,
2289,
352,
512,
1128,
3529,
588,
3653,
849,
5547,
368,
403,
15,
5402,
6703,
3885,
20196,
3653,
634,
3045,
1268,
13,
285,
3103,
13,
849,
2223,
368,
3330,
15,
187,
187,
64,
6080,
2811,
13,
3095,
310,
25815,
15,
1244,
672,
368,
50276,
187,
49422,
779,
275,
1481,
281,
1481,
7324,
13,
344,
588,
7171,
368,
26200,
187,
187,
424,
1128,
45545,
424,
50276,
187,
9,
14541,
327,
247,
3402,
387,
247,
47884,
16893,
50276,
187,
34583,
275,
17539,
80,
13,
22085,
10,
187,
187,
64,
34937,
436,
1984,
359,
588,
320,
15950,
247,
2257,
273,
734,
4919,
1491,
387,
368,
512,
387,
2378,
13,
11525,
281,
13898,
352,
512,
2366,
407,
253,
990,
15,
733,
434,
247,
2257,
751,
2820,
281,
26450,
10582,
655,
15254,
512,
387,
2378,
1223,
5015,
670,
1016,
581,
15978,
13,
285,
840,
23862,
731,
512,
387,
253,
1072,
673,
3333,
187,
187,
817,
795,
424,
13617,
337,
22521,
187,
187,
17906,
35975,
22521,
187,
187,
8639,
359,
476,
755,
281,
752,
5997,
1175,
285,
3076,
3045,
13,
359,
1364,
806,
4853,
285,
5194,
327,
4555,
752,
3045,
310,
15,
187,
187,
27733,
4466,
13,
285,
3782,
12085,
952,
751,
5492,
10865,
13,
3798,
4853,
390,
2281,
3045,
407,
253,
6454,
1128,
783,
906,
15,
496,
643,
3000,
13,
776,
8668,
273,
3045,
310,
3798,
11575,
275,
253,
2469,
29341,
15,
844,
1007,
387,
253,
1055,
2581,
685,
253,
2847,
15,
1310,
368,
3330,
13,
368,
5257,
281,
1158,
273,
326,
347,
247,
1270,
3045,
15,
1310,
368,
7168,
13,
326,
310,
3076,
3045,
15,
1292,
310,
326,
1663,
752,
3045,
310,
512,
670,
32,
1680,
326,
253,
987,
1039,
273,
2819,
387,
352,
32,
733,
310,
5604,
581,
1039,
13,
533,
359,
1871,
751,
281,
1642,
368,
281,
1007,
387,
352,
13359,
15,
187,
187,
11778,
368,
2455,
1912,
247,
5492,
846,
2403,
247,
1180,
273,
16503,
13,
8958,
368,
812,
452,
2218,
1805,
32,
12349,
326,
247,
1270,
3045,
32,
12238,
368,
2455,
6699,
495,
5784,
13,
608,
394,
13,
390,
1014,
884,
394,
13,
533,
3543,
368,
1694,
3253,
1896,
562,
273,
634,
1113,
327,
326,
1388,
32,
12349,
326,
247,
3076,
3045,
32,
496,
643,
3000,
13,
849,
1142,
2069,
452,
368,
2684,
387,
634,
1211,
3367,
4869,
390,
1682,
13,
285,
2568,
417,
574,
247,
795,
17124,
64,
906,
13,
285,
12008,
26620,
32,
187,
187,
64,
12117,
1037,
13,
634,
3045,
347,
247,
5492,
6254,
8696,
9366,
327,
253,
6637,
875,
1531,
14661,
285,
1270,
15,
14815,
79,
626,
368,
4510,
352,
281,
320,
1270,
512,
253,
673,
19712,
187,
187,
3463,
253,
6313,
5426,
273,
253,
3159,
13,
10095,
626,
3045,
320,
2905,
281,
849,
368,
2684,
13,
2581,
685,
327,
253,
906,
368,
6786,
32,
844,
1158,
594,
15,
187,
187,
4118,
30640,
1042,
21598,
23012,
1703,
6725,
1311,
2025,
1852,
18,
17906,
187,
187,
22521,
26078,
327,
634,
3045,
13,
417,
253,
906,
3333,
424,
187,
187,
1231,
878,
281,
452,
247,
1199,
1805,
4685,
273,
752,
5997,
3045,
1128,
20432,
253,
3045,
273,
253,
6254,
15,
380,
3045,
6637,
13794,
432,
1531,
14661,
281,
1270,
15,
844,
3798,
10196,
9366,
275,
875,
15,
4325,
1388,
281,
1388,
13,
776,
3045,
1268,
476,
1818,
13,
3738,
359,
3798,
452,
642,
2934,
2139,
15,
1310,
352,
434,
417,
984,
776,
10861,
2544,
432,
581,
1388,
281,
253,
1735,
13,
352,
1364,
320,
1633,
2010,
15,
1707,
403,
1142,
2442,
4606,
13,
534,
310,
2139,
352,
476,
320,
594,
11132,
281,
1347,
387,
247,
1029,
1268,
327,
247,
5185,
3720,
15,
187,
187,
1835,
1401,
510,
21856,
10031,
424,
187,
187,
5279,
253,
2469,
2067,
1107,
13,
359,
452,
3715,
247,
1566,
326,
359,
897,
342,
1046,
2086,
359,
9798,
15,
733,
4483,
441,
281,
1007,
387,
3045,
13359,
13,
285,
3177,
281,
2096,
752,
5997,
3045,
15,
844,
1067,
352,
253,
21856,
10031,
15,
18741,
326,
359,
403,
970,
795,
24159,
64,
275,
2426,
273,
795,
18923,
4414,
5402,
673,
285,
634,
19083,
1899,
403,
253,
1055,
13,
390,
253,
906,
15,
5402,
3045,
310,
752,
4269,
253,
906,
15,
831,
1566,
4245,
441,
247,
1039,
281,
923,
13,
2793,
13,
285,
2096,
253,
2847,
273,
3045,
15,
187,
187,
2042,
359,
1007,
387,
3045,
347,
247,
795,
18923,
7481,
840,
13,
285,
760,
840,
13,
476,
359,
4853,
8130,
15,
1284,
271,
1650,
13,
627,
403,
642,
260,
980,
323,
5917,
313,
29907,
582,
760,
24371,
15,
844,
476,
1918,
368,
767,
39764,
323,
247,
24934,
13,
285,
326,
778,
1361,
342,
253,
19831,
313,
31406,
481,
1292,
352,
588,
417,
16498,
253,
2847,
273,
253,
24934,
15,
187,
187,
2042,
359,
476,
4271,
253,
2847,
13,
840,
359,
1537,
320
] |
.running = true;
if (util.onVisualLineMode) {
var originRow = editor.selection.visualLineStart;
var cursorRow = editor.getCursorPosition().row;
if(originRow <= cursorRow) {
var endLine = editor.session.getLine(cursorRow);
editor.selection.clearSelection();
editor.selection.moveCursorTo(originRow, 0);
editor.selection.selectTo(cursorRow, endLine.length);
} else {
var endLine = editor.session.getLine(originRow);
editor.selection.clearSelection();
editor.selection.moveCursorTo(originRow, endLine.length);
editor.selection.selectTo(cursorRow, 0);
}
}
handleCursorMove.running = false;
return;
}
else {
if (e && (util.onVisualLineMode || util.onVisualMode)) {
editor.selection.clearSelection();
util.normalMode(editor);
}
handleCursorMove.running = true;
var pos = editor.getCursorPosition();
var lineLen = editor.session.getLine(pos.row).length;
if (lineLen && pos.column === lineLen)
editor.navigateLeft();
handleCursorMove.running = false;
}
};
});
define('ace/keyboard/vim/maps/util', ['require', 'exports','module', 'ace/keyboard/vim/registers', 'ace/lib/dom'], function(require, exports, module) {
var registers = require("../registers");
var dom = require("../../../lib/dom");
dom.importCssString('.insert-mode.ace_cursor{\
border-left: 2px solid #333333;\
}\
.ace_dark.insert-mode.ace_cursor{\
border-left: 2px solid #eeeeee;\
}\
.normal-mode.ace_cursor{\
border: 0!important;\
background-color: red;\
opacity: 0.5;\
}', 'vimMode');
module.exports = {
onVisualMode: false,
onVisualLineMode: false,
currentMode: 'normal',
noMode: function(editor) {
editor.unsetStyle('insert-mode');
editor.unsetStyle('normal-mode');
if (editor.commands.recording)
editor.commands.toggleRecording(editor);
editor.setOverwrite(false);
},
insertMode: function(editor) {
this.currentMode = 'insert';
editor.setStyle('insert-mode');
editor.unsetStyle('normal-mode');
editor.setOverwrite(false);
editor.keyBinding.$data.buffer = "";
editor.keyBinding.$data.state = "insertMode";
this.onVisualMode = false;
this.onVisualLineMode = false;
if(this.onInsertReplaySequence) {
editor.commands.macro = this.onInsertReplaySequence;
editor.commands.replay(editor);
this.onInsertReplaySequence = null;
this.normalMode(editor);
} else {
editor._emit("changeStatus");
if(!editor.commands.recording)
editor.commands.toggleRecording(editor);
}
},
normalMode: function(editor) {
this.currentMode = 'normal';
editor.unsetStyle('insert-mode');
editor.setStyle('normal-mode');
editor.clearSelection();
var pos;
if (!editor.getOverwrite()) {
pos = editor.getCursorPosition();
if (pos.column > 0)
editor.navigateLeft();
}
editor.setOverwrite(true);
editor.keyBinding.$data.buffer = "";
editor.keyBinding.$data.state = "start";
this.onVisualMode = false;
this.onVisualLineMode = false;
editor._emit("changeStatus");
if (editor.commands.recording) {
editor.commands.toggleRecording(editor);
return editor.commands.macro;
}
else {
return [];
}
},
visualMode: function(editor, lineMode) {
if (
(this.onVisualLineMode && lineMode)
|| (this.onVisualMode &&!lineMode)
) {
this.normalMode(editor);
return;
}
editor.setStyle('insert-mode');
editor.unsetStyle('normal-mode');
editor._emit("changeStatus");
if (lineMode) {
this.onVisualLineMode = true;
} else {
this.onVisualMode = true;
this.onVisualLineMode = false;
}
},
getRightNthChar: function(editor, cursor, ch, n) {
var line = editor.getSession().getLine(cursor.row);
var matches = line.substr(cursor.column + 1).split(ch);
return n < matches.length? matches.slice(0, n).join(ch).length : null;
},
getLeftNthChar: function(editor, cursor, ch, n) {
var line = editor.getSession().getLine(cursor.row);
var matches = line.substr(0, cursor.column).split(ch);
return n < matches.length? matches.slice(-1 * n).join(ch).length : null;
},
toRealChar: function(ch) {
if (ch.length === 1)
return ch;
if (/^shift-./.test(ch))
return ch[ch.length - 1].toUpperCase();
else
return "";
},
copyLine: function(editor) {
var pos = editor.getCursorPosition();
editor.selection.clearSelection();
editor.moveCursorTo(pos.row, pos.column);
editor.selection.selectLine();
registers._default.isLine = true;
registers._default.text = editor.getCopyText().replace(/\n$/, "");
editor.selection.clearSelection();
editor.moveCursorTo(pos.row, pos.column);
}
};
});
define('ace/keyboard/vim/registers', ['require', 'exports','module' ], function(require, exports, module) {
"never use strict";
module.exports = {
_default: {
text: "",
isLine: false
}
};
});
define('ace/keyboard/vim/maps/motions', ['require', 'exports','module', 'ace/keyboard/vim/maps/util', 'ace/search', 'ace/range'], function(require, exports, module) {
var util = require("./util");
var keepScrollPosition = function(editor, fn) {
var scrollTopRow = editor.renderer.getScrollTopRow();
var initialRow = editor.getCursorPosition().row;
var diff = initialRow - scrollTopRow;
fn && fn.call(editor);
editor.renderer.scrollToRow(editor.getCursorPosition().row - diff);
};
function Motion(m) {
if (typeof m == "function") {
var getPos = m;
m = this;
} else {
var getPos = m.getPos;
}
m.nav = function(editor, range, count, param) {
var a = getPos(editor, range, count, param, false);
if (!a)
return;
editor.clearSelection();
editor.moveCursorTo(a.row, a.column);
};
m.sel = function(editor, range, count, param) {
var a = getPos(editor, range, count, param, true);
if (!a)
return;
editor.selection.selectTo(a.row, a.column);
};
return m;
}
var nonWordRe = /[\s.\/\\()\"'-:,.;<>~!@#$%^&*|+=\[\]{}`~?]/;
var wordSeparatorRe = /[.\/\\()\"'-:,.;<>~!@#$%^&*|+=\[\]{}`~?]/;
var whiteRe = /\s/;
var StringStream = function(editor, cursor) {
var sel = editor.selection; | redpajama | [
15,
24220,
426,
2032,
28,
187,
50270,
338,
313,
8906,
15,
251,
25889,
7557,
10715,
10,
551,
187,
50266,
2044,
6510,
10990,
426,
8121,
15,
27423,
15,
34309,
7557,
8252,
28,
187,
50266,
2044,
20482,
10990,
426,
8121,
15,
788,
31620,
13883,
5023,
736,
28,
187,
50266,
338,
9,
27422,
10990,
11049,
20482,
10990,
10,
551,
187,
50262,
2044,
990,
7557,
426,
8121,
15,
12426,
15,
788,
7557,
9,
14849,
10990,
558,
187,
50262,
20511,
15,
27423,
15,
8250,
23474,
1874,
187,
50262,
20511,
15,
27423,
15,
15106,
31620,
1992,
9,
27422,
10990,
13,
470,
558,
187,
50262,
20511,
15,
27423,
15,
7135,
1992,
9,
14849,
10990,
13,
990,
7557,
15,
3985,
558,
187,
50266,
94,
2010,
551,
187,
50262,
2044,
990,
7557,
426,
8121,
15,
12426,
15,
788,
7557,
9,
27422,
10990,
558,
187,
50262,
20511,
15,
27423,
15,
8250,
23474,
1874,
187,
50262,
20511,
15,
27423,
15,
15106,
31620,
1992,
9,
27422,
10990,
13,
990,
7557,
15,
3985,
558,
187,
50262,
20511,
15,
27423,
15,
7135,
1992,
9,
14849,
10990,
13,
470,
558,
187,
50266,
94,
187,
50270,
94,
187,
50270,
13393,
31620,
19815,
15,
24220,
426,
3221,
28,
187,
50270,
2309,
28,
187,
50274,
94,
187,
50274,
7271,
551,
187,
50270,
338,
313,
70,
3857,
313,
8906,
15,
251,
25889,
7557,
10715,
2785,
4981,
15,
251,
25889,
10715,
1228,
551,
187,
50266,
20511,
15,
27423,
15,
8250,
23474,
1874,
187,
50266,
8906,
15,
6320,
10715,
9,
20511,
558,
187,
50270,
94,
535,
50270,
13393,
31620,
19815,
15,
24220,
426,
2032,
28,
187,
50270,
2044,
803,
426,
8121,
15,
788,
31620,
13883,
1874,
187,
50270,
2044,
1386,
18378,
426,
8121,
15,
12426,
15,
788,
7557,
9,
993,
15,
736,
481,
3985,
28,
535,
50270,
338,
313,
1282,
18378,
3857,
803,
15,
11631,
11013,
1386,
18378,
10,
187,
50266,
20511,
15,
8002,
12894,
11875,
1874,
187,
50270,
13393,
31620,
19815,
15,
24220,
426,
3221,
28,
187,
50274,
94,
187,
4718,
187,
9897,
187,
3182,
2073,
584,
16,
2364,
4697,
16,
35676,
16,
23226,
16,
8906,
1383,
14412,
15684,
1383,
686,
23756,
1383,
686,
8640,
8,
1157,
686,
584,
16,
2364,
4697,
16,
35676,
16,
1747,
8328,
1383,
686,
584,
16,
4658,
16,
3335,
16445,
1159,
9,
15684,
13,
24217,
13,
6333,
10,
551,
187,
2044,
25611,
426,
2430,
1587,
3043,
1747,
8328,
3287,
187,
187,
2044,
2328,
426,
2430,
1587,
4598,
3043,
4658,
16,
3335,
3287,
187,
3335,
15,
2948,
36,
859,
2776,
27174,
14447,
14,
9561,
964,
584,
64,
14849,
464,
187,
50274,
14224,
14,
1274,
27,
374,
3498,
4891,
1852,
26409,
1610,
7405,
187,
889,
187,
15,
584,
64,
19001,
15,
14447,
14,
9561,
964,
584,
64,
14849,
464,
187,
50274,
14224,
14,
1274,
27,
374,
3498,
4891,
1852,
47285,
1796,
7405,
187,
889,
187,
15,
6320,
14,
9561,
964,
584,
64,
14849,
464,
187,
50274,
14224,
27,
470,
2,
18108,
7405,
187,
50274,
11814,
14,
4897,
27,
2502,
7405,
187,
50274,
44459,
27,
470,
15,
22,
7405,
187,
94,
1383,
686,
35676,
10715,
5137,
187,
187,
8640,
15,
23756,
426,
551,
187,
50274,
251,
25889,
10715,
27,
3221,
13,
187,
50274,
251,
25889,
7557,
10715,
27,
3221,
13,
187,
50274,
6259,
10715,
27,
686,
6320,
1383,
187,
50274,
2369,
10715,
27,
1159,
9,
20511,
10,
551,
187,
50270,
20511,
15,
328,
1178,
11446,
2073,
14447,
14,
9561,
5137,
187,
50270,
20511,
15,
328,
1178,
11446,
2073,
6320,
14,
9561,
5137,
187,
50270,
338,
313,
20511,
15,
44291,
15,
2845,
1573,
10,
187,
50266,
20511,
15,
44291,
15,
23112,
6116,
1573,
9,
20511,
558,
187,
50270,
20511,
15,
1178,
5279,
6343,
9,
7750,
558,
187,
50274,
2023,
187,
50274,
14447,
10715,
27,
1159,
9,
20511,
10,
551,
187,
50270,
2520,
15,
6259,
10715,
426,
686,
14447,
5618,
187,
50270,
20511,
15,
1178,
11446,
2073,
14447,
14,
9561,
5137,
187,
50270,
20511,
15,
328,
1178,
11446,
2073,
6320,
14,
9561,
5137,
535,
50270,
20511,
15,
1178,
5279,
6343,
9,
7750,
558,
187,
50270,
20511,
15,
2364,
20568,
10506,
2203,
15,
11023,
426,
29707,
187,
50270,
20511,
15,
2364,
20568,
10506,
2203,
15,
3409,
426,
346,
14447,
10715,
3664,
187,
50270,
2520,
15,
251,
25889,
10715,
426,
3221,
28,
187,
50270,
2520,
15,
251,
25889,
7557,
10715,
426,
3221,
28,
187,
50270,
338,
9,
2520,
15,
251,
26698,
1785,
1993,
26102,
10,
551,
187,
50266,
20511,
15,
44291,
15,
35074,
426,
436,
15,
251,
26698,
1785,
1993,
26102,
28,
187,
50266,
20511,
15,
44291,
15,
250,
1993,
9,
20511,
558,
187,
50266,
2520,
15,
251,
26698,
1785,
1993,
26102,
426,
3635,
28,
187,
50266,
2520,
15,
6320,
10715,
9,
20511,
558,
187,
50270,
94,
2010,
551,
187,
50266,
20511,
3333,
35999,
1587,
4168,
9505,
3287,
187,
50266,
338,
20273,
20511,
15,
44291,
15,
2845,
1573,
10,
187,
50262,
20511,
15,
44291,
15,
23112,
6116,
1573,
9,
20511,
558,
187,
50270,
94,
187,
50274,
2023,
187,
50274,
6320,
10715,
27,
1159,
9,
20511,
10,
551,
187,
50270,
2520,
15,
6259,
10715,
426,
686,
6320,
5618,
535,
50270,
20511,
15,
328,
1178,
11446,
2073,
14447,
14,
9561,
5137,
187,
50270,
20511,
15,
1178,
11446,
2073,
6320,
14,
9561,
5137,
187,
50270,
20511,
15,
8250,
23474,
1874,
535,
50270,
2044,
803,
28,
187,
50270,
338,
6522,
20511,
15,
788,
5279,
6343,
6649,
551,
187,
50266,
993,
426,
8121,
15,
788,
31620,
13883,
1874,
187,
50266,
338,
313,
993,
15,
11631,
2239,
470,
10,
187,
50262,
20511,
15,
8002,
12894,
11875,
1874,
187,
50270,
94,
535,
50270,
20511,
15,
1178,
5279,
6343,
9,
5672,
558,
187,
50270,
20511,
15,
2364,
20568,
10506,
2203,
15,
11023,
426,
29707,
187,
50270,
20511,
15,
2364,
20568,
10506,
2203,
15,
3409,
426,
346,
5478,
3664,
187,
50270,
2520,
15,
251,
25889,
10715,
426,
3221,
28,
187,
50270,
2520,
15,
251,
25889,
7557,
10715,
426,
3221,
28,
187,
50270,
20511,
3333,
35999,
1587,
4168,
9505,
3287,
187,
50270,
338,
313,
20511,
15,
44291,
15,
2845,
1573,
10,
551,
187,
50266,
20511,
15,
44291,
15,
23112,
6116,
1573,
9,
20511,
558,
187,
50266,
2309,
8121,
15,
44291,
15,
35074,
28,
187,
50270,
94,
187,
50270,
7271,
551,
187,
50266,
2309,
26991,
187,
50270,
94,
187,
50274,
2023,
187,
50274,
34309,
10715,
27,
1159,
9,
20511,
13,
1386,
10715,
10,
551,
187,
50270,
338,
313,
187,
50266,
9,
2520,
15,
251,
25889,
7557,
10715,
3857,
1386,
10715,
10,
187,
50266,
9473,
313,
2520,
15,
251,
25889,
10715,
3857,
2195,
1282,
10715,
10,
187,
50270,
10,
551,
187,
50266,
2520,
15,
6320,
10715,
9,
20511,
558,
187,
50266,
2309,
28,
187,
50270,
94,
535,
50270,
20511,
15,
1178,
11446,
2073,
14447,
14,
9561,
5137,
187,
50270,
20511,
15,
328,
1178,
11446,
2073,
6320,
14,
9561,
5137,
535,
50270,
20511,
3333,
35999,
1587,
4168,
9505,
3287,
187,
50270,
338,
313,
1282,
10715,
10,
551,
187,
50266,
2520,
15,
251,
25889,
7557,
10715,
426,
2032,
28,
187,
50270,
94,
2010,
551,
187,
50266,
2520,
15,
251,
25889,
10715,
426,
2032,
28,
187,
50266,
2520,
15,
251,
25889,
7557,
10715,
426,
3221,
28,
187,
50270,
94,
187,
50274,
2023,
187,
50274,
788,
8455,
47,
394,
8662,
27,
1159,
9,
20511,
13,
20482,
13,
448,
13,
295,
10,
551,
187,
50270,
2044,
1386,
426,
8121,
15,
788,
16282,
5023,
788,
7557,
9,
14849,
15,
736,
558,
187,
50270,
2044,
10129,
426,
1386,
15,
39765,
9,
14849,
15,
11631,
559,
337,
481,
9148,
9,
348,
558,
535,
50270,
2309,
295,
654,
10129,
15,
3985,
3736,
10129,
15,
27494,
9,
17,
13,
295,
481,
13956,
9,
348,
481,
3985,
1163,
3635,
28,
187,
50274,
2023,
187,
50274,
788,
11875,
47,
394,
8662,
27,
1159,
9,
20511,
13,
20482,
13,
448,
13,
295,
10,
551,
187,
50270,
2044,
1386,
426,
8121,
15,
788,
16282,
5023,
788,
7557,
9,
14849,
15,
736,
558,
187,
50270,
2044,
10129,
426,
1386,
15,
39765,
9,
17,
13,
20482,
15,
11631,
481,
9148,
9,
348,
558,
535,
50270,
2309,
295,
654,
10129,
15,
3985,
3736,
10129,
15,
27494,
1490,
18,
475,
295,
481,
13956,
9,
348,
481,
3985,
1163,
3635,
28,
187,
50274,
2023,
187,
50274,
936,
17642,
8662,
27,
1159,
9,
348,
10,
551,
187,
50270,
338,
313,
348,
15,
3985,
11013,
337,
10,
187,
50266,
2309,
448,
28,
535,
50270,
338,
46633,
63,
11551,
14,
11379,
15,
2566,
9,
348,
1228,
187,
50266,
2309,
448,
60,
348,
15,
3985,
428,
337,
1570,
936,
34252,
11247,
1874,
187,
50270,
7271,
187,
50266,
2309,
29707,
187,
50274,
2023,
187,
50274,
12557,
7557,
27,
1159,
9,
20511,
10,
551,
187,
50270,
2044,
803,
426,
8121,
15,
788,
31620,
13883,
1874,
187,
50270,
20511,
15,
27423,
15,
8250,
23474,
1874,
187,
50270,
20511,
15,
15106,
31620,
1992,
9,
993,
15,
736,
13,
803,
15,
11631,
558,
187,
50270,
20511,
15,
27423,
15,
7135,
7557,
1874,
187,
50270,
1747,
8328,
3333,
6986,
15,
261,
7557,
426,
2032,
28,
187,
50270,
1747,
8328,
3333,
6986,
15,
1156,
426,
8121,
15,
788,
17491,
4312,
5023,
13481,
9,
6602,
79,
32865,
13,
346,
3287,
187,
50270,
20511,
15,
27423,
15,
8250,
23474,
1874,
187,
50270,
20511,
15,
15106,
31620,
1992,
9,
993,
15,
736,
13,
803,
15,
11631,
558,
187,
50274,
94,
187,
4718,
187,
9897,
187,
187,
3182,
2073,
584,
16,
2364,
4697,
16,
35676,
16,
1747,
8328,
1383,
14412,
15684,
1383,
686,
23756,
1383,
686,
8640,
8,
11337,
1159,
9,
15684,
13,
24217,
13,
6333,
10,
551,
187,
187,
3,
7594,
897,
7654,
3664,
187,
187,
8640,
15,
23756,
426,
551,
187,
50274,
64,
6986,
27,
551,
187,
50270,
1156,
27,
18586,
187,
50270,
261,
7557,
27,
3221,
187,
50274,
94,
187,
4718,
187,
187,
9897,
535,
187,
3182,
2073,
584,
16,
2364,
4697,
16,
35676,
16,
23226,
16,
24013,
621,
1383,
14412,
15684,
1383,
686,
23756,
1383,
686,
8640,
8,
1157,
686,
584,
16,
2364,
4697,
16,
35676,
16,
23226,
16,
8906,
1383,
686,
584,
16,
8716,
1383,
686,
584,
16,
6324,
16445,
1159,
9,
15684,
13,
24217,
13,
6333,
10,
551,
535,
187,
2044,
4981,
426,
2430,
1587,
11379,
8906,
3287,
187,
187,
2044,
1978,
23772,
13883,
426,
1159,
9,
20511,
13,
21486,
10,
551,
187,
50274,
2044,
14084,
11387,
10990,
426,
8121,
15,
445,
21052,
15,
788,
23772,
11387,
10990,
1874,
187,
50274,
2044,
3302,
10990,
426,
8121,
15,
788,
31620,
13883,
5023,
736,
28,
187,
50274,
2044,
2171,
426,
3302,
10990,
428,
14084,
11387,
10990,
28,
187,
50274,
4174,
3857,
21486,
15,
4065,
9,
20511,
558,
187,
50274,
20511,
15,
445,
21052,
15,
22860,
1992,
10990,
9,
20511,
15,
788,
31620,
13883,
5023,
736,
428,
2171,
558,
187,
4718,
187,
187,
3701,
16066,
9,
78,
10,
551,
187,
50274,
338,
313,
25833,
278,
2295,
346,
3701,
2807,
551,
187,
50270,
2044,
755,
13839,
426,
278,
28,
187,
50270,
78,
426,
436,
28,
187,
50274,
94,
2010,
551,
187,
50270,
2044,
755,
13839,
426,
278,
15,
788,
13839,
28,
187,
50274,
94,
187,
50274,
78,
15,
8002,
426,
1159,
9,
20511,
13,
2491,
13,
1385,
13,
2236,
10,
551,
187,
50270,
2044,
247,
426,
755,
13839,
9,
20511,
13,
2491,
13,
1385,
13,
2236,
13,
3221,
558,
187,
50270,
338,
6522,
66,
10,
187,
50266,
2309,
28,
187,
50270,
20511,
15,
8250,
23474,
1874,
187,
50270,
20511,
15,
15106,
31620,
1992,
9,
66,
15,
736,
13,
247,
15,
11631,
558,
187,
50274,
4718,
187,
50274,
78,
15,
2034,
426,
1159,
9,
20511,
13,
2491,
13,
1385,
13,
2236,
10,
551,
187,
50270,
2044,
247,
426,
755,
13839,
9,
20511,
13,
2491,
13,
1385,
13,
2236,
13,
2032,
558,
187,
50270,
338,
6522,
66,
10,
187,
50266,
2309,
28,
187,
50270,
20511,
15,
27423,
15,
7135,
1992,
9,
66,
15,
736,
13,
247,
15,
11631,
558,
187,
50274,
4718,
187,
50274,
2309,
278,
28,
187,
94,
187,
187,
2044,
1327,
22093,
1785,
426,
1227,
5709,
84,
4880,
16,
3353,
1082,
10632,
17035,
27,
13,
9944,
36784,
95,
2,
33,
4,
5,
6,
63,
7,
11,
93,
34788,
1447,
696,
15564,
65,
95,
32,
32666,
28,
187,
2044,
3159,
38830,
1080,
1785,
426,
1227,
60,
4880,
16,
3353,
1082,
10632,
17035,
27,
13,
9944,
36784,
95,
2,
33,
4,
5,
6,
63,
7,
11,
93,
34788,
1447,
696,
15564,
65,
95,
32,
32666,
28,
187,
2044,
3168,
1785,
426,
43933,
84,
16,
28,
187,
2044,
4605,
8093,
426,
1159,
9,
20511,
13,
20482,
10,
551,
187,
50274,
2044,
11329,
426,
8121,
15,
27423,
28
] |
:
How can I get RUNPATH to be passed down to subsequent SOs during indirect linking?
As explained in this answer, you can't.
The best approach is to fix all libraries to be self-sufficient (have their own correct RUNPATH).
If you can't do that, use RPATH instead of RUNPATH, by adding -Wl,--disable-new-dtags to the link line.
<|endoftext|>Retinoblastoma is a childhood cancer arising from immature retinal cells in one or both eyes. It can strike from the time the child is in the womb up to 5 years of age.
This cancer is curable if caught early enough.
Retinoblastoma is a relatively uncommon tumour of childhood that accounts for 3% of the cancers in children under the age of 15. The tumour originates in the retina, the light sensitive area of the eye, which enables the eye to see. It can involve one or both eyes, in 90% of cases there is no family history.
A white ‘glow’ in the pupil of one or both eyes in dim light.
Although it is very rare, retinoblastoma is a very serious eye condition and can usually be totally cured if diagnosed early enough. If you have any worries about your child, ask our optometrists.<|endoftext|>Former Potters Bar takeaway owner admits food hygiene breaches
Anne Suslak
Food hygiene standards breaches at Curry Garden in Potters Bar in February 2016.
A former Potters Bar takeaway owner has been ordered to pay more than £8,000 for showing "wilful blindness" while failing to comply with hygiene regulations.
Kawsar Miah, 27, who works at Curry Garden in High Street, Potters Bar, initially pleaded not guilty to six counts of failing to comply with EU provision concerning food safety and hygiene, and two counts of failing to comply with hygiene improvement notices.
Miah appeared in St Albans Magistrates’ Court today.
He was persuaded to change his plea to guilty after magistrates warned him he could face substantial costs if found guilty after a not guilty plea, and as he had no legal representation.
William Winters, of Hertsmere Borough Council, prosecuting, said: “The premises is a takeaway establishment and was first inspected in December 2014.
“There was no food safety management system and a lack of staff training in food safety procedures. In January 2015 only partial compliance was achieved.”
According to Mr Winters, a further inspection on March 27, 2016 showed “an unacceptable practice of leaving frozen food deliveries in the yard alongside the rubbish”.
He said: “He was advised to raise and maintain food hygiene standards. There were dirty conditions and not enough effort made to prevent E-coli. There were poor conditions of food preparation equipment and poor pest control.”
Magistrate David McCall said: “It has had a long and protracted history and Mr Miah has not helped himself. He had numerous opportunities to rectify the situation and he has failed to do so.”
Miah, who works at McDonald’s in London Colney, still works at Curry Garden, but his cousin has taken over the running of the restaurant.
Defending himself, Miah told magistrates he hoped they would take his limited means into account when ordering him to pay costs.
Mr McCall said: “The sequence of events here has been quite appalling. You failed to address official notices that were sent to you.
“We believe that you showed wilful blindness to the offending and failed to make any significant changes in that period. You can’t run a restaurant from which people ingest food and not be up to European standards.”
Miah, of Dellfield, St Albans, was ordered to pay a total of £8,445.75, paying in instalments of £150 per week.
Curry Garden was given a food hygiene rating of ‘one’, meaning major improvement is necessary, in the most recent inspection in January this year.
A spokeswoman for Hertsmere Council confirmed that the standards have since improved, but the restaurant will need to apply for a re-inspection to be given a new rating.
Curry Garden.
Hertsmere Borough Council
Hertsmere<|endoftext|>Fullertown is an unincorporated community in Geauga County, in the U.S. state of Ohio.
History
A post office called Fullertown was established in 1879, and remained in operation until 1906. The community was named for Thomas Fuller, an early settler.
References
Unincorporated communities in Geauga County, Ohio
Unincorporated communities in Ohio<|endoftext|>Q: Using MSID/MID with leaflet to display Google My Maps data I'm wondering if there is a way to display MSID/MID with leaflet.
I found this forum below;
Any way I can load KML data from Google maps (again) via JS API?
KMZs work fantastically with the arcgis and google API (kmlLayer) but I can't seem to find any information on using a kmz with leaflet.
I'd prefer not having to Unzip locally, and omnivore does not appear to work with KMZs.
A: I haven't got any solutions for accessing KMZ files via a My Maps MSID/MID in Leaflet. However, in general, to load a KMZ file in Leaflet, you can use JSZip (along with the getBinaryContent method of JSZipUtils) to extract the KML, then Leaflet Omnivore to parse the result.
JSZip will produce an object containing all the files in an archive, and you can select an individual file either by name or with the file(regex) method. You can use file(/.*\.kml/)[0] to select the first file with a.kml extension. Then to read the file as text, you would use either the asText method (in version 2.x of JSZip) or the async("string") method (in version 3.x). Once you have the kml as text, you can use Leaflet Omnivore's.kml.parse method to read it into a Leaflet layer. For version 2.x (which I find more straightforward), the whole thing would look like this:
var kmzUrl = *your URL here*;
JSZipUtils.getBinaryContent(kmzUrl, function(e, d) {
try {
var z = new JSZip(d);
var k = z.file(/.*\.kml/)[0].asText();
var p = omnivore.kml.parse(k).addTo(map);
p.eachLayer(function(layer){
layer.bindPopup(layer.feature.properties.description); //or whatever
})
} catch (e) {
alert(e);
}
});
Example fiddle here: http://jsfiddle.net/nathansnider/26vagt77/
For version 3.x, it would look like this:
var kmzUrl = *your URL here*;
JSZipUtils.getBinaryContent(kmzUrl, function(err, data) {
if (err) {
alert(err);
return;
}
try {
JSZip.loadAsync(data)
.then(function(zip) {
return zip.file(/.*\.kml/)[0].async("string");
})
.then(function success(text) {
var p = omnivore.kml.parse(text).addTo(map);
p.eachLayer(function(layer) {
layer.bindPopup(layer.feature.properties.description); //or whatever
});
},
function error(e) {
alert(e);
});
} catch (e) {
alert(e);
}
});
Example fiddle: http://jsfiddle.net/nathansnider/adxcapeo/
<|endoftext|>You are here: Home / News / BCCN Munich News / Call for new Transfer Projects at the BCCN Munich
Call for new Transfer Projects at the BCCN Munich
The Bernstein Center Munich invites applications for Transfer Projects to commence in spring 2015. Bernstein Transfer Projects are intended to foster collaborative research that addresses core questions within the Center’s scientific focus, i.e., “Neuronal Representation of Space and Time”. Bernstein Transfer Projects are to be carried out by research groups from the Munich area. Ideally, at least one of the collaboration partners is already a member of the Bernstein Center Munich but we are also open to proposals of research teams without previous links to the Center. Projects should not simply continue previous or ongoing work but aim at new high-risk/high-gain problems that would benefit from collaborative investigations involving the Center.
Typically, a transfer project runs for two years and involves Bernstein funding for one postdoctoral researcher, including some support for consumables, equipment and travel. For some projects, however, a three-year funding for a PhD student might also be an option.
Project proposals will undergo a two-stage selection process: All proposals will be screened for general suitability by representatives of the Bernstein Center Munich and the Center’s Advisory Board. At a second stage, applicants will be invited to present their proposal with a short talk. Within this competitive two-stage process, particular emphasis will be given to theory-oriented projects that strengthen experimental research, and/or transfer basic research in computational neuroscience into technological and biomedical applications, and/or apply | redpajama | [
27,
209,
187,
2347,
476,
309,
755,
34540,
18999,
281,
320,
4817,
1066,
281,
6774,
8717,
84,
1309,
11686,
20057,
32,
2490,
187,
1909,
5544,
275,
436,
3662,
13,
368,
476,
626,
15,
187,
510,
1682,
2746,
310,
281,
4993,
512,
13747,
281,
320,
1881,
14,
31031,
313,
9802,
616,
1211,
3451,
34540,
18999,
481,
187,
2042,
368,
476,
626,
513,
326,
13,
897,
416,
18999,
3185,
273,
34540,
18999,
13,
407,
6240,
428,
56,
77,
19514,
25902,
14,
1826,
14,
7064,
3544,
281,
253,
3048,
1386,
15,
187,
50279,
9795,
249,
36867,
310,
247,
11948,
2923,
14475,
432,
34000,
22043,
1341,
275,
581,
390,
1097,
2927,
15,
733,
476,
9974,
432,
253,
673,
253,
1429,
310,
275,
253,
49009,
598,
281,
608,
1107,
273,
2363,
15,
187,
1552,
2923,
310,
1095,
494,
604,
7270,
2393,
2217,
15,
187,
9795,
249,
36867,
310,
247,
4942,
24666,
18258,
273,
11948,
326,
8553,
323,
495,
6,
273,
253,
15110,
275,
2151,
762,
253,
2363,
273,
1458,
15,
380,
18258,
42799,
275,
253,
30067,
13,
253,
1708,
7996,
2170,
273,
253,
5130,
13,
534,
13276,
253,
5130,
281,
923,
15,
733,
476,
6388,
581,
390,
1097,
2927,
13,
275,
5091,
6,
273,
2219,
627,
310,
642,
2021,
2892,
15,
187,
34,
3168,
2802,
72,
676,
457,
275,
253,
35048,
273,
581,
390,
1097,
2927,
275,
3317,
1708,
15,
187,
8430,
352,
310,
1077,
7520,
13,
26965,
36867,
310,
247,
1077,
4092,
5130,
1617,
285,
476,
3798,
320,
9106,
29025,
604,
11245,
2393,
2217,
15,
1310,
368,
452,
667,
28314,
670,
634,
1429,
13,
1642,
776,
1478,
2755,
48221,
15,
50279,
28292,
12152,
1336,
4033,
1379,
12594,
7302,
19943,
2739,
32931,
49748,
187,
49493,
12017,
77,
518,
187,
32473,
32931,
7465,
49748,
387,
42265,
18733,
275,
12152,
1336,
4033,
275,
5080,
4022,
15,
187,
34,
3438,
12152,
1336,
4033,
1379,
12594,
7302,
556,
644,
6960,
281,
2075,
625,
685,
8157,
25,
13,
933,
323,
4645,
346,
48951,
1020,
44868,
3,
1223,
11741,
281,
16041,
342,
32931,
10132,
15,
187,
44,
11345,
274,
353,
13560,
13,
3435,
13,
665,
2987,
387,
42265,
18733,
275,
4855,
5720,
13,
12152,
1336,
4033,
13,
8523,
23383,
417,
8106,
281,
2800,
9372,
273,
11741,
281,
16041,
342,
8215,
8332,
8664,
2739,
5252,
285,
32931,
13,
285,
767,
9372,
273,
11741,
281,
16041,
342,
32931,
7756,
27833,
15,
187,
46,
13560,
5420,
275,
659,
21975,
507,
6813,
382,
27619,
457,
2111,
3063,
15,
187,
1328,
369,
28198,
281,
1818,
521,
12678,
281,
8106,
846,
4231,
382,
27619,
14315,
779,
344,
812,
2454,
6832,
4815,
604,
1119,
8106,
846,
247,
417,
8106,
12678,
13,
285,
347,
344,
574,
642,
4320,
6779,
15,
187,
23684,
12932,
1336,
13,
273,
45763,
84,
37166,
45663,
6456,
13,
6751,
9634,
13,
753,
27,
773,
510,
18702,
310,
247,
1379,
12594,
13701,
285,
369,
806,
36560,
275,
4565,
4059,
15,
187,
1628,
2512,
369,
642,
2739,
5252,
4323,
985,
285,
247,
3480,
273,
4750,
3733,
275,
2739,
5252,
7259,
15,
496,
4247,
4104,
760,
7898,
10276,
369,
6786,
1425,
187,
7130,
281,
2305,
12932,
1336,
13,
247,
2007,
15981,
327,
3919,
3435,
13,
4022,
2692,
773,
266,
28536,
3946,
273,
6108,
13831,
2739,
40547,
275,
253,
15789,
12936,
253,
45785,
6598,
187,
1328,
753,
27,
773,
1328,
369,
15140,
281,
7164,
285,
6558,
2739,
32931,
7465,
15,
1707,
497,
16076,
2515,
285,
417,
2217,
3434,
1160,
281,
3657,
444,
14,
46351,
15,
1707,
497,
4105,
2515,
273,
2739,
9008,
6500,
285,
4105,
32409,
1453,
1425,
187,
29033,
20337,
5119,
3044,
7865,
753,
27,
773,
1147,
556,
574,
247,
1048,
285,
3861,
14668,
2892,
285,
2305,
353,
13560,
556,
417,
6518,
2994,
15,
754,
574,
7418,
9091,
281,
9004,
1419,
253,
4112,
285,
344,
556,
4242,
281,
513,
594,
1425,
187,
46,
13560,
13,
665,
2987,
387,
26145,
457,
84,
275,
4693,
2065,
2191,
13,
1335,
2987,
387,
42265,
18733,
13,
533,
521,
19338,
556,
2668,
689,
253,
3515,
273,
253,
10301,
15,
187,
4612,
1946,
2994,
13,
353,
13560,
2183,
4231,
382,
27619,
344,
13937,
597,
651,
1379,
521,
3710,
2097,
715,
2395,
672,
15824,
779,
281,
2075,
4815,
15,
187,
7710,
3044,
7865,
753,
27,
773,
510,
3425,
273,
3394,
1060,
556,
644,
3240,
622,
11822,
15,
1422,
4242,
281,
2953,
3565,
27833,
326,
497,
2197,
281,
368,
15,
187,
1628,
1231,
2868,
326,
368,
2692,
31380,
1020,
44868,
281,
253,
48615,
285,
4242,
281,
1056,
667,
1534,
2544,
275,
326,
2180,
15,
1422,
476,
457,
85,
1408,
247,
10301,
432,
534,
952,
6446,
383,
2739,
285,
417,
320,
598,
281,
5284,
7465,
1425,
187,
46,
13560,
13,
273,
36938,
3423,
13,
659,
21975,
507,
13,
369,
6960,
281,
2075,
247,
2264,
273,
8157,
25,
13,
40948,
15,
1976,
13,
10054,
275,
978,
267,
942,
273,
8157,
8970,
591,
2129,
15,
187,
18191,
610,
18733,
369,
1677,
247,
2739,
32931,
13716,
273,
2802,
531,
16236,
4495,
2201,
7756,
310,
3309,
13,
275,
253,
954,
3332,
15981,
275,
4247,
436,
807,
15,
187,
34,
35027,
323,
45763,
84,
37166,
6456,
5783,
326,
253,
7465,
452,
1580,
5520,
13,
533,
253,
10301,
588,
878,
281,
4647,
323,
247,
294,
14,
968,
13886,
281,
320,
1677,
247,
747,
13716,
15,
187,
18191,
610,
18733,
15,
187,
41,
797,
84,
37166,
45663,
6456,
187,
41,
797,
84,
37166,
50279,
16135,
797,
628,
310,
271,
440,
39558,
3114,
275,
3096,
2321,
66,
3928,
13,
275,
253,
530,
15,
52,
15,
1375,
273,
10128,
15,
187,
187,
12697,
187,
34,
1501,
3906,
1925,
13525,
797,
628,
369,
4232,
275,
1283,
2787,
13,
285,
6376,
275,
4254,
1919,
38701,
15,
380,
3114,
369,
4907,
323,
7195,
44332,
13,
271,
2393,
3414,
2146,
15,
187,
187,
4941,
187,
187,
2447,
39558,
7888,
275,
3096,
2321,
66,
3928,
13,
10128,
187,
2447,
39558,
7888,
275,
10128,
50279,
50,
27,
6915,
7852,
1838,
16,
46,
1838,
342,
10617,
1059,
281,
3148,
5559,
2752,
33861,
941,
309,
1353,
12371,
604,
627,
310,
247,
1039,
281,
3148,
7852,
1838,
16,
46,
1838,
342,
10617,
1059,
15,
50276,
187,
42,
1119,
436,
12209,
2708,
28,
187,
6693,
1039,
309,
476,
3301,
611,
4132,
941,
432,
5559,
8115,
313,
16245,
10,
3066,
20235,
8990,
32,
187,
34297,
59,
84,
789,
8691,
20595,
342,
253,
12423,
72,
261,
285,
17899,
8990,
313,
76,
1686,
19512,
10,
533,
309,
476,
626,
1646,
281,
1089,
667,
1491,
327,
970,
247,
10771,
91,
342,
10617,
1059,
15,
187,
42,
1871,
4510,
417,
1907,
281,
914,
16368,
12171,
13,
285,
33039,
400,
410,
1057,
417,
3176,
281,
789,
342,
611,
46,
59,
84,
15,
187,
187,
34,
27,
309,
6468,
626,
1694,
667,
5482,
323,
24497,
611,
46,
59,
4367,
3066,
247,
2752,
33861,
7852,
1838,
16,
46,
1838,
275,
31241,
1059,
15,
1723,
13,
275,
2087,
13,
281,
3301,
247,
611,
46,
59,
1873,
275,
31241,
1059,
13,
368,
476,
897,
20235,
42095,
313,
28694,
342,
253,
755,
32849,
8590,
1332,
273,
20235,
42095,
19611,
10,
281,
4908,
253,
611,
4132,
13,
840,
31241,
1059,
473,
16192,
400,
410,
281,
14390,
253,
906,
15,
209,
187,
15253,
42095,
588,
4711,
271,
1789,
4508,
512,
253,
4367,
275,
271,
21429,
13,
285,
368,
476,
3609,
271,
2060,
1873,
2057,
407,
1416,
390,
342,
253,
1873,
9,
28847,
10,
1332,
15,
1422,
476,
897,
1873,
33692,
5929,
15461,
76,
1686,
16,
6904,
17,
62,
281,
3609,
253,
806,
1873,
342,
247,
964,
76,
1686,
6880,
15,
2635,
281,
1239,
253,
1873,
347,
2505,
13,
368,
651,
897,
2057,
253,
347,
4312,
1332,
313,
249,
2715,
374,
15,
89,
273,
20235,
42095,
10,
390,
253,
20605,
1587,
2703,
2807,
1332,
313,
249,
2715,
495,
15,
89,
481,
7243,
368,
452,
253,
465,
1686,
347,
2505,
13,
368,
476,
897,
31241,
1059,
473,
16192,
400,
410,
434,
964,
76,
1686,
15,
12083,
1332,
281,
1239,
352,
715,
247,
31241,
1059,
3828,
15,
1198,
2715,
374,
15,
89,
313,
4609,
309,
1089,
625,
15246,
582,
253,
2644,
2181,
651,
1007,
751,
436,
27,
187,
2044,
10771,
91,
13636,
426,
475,
12550,
10611,
1060,
25350,
187,
187,
15253,
42095,
19611,
15,
788,
32849,
8590,
9,
10294,
91,
13636,
13,
1159,
9,
70,
13,
277,
10,
551,
187,
50276,
14626,
551,
187,
50274,
2044,
1182,
426,
747,
20235,
42095,
9,
69,
558,
187,
50274,
2044,
465,
426,
1182,
15,
3140,
33692,
5929,
15461,
76,
1686,
16,
6904,
17,
1570,
284,
4312,
1874,
187,
50274,
2044,
268,
426,
33039,
400,
410,
15,
76,
1686,
15,
12083,
9,
76,
481,
1911,
1992,
9,
4251,
558,
187,
50274,
81,
15,
14382,
19512,
9,
3701,
9,
12026,
910,
187,
50272,
12026,
15,
13245,
14918,
484,
9,
12026,
15,
24594,
15,
19402,
15,
10008,
558,
1380,
263,
5913,
187,
50274,
2311,
187,
50276,
94,
5834,
313,
70,
10,
551,
187,
50274,
26544,
9,
70,
558,
187,
50276,
94,
187,
9897,
187,
187,
16698,
47121,
1060,
27,
3944,
1358,
43265,
15,
3024,
16,
79,
506,
507,
79,
1334,
16,
1731,
87,
49394,
2357,
16,
187,
2214,
2715,
495,
15,
89,
13,
352,
651,
1007,
751,
436,
27,
187,
2044,
10771,
91,
13636,
426,
475,
12550,
10611,
1060,
25350,
187,
187,
15253,
42095,
19611,
15,
788,
32849,
8590,
9,
10294,
91,
13636,
13,
1159,
9,
1000,
13,
941,
10,
551,
187,
50276,
338,
313,
1000,
10,
551,
187,
50274,
26544,
9,
1000,
558,
187,
50274,
2309,
28,
187,
50276,
94,
187,
50276,
14626,
551,
187,
50274,
15253,
42095,
15,
2799,
19168,
9,
2203,
10,
187,
50272,
15,
7461,
9,
3701,
9,
16368,
10,
551,
187,
50270,
2309,
23367,
15,
3140,
33692,
5929,
15461,
76,
1686,
16,
6904,
17,
1570,
27216,
1587,
2703,
3287,
187,
50272,
2311,
187,
50272,
15,
7461,
9,
3701,
2323,
9,
1156,
10,
551,
187,
50268,
2044,
268,
426,
33039,
400,
410,
15,
76,
1686,
15,
12083,
9,
1156,
481,
1911,
1992,
9,
4251,
558,
187,
50268,
81,
15,
14382,
19512,
9,
3701,
9,
12026,
10,
551,
187,
50266,
12026,
15,
13245,
14918,
484,
9,
12026,
15,
24594,
15,
19402,
15,
10008,
558,
1380,
263,
5913,
187,
50268,
9897,
187,
50270,
2023,
187,
50270,
3701,
2228,
9,
70,
10,
551,
187,
50268,
26544,
9,
70,
558,
187,
50270,
9897,
187,
50276,
94,
5834,
313,
70,
10,
551,
187,
50274,
26544,
9,
70,
558,
187,
50276,
94,
187,
9897,
187,
187,
16698,
47121,
27,
3944,
1358,
43265,
15,
3024,
16,
79,
506,
507,
79,
1334,
16,
324,
10587,
2259,
80,
16,
187,
50279,
1394,
403,
1060,
27,
9067,
1227,
6317,
1227,
378,
2648,
47,
32000,
6317,
1227,
9368,
323,
747,
23109,
39607,
387,
253,
378,
2648,
47,
32000,
187,
7865,
323,
747,
23109,
39607,
387,
253,
378,
2648,
47,
32000,
187,
510,
48647,
5197,
32000,
41969,
4893,
323,
23109,
39607,
281,
25301,
275,
7203,
4104,
15,
48647,
23109,
39607,
403,
6034,
281,
22846,
27549,
2561,
326,
12453,
5161,
3533,
1561,
253,
5197,
457,
84,
8249,
2770,
13,
891,
15,
70,
904,
773,
6560,
321,
2814,
12675,
318,
273,
11122,
285,
6865,
6598,
48647,
23109,
39607,
403,
281,
320,
4824,
562,
407,
2561,
2390,
432,
253,
32000,
2170,
15,
45903,
13,
387,
1878,
581,
273,
253,
14448,
10471,
310,
2168,
247,
3558,
273,
253,
48647,
5197,
32000,
533,
359,
403,
671,
1527,
281,
18595,
273,
2561,
6671,
1293,
2045,
4859,
281,
253,
5197,
15,
39607,
943,
417,
3365,
4035,
2045,
390,
10800,
789,
533,
4388,
387,
747,
1029,
14,
16272,
16,
8656,
14,
41394,
3237,
326,
651,
5649,
432,
27549,
14006,
7668,
253,
5197,
15,
187,
12117,
1037,
13,
247,
3700,
2199,
6613,
323,
767,
1107,
285,
8687,
48647,
8362,
323,
581,
1501,
49888,
22780,
13,
1690,
690,
1329,
323,
3651,
2272,
13,
6500,
285,
4288,
15,
1198,
690,
6493,
13,
2299,
13,
247,
1264,
14,
2913,
8362,
323,
247,
23011,
5974,
1537,
671,
320,
271,
4500,
15,
187,
11695,
18595,
588,
15080,
247,
767,
14,
13311,
5438,
1232,
27,
1876,
18595,
588,
320,
22546,
323,
2087,
45984,
407,
15572,
273,
253,
48647,
5197,
32000,
285,
253,
5197,
457,
84,
34136,
5986,
15,
2058,
247,
1273,
3924,
13,
26828,
588,
320,
12470,
281,
1246,
616,
10419,
342,
247,
2159,
2312,
15,
15092,
436,
12085,
767,
14,
13311,
1232,
13,
1798,
15075,
588,
320,
1677,
281,
3762,
14,
21085,
6493,
326,
17084,
5661,
2561,
13,
285,
16,
263,
3700,
5044,
2561,
275,
15180,
6551,
21559,
715,
20417,
285,
35156,
4893,
13,
285,
16,
263,
4647
] |
peaked function at the system edges. The above features originate from the impossibility to isolate a Majorana monopole.
The site-dependent Majorana polarizations $p^M_n$ and the Majorana polarizations $P^M_j$ of the sub-gap modes are reported in panels (e) to (h) of Fig. \ref{DensityChargePolarization}. Systems with particle-hole symmetry and generalized boundary conditions, see panels (e)-(f), feature sub-gap modes with polarization values comparable to those of the Kitaev chain with OBCs. When the particle-hole symmetry is broken, see panels (g)-(h), the Majorana polarization is lowered and we observe a net loss: $|P^{M}_{1,2}|<1$. Moreover, the site-dependence of $p^M_n$ is not heavily perturbed by the generalized boundary conditions. At a close inspection of panels (e)-(g), we observe that the relation $P^M_1+P^M_2=0$ is invariably respected. When both reflection and particle-hole symmetries are broken, see panel (h) of Fig. \ref{DensityChargePolarization}, a residual topological charge $P^M_1+P^M_2 \sim 0.02$ is induced. Majorana polarization losses and residual topological charges are signatures of the hybridization of the Kitaev chain with the environmental degrees of freedom and cannot be observed in isolated systems such as a Kitaev chain with OBCs.
\begin{figure*}
\includegraphics[scale=0.45]{FiguresEps/Figure4_a}\\
\vspace{0.5cm}
\includegraphics[scale=0.4]{FiguresEps/Figure4_b}
\hspace{0.1cm}
\includegraphics[scale=0.32]{FiguresEps/Figure4_c}
\includegraphics[scale=0.3]{FiguresEps/Figure4_d}
\caption{Panel (a): Sketch of the chain quadripartition exploited to compute the edge-to-edge quantum conditional mutual information $I_{(4)}$ and the quantized unit of topological squashed entanglement $E_{SQ}^0$ between the edges. The bulk is partitioned in two subsystems $C_1$ and $C_2$ with $L_{C_{1}}=1$, while the two remaining parts of the chain are the edges, denoted by $A$ and $B$. Panel (b): Behavior of the ratio $I_{(4)}/E^0_{SQ}$ as a function of the chemical potential $\mu$. The different curves correspond to the different choices of generalized boundary conditions reported in table (d) of Fig. \ref{Scheme}. The size $L$ of the chain and the size $L_e$ of the edges have been fixed, respectively, at $L=51$ and $L_e = L/3 = 17$. The inset magnifies the differences between the Kitaev chain ($KC$) with OBCs and the cases $n\degree=1$ and $n \degree=2$. Panel (c): Behavior of the ratio $I_{(4)}/E^0_{SQ}$ as a function of the boundary length $L_e$. Panel (d): Behavior of the ratio $I_{(4)}/E^0_{SQ}$ as a function of the chain length $L$ (color codes as in panel (b)). The red horizontal lines in panels (c) and (d) mark the maximum quantized value $\log{2}/2$ that is reached by $E^0_{SQ}$ at the exact ground-state topological degeneracy point, $\mu = 0$, for a Kitaev chain with OBCs hosting genuine Majorana modes. In all panels the Hamiltonian hopping and pairing amplitudes are fixed at $t=1$ and $\Delta=0.3$.}
\label{Entanglement}
\end{figure*}
So far we have discussed important features of topological sub-gap states. Some of the mentioned features however are not always necessarily associated with Majorana modes. For instance, zero-energy sub-gap excitations can emerge in the physics of Andreev bound states \cite{AguadoABS,PhysRevB.96.075161,PhysRevB.97.214502,PhysRevB.96.075161,PhysRevLett.104.067001}. Moreover, a trivial superconducting phase can host charge-neutral quasiparticles \cite{PhysRevLett.116.246403,Denisov_2021,Sato_2019}. These observations show the need to identify unequivocal signatures of topological order. For systems where the bulk-edge correspondence applies, an unambiguous signature of a topologically ordered phase is provided by topological invariants \cite{PhysRevB.55.1142} which count the number of inversions between valence and conduction bands \cite{PhysRevB.103.075139}. In the absence of translational invariance and whenever the bulk-edge correspondence does not hold, alternative approaches are needed to identify the topological nature of the edge modes.
One such approach relies on the determination of the unique nonlocal quantum correlations that are established in a topologically ordered phase between the system edges. Indeed, such topological nonlocal edge-to-edge correlations are faithfully quantified by a specific measure of bipartite entanglement \cite{doi:10.1063/1.1643788,5075874}, the squashed entanglement (SE) $E_{SQ}^0$ between the edges, obtained by a suitable quadripartition of the system, and by its natural upper bound, the edge-to-edge quantum conditional mutual information (QCMI) $I_{(4)}$, as recently shown in Refs. \cite{MaieIllum1,MaieIllum2}. The edge-edge QCMI provides an upper bound on the long-distance, edge-edge squashed entanglement obtained by four-partitioning the system into the two edges and a bipartition of the bulk. The QCMI upper bound on the SE is then obtained by a suitable combination of reduced von Neumann entropies stemming from the quadripartition; this combination squashes out the classical contributions leaving only the genuinely quantum ones.
Being the topological order encoded in the edges, the edge-edge SE $E^0_{SQ}$ identifies unequivocally the topologically ordered phases, also fulfilling all the criteria of a genuine nonlocal order parameter \cite{MaieIllum1,MaieIllum2}. In particular, the edge-edge SE assumes the quantized value $E^0_{SQ} = \log{2}/2$, i.e. half of the maximal Bell-pair entanglement, at the exact ground-state topological degeneracy point, $\mu = 0$, for a Kitaev chain with OBCs hosting genuine Majorana modes, and remains constant at this quantized value throughout the entire topologically ordered phase, up to $\mu = 2t$.
The edge-edge QCMI $I_{(4)}$ realizing the natural upper bound on $E^0_{SQ}$ is expressed in terms of the reduced von Neumann entropies as follows:
\begin{equation}
I_{(4)} = S_{AC_1} + S_{BC_1} - S_{ABC_1} - S_{C_1} \,,
\end{equation}
where $S(XY)$ denotes the von Neumann entropy computed on the many-body ground state of the reduced system running on sites belonging to the parts $X$ and $Y$. The four different labels $A$, $B$, $C_1$, and $C_2$ identify the four parts in which the chain is quadripartite. $A$ and $B$ refer to the two edges, while the bulk is bipartite into two parts $C_1$ and $C_2$. The latter is the part of the bulk which is traced out in the beginning to leave the reduced ground state of the three remaining parts, so it does not appear in the definition of $I_{(4)}$, while the remaining part of the bulk $C_1$ separates the two edges. The true edge-edge SE is then obtained taking the infimum of $I_{(4)}$ over all possible states of $ABC_1$. Both the edge-edge SE and the edge-edge QCMI are insensitive to the relative lengths of the two parts of the bulk and thus, without loss of generality, we can set $L_{C_1}=1$, while also taking symmetric edges $L_A = L_B = L_e$. Details on the system partition are illustrated in panel (a) of Fig. \ref{Entanglement}.
In panel (b) of Fig. \ref{Entanglement} we report the behavior of the ratio between the edge-edge QCMI $I_{(4)}$ and the maximum quantized value of the edge-edge SE $E^0_{SQ}$ as a function of the chemical potential $\mu$, for boundary conditions belonging to the distinct symmetry classes listed in table (d) of Fig. \ref{Scheme}. The behavior of $I_{(4)}/E^0_{SQ}$ as a function of $\mu$ for a Kitaev chain with OBCs is also reported for comparison. The plots show that the $I_{(4)}$ \textit{vs} $\mu$ curves closely match the curve corresponding to a Kitaev chain with OBCs as long as the particle-hole symmetry is preserved. When this symmetry is broken (brown and purple curves), | redpajama | [
33404,
1159,
387,
253,
985,
9297,
15,
380,
1840,
3386,
35282,
432,
253,
37593,
2322,
281,
20843,
247,
11432,
3230,
45966,
1306,
15,
187,
187,
510,
2670,
14,
6820,
11432,
3230,
6994,
5904,
370,
81,
63,
46,
64,
79,
5,
285,
253,
11432,
3230,
6994,
5904,
370,
49,
63,
46,
64,
75,
5,
273,
253,
749,
14,
27142,
10006,
403,
2361,
275,
12471,
313,
70,
10,
281,
313,
73,
10,
273,
2667,
15,
393,
709,
92,
37,
2741,
8662,
463,
49,
6062,
1320,
7165,
13869,
342,
8091,
14,
13928,
10377,
285,
14923,
7548,
2515,
13,
923,
12471,
313,
70,
31867,
71,
582,
4735,
749,
14,
27142,
10006,
342,
14563,
2193,
10870,
281,
1110,
273,
253,
611,
5741,
1173,
5931,
342,
473,
3979,
84,
15,
2091,
253,
8091,
14,
13928,
10377,
310,
7154,
13,
923,
12471,
313,
72,
31867,
73,
582,
253,
11432,
3230,
14563,
310,
17892,
285,
359,
10018,
247,
2036,
2957,
27,
10493,
49,
768,
46,
2026,
18,
13,
19,
8589,
29,
18,
1352,
5076,
13,
253,
2670,
14,
39606,
273,
370,
81,
63,
46,
64,
79,
5,
310,
417,
11306,
44711,
407,
253,
14923,
7548,
2515,
15,
2058,
247,
2810,
15981,
273,
12471,
313,
70,
31867,
72,
582,
359,
10018,
326,
253,
5886,
370,
49,
63,
46,
64,
18,
12,
49,
63,
46,
64,
19,
30,
17,
5,
310,
37504,
22694,
15,
2091,
1097,
12906,
285,
8091,
14,
13928,
34902,
403,
7154,
13,
923,
5370,
313,
73,
10,
273,
2667,
15,
393,
709,
92,
37,
2741,
8662,
463,
49,
6062,
1320,
2023,
247,
12541,
17597,
4179,
370,
49,
63,
46,
64,
18,
12,
49,
63,
46,
64,
19,
393,
3549,
470,
15,
2640,
5,
310,
5802,
15,
11432,
3230,
14563,
11655,
285,
12541,
17597,
7260,
403,
20076,
273,
253,
24389,
273,
253,
611,
5741,
1173,
5931,
342,
253,
6938,
7759,
273,
7185,
285,
2550,
320,
2540,
275,
7011,
2718,
824,
347,
247,
611,
5741,
1173,
5931,
342,
473,
3979,
84,
15,
187,
187,
61,
2043,
92,
13206,
33029,
187,
186,
61,
249,
741,
909,
1354,
982,
60,
7527,
30,
17,
15,
1857,
1019,
18877,
38,
793,
16,
2841,
21,
64,
66,
11054,
187,
186,
61,
87,
5641,
92,
17,
15,
22,
3591,
94,
187,
186,
61,
249,
741,
909,
1354,
982,
60,
7527,
30,
17,
15,
21,
1019,
18877,
38,
793,
16,
2841,
21,
64,
67,
94,
187,
186,
61,
12887,
92,
17,
15,
18,
3591,
94,
187,
186,
61,
249,
741,
909,
1354,
982,
60,
7527,
30,
17,
15,
1237,
1019,
18877,
38,
793,
16,
2841,
21,
64,
68,
94,
187,
186,
61,
249,
741,
909,
1354,
982,
60,
7527,
30,
17,
15,
20,
1019,
18877,
38,
793,
16,
2841,
21,
64,
69,
94,
187,
186,
61,
34480,
92,
16284,
313,
66,
2262,
322,
48411,
273,
253,
5931,
9853,
363,
37717,
28734,
281,
11897,
253,
5024,
14,
936,
14,
13057,
6318,
17697,
15577,
1491,
370,
42,
13061,
21,
10392,
285,
253,
2677,
1025,
3943,
273,
17597,
3896,
6948,
26294,
370,
38,
578,
50185,
2306,
17,
5,
875,
253,
9297,
15,
380,
10713,
310,
10883,
264,
275,
767,
8790,
24926,
370,
36,
64,
18,
5,
285,
370,
36,
64,
19,
5,
342,
370,
45,
578,
36,
578,
18,
15243,
18,
1366,
1223,
253,
767,
5780,
4243,
273,
253,
5931,
403,
253,
9297,
13,
17007,
407,
370,
34,
5,
285,
370,
35,
1352,
23610,
313,
67,
2262,
29475,
273,
253,
4313,
370,
42,
13061,
21,
3117,
16,
38,
63,
17,
578,
50185,
724,
347,
247,
1159,
273,
253,
5793,
2442,
669,
1906,
1352,
380,
1027,
9191,
2723,
281,
253,
1027,
10165,
273,
14923,
7548,
2515,
2361,
275,
2829,
313,
69,
10,
273,
2667,
15,
393,
709,
92,
32003,
7165,
380,
1979,
370,
45,
5,
273,
253,
5931,
285,
253,
1979,
370,
45,
64,
70,
5,
273,
253,
9297,
452,
644,
4229,
13,
2975,
13,
387,
370,
45,
30,
3712,
5,
285,
370,
45,
64,
70,
426,
418,
16,
20,
426,
1722,
1352,
380,
31660,
2849,
7790,
253,
3910,
875,
253,
611,
5741,
1173,
5931,
4816,
39089,
7884,
342,
473,
3979,
84,
285,
253,
2219,
370,
79,
61,
14577,
30,
18,
5,
285,
370,
79,
393,
14577,
30,
19,
1352,
23610,
313,
68,
2262,
29475,
273,
253,
4313,
370,
42,
13061,
21,
3117,
16,
38,
63,
17,
578,
50185,
724,
347,
247,
1159,
273,
253,
7548,
2978,
370,
45,
64,
70,
1352,
23610,
313,
69,
2262,
29475,
273,
253,
4313,
370,
42,
13061,
21,
3117,
16,
38,
63,
17,
578,
50185,
724,
347,
247,
1159,
273,
253,
5931,
2978,
370,
45,
5,
313,
4897,
11646,
347,
275,
5370,
313,
67,
5029,
380,
2502,
11593,
3104,
275,
12471,
313,
68,
10,
285,
313,
69,
10,
1616,
253,
4869,
2677,
1025,
1318,
669,
2808,
92,
19,
9228,
19,
5,
326,
310,
4925,
407,
370,
38,
63,
17,
578,
50185,
724,
387,
253,
3242,
3216,
14,
3409,
17597,
44877,
1127,
13,
669,
1906,
426,
470,
1366,
323,
247,
611,
5741,
1173,
5931,
342,
473,
3979,
84,
19355,
13241,
11432,
3230,
10006,
15,
496,
512,
12471,
253,
14342,
36939,
285,
25015,
22652,
403,
4229,
387,
370,
85,
30,
18,
5,
285,
669,
3442,
30,
17,
15,
20,
1352,
94,
187,
186,
61,
1968,
92,
7580,
606,
1338,
94,
187,
61,
423,
92,
13206,
33029,
187,
187,
2598,
2080,
359,
452,
5469,
1774,
3386,
273,
17597,
749,
14,
27142,
3054,
15,
3808,
273,
253,
5393,
3386,
2299,
403,
417,
1900,
7933,
2330,
342,
11432,
3230,
10006,
15,
1198,
4227,
13,
5058,
14,
14115,
749,
14,
27142,
35188,
476,
20177,
275,
253,
12057,
273,
1244,
658,
87,
3033,
3054,
393,
41766,
92,
34,
4297,
3377,
2925,
52,
13,
27139,
35,
15,
4196,
15,
29631,
20664,
13,
27139,
35,
15,
4148,
15,
21866,
28873,
13,
27139,
35,
15,
4196,
15,
29631,
20664,
13,
27139,
21457,
15,
11238,
15,
38228,
2874,
7165,
5076,
13,
247,
14916,
32890,
3408,
476,
3167,
4179,
14,
27912,
21582,
532,
13137,
393,
41766,
92,
27139,
21457,
15,
13210,
15,
23260,
25208,
13,
20990,
261,
729,
64,
938,
1797,
13,
52,
4611,
64,
9638,
7165,
2053,
7313,
921,
253,
878,
281,
4271,
40101,
3100,
20076,
273,
17597,
1340,
15,
1198,
2718,
835,
253,
10713,
14,
13057,
17668,
10384,
13,
271,
39662,
11118,
273,
247,
1755,
11220,
6960,
3408,
310,
2530,
407,
17597,
38318,
393,
41766,
92,
27139,
35,
15,
2417,
15,
883,
2945,
94,
534,
1385,
253,
1180,
273,
275,
36446,
875,
35874,
285,
26913,
10604,
393,
41766,
92,
27139,
35,
15,
12172,
15,
29631,
15270,
7165,
496,
253,
5928,
273,
33103,
31429,
285,
10793,
253,
10713,
14,
13057,
17668,
1057,
417,
2186,
13,
5795,
7274,
403,
3058,
281,
4271,
253,
17597,
3753,
273,
253,
5024,
10006,
15,
187,
187,
4041,
824,
2746,
15771,
327,
253,
7441,
273,
253,
4451,
1327,
6790,
6318,
13007,
326,
403,
4232,
275,
247,
1755,
11220,
6960,
3408,
875,
253,
985,
9297,
15,
8079,
13,
824,
17597,
1327,
6790,
5024,
14,
936,
14,
13057,
13007,
403,
48479,
18755,
407,
247,
2173,
2557,
273,
49240,
26294,
393,
41766,
92,
14369,
27,
740,
15,
740,
3571,
16,
18,
15,
18467,
1787,
2055,
13,
1235,
1976,
35537,
2023,
253,
3896,
6948,
26294,
313,
2354,
10,
370,
38,
578,
50185,
2306,
17,
5,
875,
253,
9297,
13,
2797,
407,
247,
7470,
9853,
363,
37717,
273,
253,
985,
13,
285,
407,
697,
3626,
5170,
3033,
13,
253,
5024,
14,
936,
14,
13057,
6318,
17697,
15577,
1491,
313,
50,
5883,
42,
10,
370,
42,
13061,
21,
29119,
347,
4102,
2011,
275,
41966,
15,
393,
41766,
92,
16490,
466,
15041,
360,
18,
13,
16490,
466,
15041,
360,
19,
7165,
380,
5024,
14,
13057,
1165,
5883,
42,
3400,
271,
5170,
3033,
327,
253,
1048,
14,
19893,
13,
5024,
14,
13057,
3896,
6948,
26294,
2797,
407,
1740,
14,
37717,
272,
253,
985,
715,
253,
767,
9297,
285,
247,
28577,
539,
273,
253,
10713,
15,
380,
1165,
5883,
42,
5170,
3033,
327,
253,
6725,
310,
840,
2797,
407,
247,
7470,
5019,
273,
3777,
8449,
38430,
994,
1658,
447,
45030,
432,
253,
9853,
363,
37717,
28,
436,
5019,
3896,
13539,
562,
253,
8946,
9021,
6108,
760,
253,
27364,
6318,
4394,
15,
187,
26143,
253,
17597,
1340,
16202,
275,
253,
9297,
13,
253,
5024,
14,
13057,
6725,
370,
38,
63,
17,
578,
50185,
724,
22649,
40101,
406,
595,
253,
50276,
3956,
11220,
6960,
12475,
13,
671,
34873,
512,
253,
6866,
273,
247,
13241,
1327,
6790,
1340,
4764,
393,
41766,
92,
16490,
466,
15041,
360,
18,
13,
16490,
466,
15041,
360,
19,
7165,
496,
1798,
13,
253,
5024,
14,
13057,
6725,
19584,
253,
2677,
1025,
1318,
370,
38,
63,
17,
578,
50185,
94,
426,
393,
2808,
92,
19,
9228,
19,
1366,
891,
15,
70,
15,
2716,
273,
253,
13493,
11590,
14,
13934,
26294,
13,
387,
253,
3242,
3216,
14,
3409,
17597,
44877,
1127,
13,
669,
1906,
426,
470,
1366,
323,
247,
611,
5741,
1173,
5931,
342,
473,
3979,
84,
19355,
13241,
11432,
3230,
10006,
13,
285,
4558,
3638,
387,
436,
2677,
1025,
1318,
4768,
253,
2862,
1755,
11220,
6960,
3408,
13,
598,
281,
669,
1906,
426,
374,
85,
1352,
187,
187,
510,
5024,
14,
13057,
1165,
5883,
42,
370,
42,
13061,
21,
10392,
27017,
253,
3626,
5170,
3033,
327,
370,
38,
63,
17,
578,
50185,
724,
310,
4469,
275,
2426,
273,
253,
3777,
8449,
38430,
994,
1658,
447,
347,
3637,
27,
187,
61,
2043,
92,
29813,
94,
187,
42,
13061,
21,
3117,
426,
322,
578,
1934,
64,
18,
94,
559,
322,
578,
3979,
64,
18,
94,
428,
322,
578,
25647,
64,
18,
94,
428,
322,
578,
36,
64,
18,
94,
5095,
1157,
187,
61,
423,
92,
29813,
94,
187,
2811,
370,
52,
9,
26431,
1009,
12853,
253,
8449,
38430,
15579,
10302,
327,
253,
1142,
14,
2915,
3216,
1375,
273,
253,
3777,
985,
3515,
327,
4375,
15823,
281,
253,
4243,
370,
57,
5,
285,
370,
58,
1352,
380,
1740,
1027,
13301,
370,
34,
1366,
370,
35,
1366,
370,
36,
64,
18,
1366,
285,
370,
36,
64,
19,
5,
4271,
253,
1740,
4243,
275,
534,
253,
5931,
310,
9853,
363,
2003,
614,
15,
370,
34,
5,
285,
370,
35,
5,
3730,
281,
253,
767,
9297,
13,
1223,
253,
10713,
310,
49240,
715,
767,
4243,
370,
36,
64,
18,
5,
285,
370,
36,
64,
19,
1352,
380,
6158,
310,
253,
629,
273,
253,
10713,
534,
310,
26098,
562,
275,
253,
5068,
281,
3553,
253,
3777,
3216,
1375,
273,
253,
1264,
5780,
4243,
13,
594,
352,
1057,
417,
3176,
275,
253,
5426,
273,
370,
42,
13061,
21,
29119,
1223,
253,
5780,
629,
273,
253,
10713,
370,
36,
64,
18,
5,
36158,
253,
767,
9297,
15,
380,
2032,
5024,
14,
13057,
6725,
310,
840,
2797,
3192,
253,
2192,
2751,
273,
370,
42,
13061,
21,
10392,
689,
512,
1896,
3054,
273,
370,
25647,
64,
18,
1352,
6295,
253,
5024,
14,
13057,
6725,
285,
253,
5024,
14,
13057,
1165,
5883,
42,
403,
39188,
281,
253,
4103,
16095,
273,
253,
767,
4243,
273,
253,
10713,
285,
3021,
13,
1293,
2957,
273,
31376,
13,
359,
476,
873,
370,
45,
578,
36,
64,
18,
4203,
18,
1366,
1223,
671,
3192,
13123,
9297,
370,
45,
64,
34,
426,
418,
64,
35,
426,
418,
64,
70,
1352,
23691,
327,
253,
985,
10883,
403,
12800,
275,
5370,
313,
66,
10,
273,
2667,
15,
393,
709,
92,
7580,
606,
1338,
7165,
187,
187,
688,
5370,
313,
67,
10,
273,
2667,
15,
393,
709,
92,
7580,
606,
1338,
94,
359,
1304,
253,
3879,
273,
253,
4313,
875,
253,
5024,
14,
13057,
1165,
5883,
42,
370,
42,
13061,
21,
10392,
285,
253,
4869,
2677,
1025,
1318,
273,
253,
5024,
14,
13057,
6725,
370,
38,
63,
17,
578,
50185,
724,
347,
247,
1159,
273,
253,
5793,
2442,
669,
1906,
1366,
323,
7548,
2515,
15823,
281,
253,
5799,
10377,
5971,
7117,
275,
2829,
313,
69,
10,
273,
2667,
15,
393,
709,
92,
32003,
7165,
380,
3879,
273,
370,
42,
13061,
21,
3117,
16,
38,
63,
17,
578,
50185,
724,
347,
247,
1159,
273,
669,
1906,
5,
323,
247,
611,
5741,
1173,
5931,
342,
473,
3979,
84,
310,
671,
2361,
323,
5301,
15,
380,
14777,
921,
326,
253,
370,
42,
13061,
21,
10392,
393,
33063,
92,
10936,
94,
669,
1906,
5,
9191,
8244,
3761,
253,
6970,
3969,
281,
247,
611,
5741,
1173,
5931,
342,
473,
3979,
84,
347,
1048,
347,
253,
8091,
14,
13928,
10377,
310,
15296,
15,
2091,
436,
10377,
310,
7154,
313,
33167,
285,
19445,
9191,
582
] |
where $h_1$ is the layer thickness corresponding to the undistorted interface. Then, the relation between the surface gradient $\nabla h$ and the displacement field $\Delta \vec{x}$ is linear, given as
\begin{equation}
\label{eq:ExpDetails_h_gradient}
\nabla h = -\frac{a_\text{cal}}{h^*} \Delta \vec{x},
\end{equation}
where $a_\text{cal}$ is a calibration factor in units of \SI{}{\milli\meter\per px} obtained from a reference image of a flat interface, and $h^*$ is an effective height obtained from the optical configuration as
\begin{equation}
\label{eq:ExpDetails_hstar}
h^* = \left( \frac{1}{\alpha h_1}-\frac{1}{H_\text{cam} + h_1} \right)^{-1}.
\end{equation}
Here, $\alpha = 1-n_2/n_1$ denotes the difference of the refractive indices and $H_\text{cam}$ the distance between the objective and the interface. In our situation, the second term of equation \eqref{eq:ExpDetails_hstar} is negligible due to the large ratio $H_\text{cam}/h_1\ll1$.
\begin{figure}
\centerline{\includegraphics[width=\textwidth]{Experimental_Evaluation.eps}
\caption{Post-processing steps of the image data. (a) Schematic of the refraction-based image evaluation. A reference grid at the top electrode (black) is imaged through the liquid-liquid interface. Due to different refractive indices of the liquids, the recorded image is distorted (red). (b) Example of a displacement pattern. The displacement field $\Delta \vec{x}$ can be used to determine the surface gradient $\nabla h$, which in turn can be used to reconstruct the interface deflection $\Delta h = h-h_1$. (c) Fourier power spectrum corresponding to (b). The power density is plotted as a function of the wavenumber magnitude $k$ and exhibits several peaks: Peaks (I) and (III) result from the numerical reconstruction algorithm (see text for details). The peak corresponding to the dominant pattern wavelength $\lambda$ (II) is found in an intermediate wavenumber range. Here, $\lambda = 3M\, a_\text{cal} /k = \SI{6.85}{\milli\meter}$.}
\label{fig:experimentalEval}
\end{figure}
Eq. \eqref{eq:ExpDetails_h_gradient} demonstrates that the displacement field for a constant surface gradient $\nabla h$ will increase with increasing layer thickness $h_1$ and a larger difference between the refractive indices $n_1$, $n_2$. While the surface gradients are used to reconstruct the interface $h(x,y)$, it is important to note that we will not rely on the absolute values of the reconstructed interface deformation, but rather on the pattern wavelengths. While the absolute values of $h$ are sensitive to variations in $\nabla h$ as well as $h^*$, the obtained pattern wavelengths. The evaluation scheme includes three distinctive steps: First, the surface gradients $\nabla h(x,y)$ are generated from the displacement field recorded during the experiments.
Second, the interface shape $h(x,y)$ is reconstructed, with one exemplary resulting data set shown in Figure~\ref{fig:experimentalEval}(b).
In a third step, the dominant pattern wavelength is extracted using a Fourier transform and the corresponding power spectrum, as shown in Figure~\ref{fig:experimentalEval}(c).
The details of the evaluation are described in Appendix~\ref{sec:appC-eval}.
\section{Results and discussions}
\label{sec:results}
In this section, we present the experimental results for the electrically induced Faraday instability.
We focus on the critical voltage and report the dominant pattern wavelengths.
Typically, for one fixed set of experimental parameters, the system shows different characteristic responses with increasing voltage amplitudes. The electric actuation leads to two competing effects: At the side-wall (i.e. the boundary of the container), the meniscus of the dielectric-electrolyte interface oscillates due to the applied Maxwell stress. As the applied Maxwell stress depends quadratically on the electric field strength at the interface, a harmonic driving with a frequency $\omega$ leads to an actuation of the meniscus with a frequency of $2 \omega$. Further, the Faraday instability occurs above a critical voltage, which leads to oscillations with a frequency of $\omega$ when forced with a single frequency.
At low excitation amplitudes, the actuation of the meniscus leads to small interface deformation with twice the excitation frequency, which is barely noticeable initially.
With increasing amplitude, the actuation of the meniscus becomes more prominent and waves penetrate from the boundary of the container into the domain.
A circular pattern is created, with the waves moving into the center of the domain.
This effect is similar to the edge-wave actuation in the case of mechanically excited Faraday waves.
With further increasing excitation amplitude, Faraday waves start to appear, initially only with a small amplitude. Both edge-waves as well as Faraday waves are present simultaneously.
A further increase of the amplitude leads to the formation of stronger Faraday waves, which begin to dominate the system.
Then, a distinct range of driving amplitudes exists, where the pattern becomes stable for long times after an initial growth phase.
A similar phenomenon was observed by \citet{Pillai2018} and attributed to nonlinear effects.
When some specific excitation amplitude is exceeded, however, the Faraday waves continue to grow until they make contact with the upper electrode and lead to an electric connection between both electrodes.
Then, the power supply shuts off automatically.
In the following, all parameter combinations that lead to Faraday waves are denoted as critical, since the voltage exceeded the critical voltage.
All other parameters combinations with edge-waves only are denoted as subcritical, since no Faraday patterns emerge during the experiment.
\subsection{Effect of the salt concentration}
\label{subsec:results_saltvariation}
As we have discussed in section \ref{sec:theoretical_description}, the theoretical model used to predict the instability threshold is based on the perfect-dielectric / perfect-conductor assumption. As was shown by \citet{Ward2019}, the description using the leaky-dielectric model reduces to the perfect-dielectric / perfect-conductor model if the conductivity ratio between the liquids is sufficiently high. In order to assess the validity of the perfect-conductor assumption, we have varied the KCl concentration in the lower liquid (DI-water) from \SI{1e-4}{\mol\per\liter} to \SI{1e-1}{\mol\per\liter} at otherwise fixed parameters (silicone oil viscosity \SI{0.65}{\centi St}, driving frequency \SI{10}{\hertz}).
In figure \ref{fig:Results_cSaltStudy}(a), the experimentally obtained stability map is shown. As is visible, the critical voltage is not strongly affected by the salt concentration.
It is slightly increased at $c_\text{KCl}=\SI{1e-4}{\mol\per\liter}$ and slightly reduced at $c_\text{KCl}=\SI{1e-3}{\mol\per\liter}$. Since no clearly distinguishable trend is present, we attribute the differences to experimental uncertainties.
One potential source of uncertainty are the edge-waves penetrating into the central region of the system, superposing and obscuring the Faraday waves. Also, since the detection relies on surface gradients, the accuracy at small surface gradients is limited. Nevertheless, the experimentally obtained critical voltages show fair agreement with the theoretically predicted value of $V_\text{crit}=\SI{2393}{\volt}$ (indicated as a dashed line).
\begin{figure}
\centerline{\includegraphics[width=\textwidth]{cSaltStudy.eps}
\caption{Influence of the lower-phase salt concentration on the instability.
(a) Experimentally obtained stability map together with the theoretical prediction for the critical voltage obtained from the perfect-dielectric / perfect-conductor model (critical voltage $V_\text{crit}=\SI{2393}{\volt}$).
(b) Experimentally determined pattern wavelength together with the theoretical prediction for the dominant wavelength obtained from the perfect-dielectric / perfect-conductor model ($\lambda=\SI{11.35}{\milli\meter}$). Each data point corresponds to one critical voltage in subfigure (a). The error bars represent the standard deviation of the obtained wavelength determined within one experiment.}
\label{fig:Results_cSaltStudy}
\end{figure}
In figure \ref{fig:Results_cSaltStudy}(b), the experimentally determined pattern wavelengths corresponding to the critical voltages of figure \ref{fig:Results_cSaltStudy}(a) are shown. As is visible, the change of wavelengths between different driving amplitudes is of the same order of magnitude as the differences over the salt concentration.
The experimentally obtained values show good agreement with the theoretically predicted value of $\lambda =\SI{11.35}{\milli\meter}$.
Since the experimental results scatter around the theoretically predicted value, the experiments indicate that the salt concentration does not significantly influence the resulting wavelength in the range of concentrations studied. Therefore, the conductivity difference between both liquids is sufficiently large to | redpajama | [
835,
370,
73,
64,
18,
5,
310,
253,
3828,
9544,
3969,
281,
253,
3807,
382,
7551,
5673,
15,
2635,
13,
253,
5886,
875,
253,
2553,
11786,
669,
6526,
288,
5,
285,
253,
16837,
1673,
669,
3442,
393,
4642,
92,
89,
724,
310,
4872,
13,
1677,
347,
209,
187,
61,
2043,
92,
29813,
94,
187,
61,
1968,
92,
2574,
27,
5892,
21691,
64,
73,
64,
29844,
94,
187,
61,
6526,
288,
426,
10042,
1124,
92,
66,
2253,
1156,
92,
1179,
5932,
73,
3503,
94,
393,
3442,
393,
4642,
92,
89,
2023,
187,
61,
423,
92,
29813,
94,
187,
2811,
370,
66,
2253,
1156,
92,
1179,
724,
310,
247,
18543,
2803,
275,
5085,
273,
393,
5824,
92,
2704,
78,
3370,
61,
35782,
61,
468,
268,
89,
94,
2797,
432,
247,
3806,
2460,
273,
247,
6507,
5673,
13,
285,
370,
73,
18636,
310,
271,
3576,
4898,
2797,
432,
253,
5748,
6661,
347,
209,
187,
61,
2043,
92,
29813,
94,
187,
61,
1968,
92,
2574,
27,
5892,
21691,
64,
73,
7873,
94,
187,
73,
3503,
426,
393,
1274,
9,
393,
1124,
92,
18,
2704,
1637,
288,
64,
18,
10780,
1124,
92,
18,
1217,
41,
2253,
1156,
92,
12583,
94,
559,
288,
64,
18,
94,
393,
918,
14607,
18,
7165,
209,
187,
61,
423,
92,
29813,
94,
187,
4943,
13,
669,
1637,
426,
337,
14,
79,
64,
19,
16,
79,
64,
18,
5,
12853,
253,
3064,
273,
253,
32450,
14452,
285,
370,
41,
2253,
1156,
92,
12583,
724,
253,
4181,
875,
253,
8103,
285,
253,
5673,
15,
496,
776,
4112,
13,
253,
1273,
1307,
273,
5150,
393,
2574,
709,
92,
2574,
27,
5892,
21691,
64,
73,
7873,
94,
310,
22879,
1955,
281,
253,
1781,
4313,
370,
41,
2253,
1156,
92,
12583,
9228,
73,
64,
18,
61,
620,
18,
1352,
187,
187,
61,
2043,
92,
13206,
94,
187,
50276,
61,
9229,
1282,
464,
249,
741,
909,
1354,
982,
60,
3429,
2029,
35673,
1019,
32954,
64,
48640,
15,
2265,
94,
187,
50276,
61,
34480,
92,
8983,
14,
21678,
5018,
273,
253,
2460,
941,
15,
313,
66,
10,
46888,
273,
253,
1275,
3460,
14,
3169,
2460,
7103,
15,
329,
3806,
9860,
387,
253,
1755,
9885,
313,
11958,
10,
310,
35014,
949,
253,
5558,
14,
38390,
5673,
15,
12571,
281,
1027,
32450,
14452,
273,
253,
32819,
13,
253,
5950,
2460,
310,
32408,
313,
433,
481,
313,
67,
10,
18466,
273,
247,
16837,
3102,
15,
380,
16837,
1673,
669,
3442,
393,
4642,
92,
89,
724,
476,
320,
908,
281,
3653,
253,
2553,
11786,
669,
6526,
288,
1366,
534,
275,
1614,
476,
320,
908,
281,
17029,
253,
5673,
43293,
669,
3442,
288,
426,
288,
14,
73,
64,
18,
1352,
313,
68,
10,
18368,
1612,
6637,
3969,
281,
313,
67,
481,
380,
1612,
4038,
310,
17944,
347,
247,
1159,
273,
253,
259,
7603,
2764,
9777,
370,
76,
5,
285,
15646,
2067,
13596,
27,
3586,
8765,
313,
42,
10,
285,
313,
8296,
10,
906,
432,
253,
10704,
14433,
5933,
313,
2887,
2505,
323,
4278,
481,
380,
5241,
3969,
281,
253,
11360,
3102,
11225,
669,
2260,
5,
313,
2267,
10,
310,
1119,
275,
271,
10444,
259,
7603,
2764,
2491,
15,
3856,
13,
669,
2260,
426,
495,
46,
4615,
247,
2253,
1156,
92,
1179,
94,
1227,
76,
426,
393,
5824,
92,
23,
15,
2227,
2704,
78,
3370,
61,
35782,
3363,
94,
187,
61,
1968,
92,
926,
27,
49363,
13364,
94,
187,
61,
423,
92,
13206,
94,
187,
187,
14739,
15,
393,
2574,
709,
92,
2574,
27,
5892,
21691,
64,
73,
64,
29844,
94,
14371,
326,
253,
16837,
1673,
323,
247,
3638,
2553,
11786,
669,
6526,
288,
5,
588,
2572,
342,
3629,
3828,
9544,
370,
73,
64,
18,
5,
285,
247,
4067,
3064,
875,
253,
32450,
14452,
370,
79,
64,
18,
1366,
370,
79,
64,
19,
1352,
3900,
253,
2553,
27935,
403,
908,
281,
17029,
253,
5673,
370,
73,
9,
89,
13,
90,
4244,
352,
310,
1774,
281,
3877,
326,
359,
588,
417,
10725,
327,
253,
7880,
2193,
273,
253,
25578,
5673,
19972,
13,
533,
2581,
327,
253,
3102,
25738,
15,
3900,
253,
7880,
2193,
273,
370,
73,
5,
403,
7996,
281,
10575,
275,
669,
6526,
288,
5,
347,
973,
347,
370,
73,
49538,
253,
2797,
3102,
25738,
15,
380,
7103,
6974,
3797,
1264,
21488,
5018,
27,
3973,
13,
253,
2553,
27935,
669,
6526,
288,
9,
89,
13,
90,
1009,
403,
4561,
432,
253,
16837,
1673,
5950,
1309,
253,
4679,
15,
187,
10951,
13,
253,
5673,
5281,
370,
73,
9,
89,
13,
90,
1009,
310,
25578,
13,
342,
581,
34093,
4795,
941,
873,
2011,
275,
5317,
18078,
709,
92,
926,
27,
49363,
13364,
1603,
67,
481,
187,
688,
247,
2626,
3213,
13,
253,
11360,
3102,
11225,
310,
10375,
970,
247,
18368,
4979,
285,
253,
3969,
1612,
6637,
13,
347,
2011,
275,
5317,
18078,
709,
92,
926,
27,
49363,
13364,
1603,
68,
481,
187,
510,
4278,
273,
253,
7103,
403,
2529,
275,
17138,
18078,
709,
92,
1704,
27,
1212,
36,
14,
15419,
7165,
2490,
187,
61,
4674,
92,
9340,
285,
11985,
94,
187,
61,
1968,
92,
1704,
27,
16680,
94,
187,
187,
688,
436,
2593,
13,
359,
1246,
253,
5661,
1543,
323,
253,
23810,
5802,
10351,
41967,
17620,
15,
187,
1231,
2770,
327,
253,
4619,
6718,
285,
1304,
253,
11360,
3102,
25738,
15,
187,
12117,
1037,
13,
323,
581,
4229,
873,
273,
5661,
3602,
13,
253,
985,
2722,
1027,
8847,
6128,
342,
3629,
6718,
22652,
15,
380,
5637,
769,
2368,
5644,
281,
767,
11771,
2538,
27,
2058,
253,
1930,
14,
12081,
313,
74,
15,
70,
15,
253,
7548,
273,
253,
8781,
582,
253,
1821,
48218,
273,
253,
18884,
14,
39782,
314,
442,
5673,
9774,
684,
1955,
281,
253,
3732,
28200,
4073,
15,
1284,
253,
3732,
28200,
4073,
7024,
13284,
5372,
327,
253,
5637,
1673,
4757,
387,
253,
5673,
13,
247,
23007,
6276,
342,
247,
4294,
669,
3151,
5,
5644,
281,
271,
769,
2368,
273,
253,
1821,
48218,
342,
247,
4294,
273,
370,
19,
393,
3151,
1352,
3840,
13,
253,
10351,
41967,
17620,
6634,
1840,
247,
4619,
6718,
13,
534,
5644,
281,
22957,
342,
247,
4294,
273,
669,
3151,
5,
672,
6726,
342,
247,
2014,
4294,
15,
209,
187,
3404,
1698,
16820,
22652,
13,
253,
769,
2368,
273,
253,
1821,
48218,
5644,
281,
1355,
5673,
19972,
342,
7019,
253,
16820,
4294,
13,
534,
310,
12345,
28629,
8523,
15,
209,
187,
3378,
3629,
10896,
13,
253,
769,
2368,
273,
253,
1821,
48218,
4916,
625,
11906,
285,
10212,
34165,
432,
253,
7548,
273,
253,
8781,
715,
253,
5028,
15,
209,
187,
34,
13765,
3102,
310,
3562,
13,
342,
253,
10212,
4886,
715,
253,
4055,
273,
253,
5028,
15,
209,
187,
1552,
1055,
310,
2074,
281,
253,
5024,
14,
15007,
769,
2368,
275,
253,
1083,
273,
35008,
9049,
10351,
41967,
10212,
15,
187,
3378,
2007,
3629,
16820,
10896,
13,
10351,
41967,
10212,
1265,
281,
3176,
13,
8523,
760,
342,
247,
1355,
10896,
15,
6295,
5024,
14,
47003,
347,
973,
347,
10351,
41967,
10212,
403,
1246,
10486,
15,
209,
187,
34,
2007,
2572,
273,
253,
10896,
5644,
281,
253,
4702,
273,
10046,
10351,
41967,
10212,
13,
534,
3135,
281,
25903,
253,
985,
15,
209,
187,
5872,
13,
247,
5799,
2491,
273,
6276,
22652,
4961,
13,
835,
253,
3102,
4916,
6474,
323,
1048,
2069,
846,
271,
3302,
3116,
3408,
15,
187,
34,
2074,
11562,
369,
2540,
407,
393,
10179,
292,
92,
49,
408,
2284,
7798,
94,
285,
12877,
281,
14561,
2538,
15,
209,
187,
3039,
690,
2173,
16820,
10896,
310,
22536,
13,
2299,
13,
253,
10351,
41967,
10212,
4035,
281,
1756,
1919,
597,
1056,
3057,
342,
253,
5170,
9885,
285,
1421,
281,
271,
5637,
4602,
875,
1097,
14722,
15,
187,
5872,
13,
253,
1612,
6186,
6294,
84,
745,
8356,
15,
209,
187,
688,
253,
1563,
13,
512,
4764,
13553,
326,
1421,
281,
10351,
41967,
10212,
403,
17007,
347,
4619,
13,
1580,
253,
6718,
22536,
253,
4619,
6718,
15,
187,
3074,
643,
3602,
13553,
342,
5024,
14,
47003,
760,
403,
17007,
347,
749,
26717,
13,
1580,
642,
10351,
41967,
6127,
20177,
1309,
253,
3368,
15,
2490,
187,
61,
2377,
4674,
92,
15131,
273,
253,
7043,
4719,
94,
187,
61,
1968,
92,
31657,
27,
16680,
64,
40918,
20617,
318,
94,
187,
187,
1909,
359,
452,
5469,
275,
2593,
393,
709,
92,
1704,
27,
783,
33977,
64,
10008,
2023,
253,
10527,
1566,
908,
281,
3283,
253,
17620,
7887,
310,
1754,
327,
253,
3962,
14,
20875,
8218,
1227,
3962,
14,
48679,
9376,
15,
1284,
369,
2011,
407,
393,
10179,
292,
92,
56,
472,
9638,
2023,
253,
5740,
970,
253,
13584,
90,
14,
20875,
8218,
1566,
11355,
281,
253,
3962,
14,
20875,
8218,
1227,
3962,
14,
48679,
1566,
604,
253,
20791,
4313,
875,
253,
32819,
310,
10481,
1029,
15,
496,
1340,
281,
2939,
253,
13091,
273,
253,
3962,
14,
48679,
9376,
13,
359,
452,
12848,
253,
46664,
4719,
275,
253,
2406,
5558,
313,
11364,
14,
7779,
10,
432,
393,
5824,
92,
18,
70,
14,
21,
2704,
17071,
61,
468,
61,
22478,
94,
281,
393,
5824,
92,
18,
70,
14,
18,
2704,
17071,
61,
468,
61,
22478,
94,
387,
5010,
4229,
3602,
313,
17525,
280,
531,
4166,
21819,
393,
5824,
92,
17,
15,
2082,
2704,
1154,
74,
659,
2023,
6276,
4294,
393,
5824,
92,
740,
2704,
379,
21239,
38331,
187,
187,
688,
4677,
393,
709,
92,
926,
27,
9340,
64,
68,
46061,
24053,
1603,
66,
582,
253,
21657,
2797,
7882,
3711,
310,
2011,
15,
1284,
310,
7985,
13,
253,
4619,
6718,
310,
417,
7052,
5876,
407,
253,
7043,
4719,
15,
187,
1147,
310,
5777,
2559,
387,
370,
68,
2253,
1156,
92,
44,
2019,
7628,
5824,
92,
18,
70,
14,
21,
2704,
17071,
61,
468,
61,
22478,
724,
285,
5777,
3777,
387,
370,
68,
2253,
1156,
92,
44,
2019,
7628,
5824,
92,
18,
70,
14,
20,
2704,
17071,
61,
468,
61,
22478,
3363,
3932,
642,
4518,
37651,
9058,
310,
1246,
13,
359,
11104,
253,
3910,
281,
5661,
20418,
15,
187,
4041,
2442,
2603,
273,
11649,
403,
253,
5024,
14,
47003,
42393,
715,
253,
4275,
2919,
273,
253,
985,
13,
2221,
28163,
285,
14551,
981,
253,
10351,
41967,
10212,
15,
5220,
13,
1580,
253,
5481,
15771,
327,
2553,
27935,
13,
253,
7200,
387,
1355,
2553,
27935,
310,
3710,
15,
12257,
13,
253,
21657,
2797,
4619,
32730,
921,
4344,
4345,
342,
253,
28055,
8131,
1318,
273,
370,
55,
2253,
1156,
92,
24913,
7628,
5824,
92,
1508,
4590,
2704,
29186,
724,
313,
47084,
347,
247,
17889,
1386,
481,
187,
61,
2043,
92,
13206,
94,
187,
50276,
61,
9229,
1282,
464,
249,
741,
909,
1354,
982,
60,
3429,
2029,
35673,
1019,
68,
46061,
24053,
15,
2265,
94,
187,
50276,
61,
34480,
92,
688,
23718,
273,
253,
2406,
14,
14213,
7043,
4719,
327,
253,
17620,
15,
187,
50276,
9,
66,
10,
28111,
595,
2797,
7882,
3711,
2366,
342,
253,
10527,
10554,
323,
253,
4619,
6718,
2797,
432,
253,
3962,
14,
20875,
8218,
1227,
3962,
14,
48679,
1566,
313,
26717,
6718,
370,
55,
2253,
1156,
92,
24913,
7628,
5824,
92,
1508,
4590,
2704,
29186,
34942,
187,
50276,
9,
67,
10,
28111,
595,
3413,
3102,
11225,
2366,
342,
253,
10527,
10554,
323,
253,
11360,
11225,
2797,
432,
253,
3962,
14,
20875,
8218,
1227,
3962,
14,
48679,
1566,
11443,
2260,
2029,
5824,
92,
883,
15,
1671,
2704,
78,
3370,
61,
35782,
34942,
5815,
941,
1127,
10140,
281,
581,
4619,
6718,
275,
749,
13206,
313,
66,
481,
380,
2228,
8965,
1957,
253,
2629,
11254,
273,
253,
2797,
11225,
3413,
1561,
581,
3368,
35918,
187,
61,
1968,
92,
926,
27,
9340,
64,
68,
46061,
24053,
94,
187,
61,
423,
92,
13206,
94,
187,
187,
688,
4677,
393,
709,
92,
926,
27,
9340,
64,
68,
46061,
24053,
1603,
67,
582,
253,
21657,
3413,
3102,
25738,
3969,
281,
253,
4619,
32730,
273,
4677,
393,
709,
92,
926,
27,
9340,
64,
68,
46061,
24053,
1603,
66,
10,
403,
2011,
15,
1284,
310,
7985,
13,
253,
1818,
273,
25738,
875,
1027,
6276,
22652,
310,
273,
253,
1072,
1340,
273,
9777,
347,
253,
3910,
689,
253,
7043,
4719,
15,
187,
510,
21657,
2797,
2193,
921,
1175,
4345,
342,
253,
28055,
8131,
1318,
273,
669,
2260,
14680,
5824,
92,
883,
15,
1671,
2704,
78,
3370,
61,
35782,
3363,
209,
187,
7542,
253,
5661,
1543,
24493,
1475,
253,
28055,
8131,
1318,
13,
253,
4679,
5224,
326,
253,
7043,
4719,
1057,
417,
3012,
4833,
253,
4795,
11225,
275,
253,
2491,
273,
6299,
5421,
15,
3813,
13,
253,
20791,
3064,
875,
1097,
32819,
310,
10481,
1781,
281
] |
In) [com.apple.bluetooth:bluetoothaudiod] Failed to receive incoming SCO data
2020-10-06 14:36:58.536471-0300 0x21d780 Default 0x0 60109 0 coreaudiod: (CoreAudio) Error during StartHardware call, calling StopHardware(): -536870186
2020-10-06 14:36:58.536697-0300 0x21d6c9 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_IOContext::StartIOThread: the IO thread failed to start, Error: -536870186 (<private>)
2020-10-06 14:37:00.271641-0300 0x21d7d2 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:00.271857-0300 0x21d7d2 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:00.303441-0300 0x21d7c4 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:00.303640-0300 0x21d7d0 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:14.564078-0300 0x21d9a1 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:14.564365-0300 0x21d9a1 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:14.583956-0300 0x21d9a1 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:14.584163-0300 0x21d9a1 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:14.989580-0300 0x21d7df Default 0x0 60109 0 coreaudiod: (BluetoothAudioPlugIn) [com.apple.bluetooth:bluetoothaudiod] XPC Error remove all devices
2020-10-06 14:37:17.572464-0300 0x21d808 Error 0x0 60109 0 coreaudiod: (BluetoothAudioPlugIn) [com.apple.bluetooth:bluetoothaudiod] Failed to receive incoming SCO data
2020-10-06 14:37:17.572903-0300 0x21d808 Default 0x0 60109 0 coreaudiod: (CoreAudio) Error during StartHardware call, calling StopHardware(): -536870186
2020-10-06 14:37:17.573176-0300 0x21d7ba Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_IOContext::StartIOThread: the IO thread failed to start, Error: -536870186 (<private>)
2020-10-06 14:37:17.581020-0300 0x21da06 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:17.581400-0300 0x21da06 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:17.673358-0300 0x21da08 Default 0x0 60109 0 coreaudiod: (BluetoothAudioPlugIn) [com.apple.bluetooth:bluetoothaudiod] XPC Error remove all devices
2020-10-06 14:37:17.701881-0300 0x21d9e8 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DCFString: the object does not implement the property
2020-10-06 14:37:17.703955-0300 0x21d9e8 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:17.704334-0300 0x21d9e8 Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_Object_GetPropertyData_DAI32: the object does not implement the property
2020-10-06 14:37:17.825617-0300 0x21d7ba Error 0x0 60109 0 coreaudiod: (CoreAudio) HALS_IOContext::StartIOThread: no master engine info
bluetootdhd:
2020-10-06 14:36:43.105800-0300 0x21cb0a Default 0x0 153 0 bluetoothd: (WPDaemon) [com.apple.bluetooth:WirelessProximity] [Privacy] Did stop advertising with error: (null)
2020-10-06 14:36:43.121454-0300 0x21cb0a Default 0x0 153 0 bluetoothd: (WPDaemon) [com.apple.bluetooth:WirelessProximity] [Privacy] Did stop advertising with error: (null)
2020-10-06 14:36:43.134401-0300 0x21d28b Default 0x0 153 0 bluetoothd: (WPDaemon) [com.apple.bluetooth:WirelessProximity] Started to advertise for type 12 with error (null)
2020-10-06 14:36:43.134522-0300 0x21d28b Default 0x0 153 0 bluetoothd: (WPDaemon) [com.apple.bluetooth:WirelessProximity] Started to advertise for type 10 with error (null)
2020-10-06 14:36:43.134634-0300 0x21d28b Default 0x0 153 0 bluetoothd: (WPDaemon) [com.apple.bluetooth:WirelessProximity] Started to advertise for type 16 with error (null)
2020-10-06 14:36:45.074236-0300 0x21cb0a Error 0x0 153 0 bluetoothd: (WPDaemon) [com.apple.bluetooth:WirelessProximity] CoreBluetooth isn't advertising for client type 9
2020-10-06 14:36:45.109313-0300 0x21d226 Default 0x0 153 0 bluetoothd: (WPDaemon) [com.apple.bluetooth:WirelessProximity] [Privacy] Did stop advertising with error: (null)
2020-10-06 14:36:45.130499-0300 0x21cb0a Default 0x0 153 0 bluetoothd: (WPDaemon) [com.apple.bluetooth:WirelessProximity] [Privacy] Did stop advertising with error: (null)
2020-10-06 14:36:45.130701-0300 0x21cb0a Default 0x0 153 0 bluetoothd: (WPDaemon) [com.apple.bluetooth:WirelessProximity] [Privacy] Did stop advertising with error: (null)
2020-10-06 | redpajama | [
688,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
1559,
23548,
5353,
1970,
62,
40267,
281,
4763,
19363,
322,
5915,
941,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1812,
27,
3680,
15,
3357,
1540,
3677,
14,
2941,
361,
470,
89,
1797,
69,
43698,
50275,
9671,
50273,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
4756,
1309,
11075,
24953,
1935,
1067,
13,
6789,
21305,
24953,
1935,
14850,
428,
42082,
2597,
520,
2691,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1812,
27,
3680,
15,
42082,
29790,
14,
2941,
361,
470,
89,
1797,
69,
23,
68,
26,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
6527,
5856,
1450,
8252,
6527,
11589,
27,
253,
19698,
6293,
4242,
281,
1265,
13,
11759,
27,
428,
42082,
2597,
520,
2691,
16616,
9486,
22226,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
361,
15,
1630,
1036,
3156,
14,
2941,
361,
470,
89,
1797,
69,
24,
69,
19,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
361,
15,
1630,
1093,
3011,
14,
2941,
361,
470,
89,
1797,
69,
24,
69,
19,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
361,
15,
1229,
1706,
3156,
14,
2941,
361,
470,
89,
1797,
69,
24,
68,
21,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
361,
15,
1229,
1812,
1449,
14,
2941,
361,
470,
89,
1797,
69,
24,
69,
17,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1047,
15,
3208,
1449,
3141,
14,
2941,
361,
470,
89,
1797,
69,
26,
66,
18,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1047,
15,
43995,
22359,
14,
2941,
361,
470,
89,
1797,
69,
26,
66,
18,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1047,
15,
3680,
1867,
3208,
14,
2941,
361,
470,
89,
1797,
69,
26,
66,
18,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1047,
15,
22,
2759,
18121,
14,
2941,
361,
470,
89,
1797,
69,
26,
66,
18,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1047,
15,
4185,
2222,
1438,
14,
2941,
361,
470,
89,
1797,
69,
24,
4989,
50275,
9671,
50273,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
5622,
23548,
23751,
48650,
688,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
1559,
23548,
5353,
1970,
62,
1594,
5077,
11759,
5386,
512,
4095,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1166,
15,
3011,
1348,
1540,
14,
2941,
361,
470,
89,
1797,
69,
23576,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
5622,
23548,
23751,
48650,
688,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
1559,
23548,
5353,
1970,
62,
40267,
281,
4763,
19363,
322,
5915,
941,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1166,
15,
3011,
1717,
2941,
14,
2941,
361,
470,
89,
1797,
69,
23576,
50275,
9671,
50273,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
4756,
1309,
11075,
24953,
1935,
1067,
13,
6789,
21305,
24953,
1935,
14850,
428,
42082,
2597,
520,
2691,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1166,
15,
43924,
17184,
14,
2941,
361,
470,
89,
1797,
69,
24,
5830,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
6527,
5856,
1450,
8252,
6527,
11589,
27,
253,
19698,
6293,
4242,
281,
1265,
13,
11759,
27,
428,
42082,
2597,
520,
2691,
16616,
9486,
22226,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1166,
15,
3680,
740,
938,
14,
2941,
361,
470,
89,
1797,
1473,
3071,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1166,
15,
3680,
1047,
361,
14,
2941,
361,
470,
89,
1797,
1473,
3071,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1166,
15,
2251,
1610,
3680,
14,
2941,
361,
470,
89,
1797,
1473,
2904,
50275,
9671,
50273,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
5622,
23548,
23751,
48650,
688,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
1559,
23548,
5353,
1970,
62,
1594,
5077,
11759,
5386,
512,
4095,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1166,
15,
42940,
41325,
14,
2941,
361,
470,
89,
1797,
69,
26,
70,
25,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
37,
7386,
2776,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1166,
15,
1967,
1867,
2417,
14,
2941,
361,
470,
89,
1797,
69,
26,
70,
25,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1166,
15,
26942,
24257,
14,
2941,
361,
470,
89,
1797,
69,
26,
70,
25,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
4241,
64,
3633,
8324,
3233,
64,
4877,
42,
1237,
27,
253,
1789,
1057,
417,
3359,
253,
2867,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1787,
27,
1166,
15,
25,
9726,
1166,
14,
2941,
361,
470,
89,
1797,
69,
24,
5830,
50275,
4756,
50271,
17,
89,
17,
50260,
39855,
2693,
50276,
17,
50274,
6443,
5353,
1970,
27,
313,
13745,
23751,
10,
50276,
41,
16755,
64,
6527,
5856,
1450,
8252,
6527,
11589,
27,
642,
6303,
3948,
8692,
187,
187,
1559,
19264,
1412,
69,
13838,
27,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1812,
27,
3079,
15,
740,
3680,
361,
14,
2941,
361,
470,
89,
1797,
11316,
17,
66,
50275,
9671,
50273,
17,
89,
17,
50260,
16271,
50274,
17,
50274,
1559,
23548,
69,
27,
313,
56,
5414,
66,
15125,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
31889,
1417,
1845,
3266,
414,
62,
544,
36234,
1974,
62,
10348,
3523,
12089,
342,
2228,
27,
313,
8629,
10,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1812,
27,
3079,
15,
805,
1047,
3439,
14,
2941,
361,
470,
89,
1797,
11316,
17,
66,
50275,
9671,
50273,
17,
89,
17,
50260,
16271,
50274,
17,
50274,
1559,
23548,
69,
27,
313,
56,
5414,
66,
15125,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
31889,
1417,
1845,
3266,
414,
62,
544,
36234,
1974,
62,
10348,
3523,
12089,
342,
2228,
27,
313,
8629,
10,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1812,
27,
3079,
15,
1012,
2031,
520,
14,
2941,
361,
470,
89,
1797,
69,
1619,
67,
50275,
9671,
50273,
17,
89,
17,
50260,
16271,
50274,
17,
50274,
1559,
23548,
69,
27,
313,
56,
5414,
66,
15125,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
31889,
1417,
1845,
3266,
414,
62,
11075,
264,
281,
46459,
323,
1511,
1249,
342,
2228,
313,
8629,
10,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1812,
27,
3079,
15,
1012,
1857,
1423,
14,
2941,
361,
470,
89,
1797,
69,
1619,
67,
50275,
9671,
50273,
17,
89,
17,
50260,
16271,
50274,
17,
50274,
1559,
23548,
69,
27,
313,
56,
5414,
66,
15125,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
31889,
1417,
1845,
3266,
414,
62,
11075,
264,
281,
46459,
323,
1511,
884,
342,
2228,
313,
8629,
10,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1812,
27,
3079,
15,
1012,
2950,
1706,
14,
2941,
361,
470,
89,
1797,
69,
1619,
67,
50275,
9671,
50273,
17,
89,
17,
50260,
16271,
50274,
17,
50274,
1559,
23548,
69,
27,
313,
56,
5414,
66,
15125,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
31889,
1417,
1845,
3266,
414,
62,
11075,
264,
281,
46459,
323,
1511,
1668,
342,
2228,
313,
8629,
10,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1812,
27,
1857,
15,
39768,
21358,
14,
2941,
361,
470,
89,
1797,
11316,
17,
66,
50275,
4756,
50271,
17,
89,
17,
50260,
16271,
50274,
17,
50274,
1559,
23548,
69,
27,
313,
56,
5414,
66,
15125,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
31889,
1417,
1845,
3266,
414,
62,
13415,
5622,
23548,
3548,
626,
12089,
323,
5268,
1511,
898,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1812,
27,
1857,
15,
740,
4590,
1012,
14,
2941,
361,
470,
89,
1797,
69,
21345,
50275,
9671,
50273,
17,
89,
17,
50260,
16271,
50274,
17,
50274,
1559,
23548,
69,
27,
313,
56,
5414,
66,
15125,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
31889,
1417,
1845,
3266,
414,
62,
544,
36234,
1974,
62,
10348,
3523,
12089,
342,
2228,
27,
313,
8629,
10,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1812,
27,
1857,
15,
1012,
2125,
1525,
14,
2941,
361,
470,
89,
1797,
11316,
17,
66,
50275,
9671,
50273,
17,
89,
17,
50260,
16271,
50274,
17,
50274,
1559,
23548,
69,
27,
313,
56,
5414,
66,
15125,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
31889,
1417,
1845,
3266,
414,
62,
544,
36234,
1974,
62,
10348,
3523,
12089,
342,
2228,
27,
313,
8629,
10,
187,
14952,
14,
740,
14,
3071,
1638,
27,
1812,
27,
1857,
15,
1012,
2922,
520,
14,
2941,
361,
470,
89,
1797,
11316,
17,
66,
50275,
9671,
50273,
17,
89,
17,
50260,
16271,
50274,
17,
50274,
1559,
23548,
69,
27,
313,
56,
5414,
66,
15125,
10,
544,
681,
15,
19934,
15,
1559,
23548,
27,
31889,
1417,
1845,
3266,
414,
62,
544,
36234,
1974,
62,
10348,
3523,
12089,
342,
2228,
27,
313,
8629,
10,
187,
14952,
14,
740,
14,
3071
] |
transition probability can be
calculated using Langer's theory \cite{Langer}. The exact production rate
is important for the timing of the transition and the determination of the
corresponding temperature. The baryon asymmetry of the universe
may be generated through bubble expansion because the three Sakharov criteria
-- C/CP violation, baryon number violation and nonequilibrium -- are
fulfilled.
In a proper treatment of the electroweak phase transition
the coarse-grained action constructed
consistently for the particular problem and the
size scale involved should be used. If there
are different mass scales one can integrate out first the more massive fields
and keep the light fields in an effective action relevant for the phase transition.
At high temperature non-static Matsubara modes may be considered as heavy
fields. Integrating out these modes leads to a 3-dimensional effective
theory with symmetry restoration at high temperature.
The related phase transition is predicted to be second-order instead
of first-order, however. It becomes first-order due to contributions from
static modes. So some of the light modes have to be
integrated out as well in calculating the effective action.
It is well known that
integrating out the non-static modes using the high temperature expansions
and then integrating out the static gauge boson fields one has already
an effective potential leading to a first-order phase transition.
In this spirit it is very natural to integrate out the static Goldstone
modes as well. This is most conveniently done in the 't~Hooft-Feynman
covariant background gauge.
With the pure real scalar background of the bubble configurations
one ends up with a 3-dimensional effective Higgs action whose fluctuations
still have to be considered.
If a small coupling parameter - maybe after some redefinitions - can
be identified, the one-loop perturbative expansion for the effective action
will be a good approximation. A carefully introduced gauge coupling $g_3(T)^2$
in the broken phase is well behaved throughout the phase transition, and
indeed it is not very large for $m_H\leq m_W$.
The $Z_H(\varphi)$ factor of the Higgs kinetic term will be calculated explicitly
in the 't~Hooft-Feynman covariant background gauge in one-loop order. It differs
considerably from that in the Landau gauge. Due to the fact that
$Z_H(\varphi)$ is negative in some $\varphi$ range, it is not sensible to include it in this
form in the effective action. We will argue that the derivative expansion
breaks down in this range.
We also inspect the one-loop $Z_{\rm gauge}(\varphi)$ prefactor of the kinetic gauge term.
It plays no direct role in the bubble action. However, $g_3(T)^2/Z_{\rm gauge}(\varphi)$ is
the effective gauge coupling at the constant scale $\varphi$.
It blows up for $Z_{\rm gauge}\to0$ and this happens already at rather large values of
$\varphi \; (>0.4)$ for $m_H>\frac{1}{2}m_W$.
Thus except for very small $m_H$ the $\varphi$-range relevant for the bubble
configuration may be largely nonperturbative in the effective gauge coupling.
Integration of the (enlarged) gauge degrees of freedom to some (one) loop order
can in this range at best be suggestive for the form of the effective Higgs
action.
We will then consider a Higgs effective action with the known one-loop
effective potential and a kinetic term with arbitrary constant $Z$ factor.
This allows us to come to our main subject, the discussion of radiative
corrections in the heat kernel method.
Since there is no background gauge field for the bubble
configuration, the heat kernel expansion already exists to very high order
(and can easily be extended using new methods \cite{SchmSchu, FliSchmSchu}).
Thus we can arrive at a very precise treatment of the fluctuations.
It turns out that the static prefactor which is essentially the
fluctuation determinant gives a strong suppression
of the nucleation rate. Its logarithm may be interpreted as the one-loop
correction to the effective action of the critical bubble. The comparison
between the two values decides on the applicability of the
nucleation theory.
Section 2 contains a discussion of the 3-dimensional effective high temperature
Higgs action obtained from one-loop integration of all the other fields
in the 't~Hooft-Feynman background gauge and a critical inspection of
derivative expansion and of perturbation theory. In section 3 we first shortly
review the nucleation rate based on Langer's theory. We discuss the critical
bubbles obtained with the modification mentioned above. In the following we
consider the heat
kernel method for calculating the fluctuation determinant and develop a
particular method to treat zero/instable modes. We present our high
accuracy results for the fluctuation prefactor in the transition rate.
Section 4 gives our conclusion.
Appendix A contains the calculation of $Z$ factors, Appendix B some
generalization of the thin-wall bubble solution. Appendix C gives the
first six operators in the heat kernel expansion.
\section{The Effective Action}
\setcounter{equation}{0}
The critical bubble solutions describing
the first-order phase transition of the electroweak theory are
pure Higgs field
configurations. They are not solutions of the original fundamental field
equations of the electroweak theory, but correspond to an
effective action where (part of)
the other field degrees of freedom have already been integrated
out. It
is the aim of the `exact renormalization group approach'
to derive such an action well adapted to the size of the bubbles.
In the case of a gauge theory this demanding program is just being
developed \cite{ReuWe, Ellwanger}. Still a simpler way to discuss
critical bubbles is to generate new terms of the Higgs effective action by
using low-order perturbation theory, starting from the fundamental Lagrangian.
However in a rigorous treatment this requires the identification of appropriate
expansion parameters (which may not be possible).
\subsection{The high-temperature effective action}
In the case of the electroweak phase transition
it is appropriate to perform a high temperature expansion.
The expansion parameter is $m(T)/T$. The guiding principle is to integrate
out the heavy field degrees of freedom to get an effective theory of the light
fields.
In a first step it is possible to integrate out the non-static Matsubara-frequencies
which gain masses proportional to the temperature $T$ ($2n \pi T$ with
$n \neq 0$ for bosons and $(2n+1) \pi T$ for fermions). The remaining effective
theory is purely bosonic and 3-dimensional. As argued in ref.~\cite{Landsman}
the high-temperature dimensional reduction has shortcomings in higher orders
of perturbation theory.
In a second step the longitudinal component $A_0$ of the gauge field
is integrated out. It develops a Debye-mass proportional to $gT$.
In a third step we rescale the coordinates and fields
\begin{equation} \label{rescale}
\vec{x} \rightarrow \frac{\vec{x}}{gv}, \qquad \Phi \rightarrow v\Phi,
\qquad A \rightarrow v A
\end{equation}
where the scale $v$ is left open for the moment. The remaining
high-temperature effective action can be written, in the limit of vanishing
electroweak mixing angle, as
\begin{equation}\label{Sht}
S_{\rm ht} = \frac{1}{g_3(T)^2} \int d^3x \left[ \frac{1}{4} F_{ij}^a F_{ij}^a
+ (D_i\Phi)^\dagger (D_i\Phi) +
V_{\rm ht}(\Phi^\dagger\Phi) \right]
\end{equation}
with other contributions vanishing
powerlike at high temperature,
e.g.~a $(\Phi^\dagger \Phi)^3 /T^2$ term. They have been
discussed to be unimportant \cite{JaKaPa}.
The effective 3-dimensional gauge coupling is
defined as
\begin{equation}
g_3(T)^2 = \frac{g T}{v} \quad.
\end{equation}
The gauge coupling $g$ has been scaled out of the covariant derivative
and the field strength tensor.
The high-temperature effective potential is
\begin{equation}
V_{\rm ht}(\Phi^\dagger\Phi) =
\frac{\lambda_T}{g^2}\left( (\Phi^\dagger\Phi)^2 -
\left(\frac{v_0(T)}{v}\right)^2\Phi^\dagger\Phi \right) \quad.
\end{equation}
$\frac{v_0(T)^2}{v^2}$ is the asymmetric minimum
\begin{equation}
v_0(T)^2 = \frac{2}{\lambda_T} \left(T_0^2 - T^2 \right) D \ | redpajama | [
5502,
5912,
476,
320,
209,
187,
1179,
32001,
970,
418,
3751,
434,
3762,
393,
41766,
92,
45,
3751,
7165,
380,
3242,
3275,
2281,
187,
261,
1774,
323,
253,
11795,
273,
253,
5502,
285,
253,
7441,
273,
253,
187,
47771,
3276,
15,
380,
46623,
27110,
273,
253,
10325,
187,
11159,
320,
4561,
949,
19251,
7466,
984,
253,
1264,
29869,
9432,
729,
6866,
187,
283,
330,
16,
5305,
8411,
13,
46623,
1180,
8411,
285,
5293,
48494,
1969,
403,
187,
1020,
14653,
15,
2490,
187,
688,
247,
1463,
1971,
273,
253,
4640,
20881,
3408,
5502,
187,
783,
25319,
14,
72,
11273,
2250,
8818,
187,
46540,
1574,
323,
253,
1798,
1895,
285,
253,
187,
3281,
4311,
3206,
943,
320,
908,
15,
1310,
627,
209,
187,
609,
1027,
2280,
11498,
581,
476,
19837,
562,
806,
253,
625,
7863,
4910,
187,
395,
1978,
253,
1708,
4910,
275,
271,
3576,
2250,
4623,
323,
253,
3408,
5502,
15,
209,
187,
3404,
1029,
3276,
1327,
14,
4659,
31999,
538,
4595,
10006,
778,
320,
2783,
347,
5536,
187,
15069,
15,
17712,
839,
562,
841,
10006,
5644,
281,
247,
495,
14,
6967,
3576,
209,
187,
32525,
342,
10377,
20384,
387,
1029,
3276,
15,
209,
187,
510,
2905,
3408,
5502,
310,
8131,
281,
320,
1273,
14,
2621,
3185,
209,
187,
1171,
806,
14,
2621,
13,
2299,
15,
733,
4916,
806,
14,
2621,
1955,
281,
9021,
432,
187,
4659,
10006,
15,
1893,
690,
273,
253,
1708,
10006,
452,
281,
320,
187,
45595,
562,
347,
973,
275,
18899,
253,
3576,
2250,
15,
187,
1147,
310,
973,
1929,
326,
187,
13897,
839,
562,
253,
1327,
14,
4659,
10006,
970,
253,
1029,
3276,
40955,
187,
395,
840,
24399,
562,
253,
4228,
11206,
32438,
4910,
581,
556,
2168,
187,
266,
3576,
2442,
4283,
281,
247,
806,
14,
2621,
3408,
5502,
15,
187,
688,
436,
5968,
352,
310,
1077,
3626,
281,
19837,
562,
253,
4228,
7284,
10228,
187,
45949,
347,
973,
15,
831,
310,
954,
34090,
2218,
275,
253,
686,
85,
95,
41,
3288,
649,
14,
7510,
44166,
187,
31485,
6410,
4114,
11206,
15,
209,
187,
3378,
253,
6313,
1524,
13434,
4114,
273,
253,
19251,
16012,
209,
187,
531,
7637,
598,
342,
247,
495,
14,
6967,
3576,
22361,
2250,
3692,
15113,
209,
187,
23350,
452,
281,
320,
2783,
15,
2490,
187,
2042,
247,
1355,
8789,
4764,
428,
5046,
846,
690,
294,
1545,
24164,
428,
476,
209,
187,
1257,
3636,
13,
253,
581,
14,
14075,
43939,
7466,
323,
253,
3576,
2250,
187,
9846,
320,
247,
1175,
11193,
15,
329,
9257,
5611,
11206,
8789,
370,
72,
64,
20,
9,
53,
4800,
19,
5,
187,
249,
253,
7154,
3408,
310,
973,
44944,
4768,
253,
3408,
5502,
13,
285,
209,
187,
527,
13158,
352,
310,
417,
1077,
1781,
323,
370,
78,
64,
41,
61,
3040,
278,
64,
56,
1352,
187,
187,
510,
370,
59,
64,
41,
1035,
4535,
1009,
2803,
273,
253,
22361,
17818,
1307,
588,
320,
5118,
11120,
187,
249,
253,
686,
85,
95,
41,
3288,
649,
14,
7510,
44166,
43359,
4114,
11206,
275,
581,
14,
14075,
1340,
15,
733,
19986,
187,
15603,
1598,
432,
326,
275,
253,
42005,
11206,
15,
12571,
281,
253,
958,
326,
209,
187,
5,
59,
64,
41,
1035,
4535,
1009,
310,
4016,
275,
690,
669,
4535,
5,
2491,
13,
352,
310,
417,
24600,
281,
2486,
352,
275,
436,
187,
630,
275,
253,
3576,
2250,
15,
844,
588,
9059,
326,
253,
4309,
7466,
187,
7054,
84,
1066,
275,
436,
2491,
15,
187,
187,
1231,
671,
16030,
253,
581,
14,
14075,
370,
59,
1126,
1109,
11206,
3713,
4535,
1009,
638,
19012,
273,
253,
17818,
11206,
1307,
15,
187,
1147,
7120,
642,
1480,
2554,
275,
253,
19251,
2250,
15,
1723,
13,
370,
72,
64,
20,
9,
53,
4800,
19,
16,
59,
1126,
1109,
11206,
3713,
4535,
1009,
310,
209,
187,
783,
3576,
11206,
8789,
387,
253,
3638,
4311,
669,
4535,
1352,
209,
187,
1147,
31033,
598,
323,
370,
59,
1126,
1109,
11206,
889,
936,
17,
5,
285,
436,
6569,
2168,
387,
2581,
1781,
2193,
273,
187,
1202,
4535,
11549,
49821,
17,
15,
21,
1009,
323,
370,
78,
64,
41,
13544,
1124,
92,
18,
1217,
19,
94,
78,
64,
56,
1352,
187,
14131,
3707,
323,
1077,
1355,
370,
78,
64,
41,
5,
253,
669,
4535,
2911,
6324,
4623,
323,
253,
19251,
209,
187,
24693,
778,
320,
8127,
1327,
44931,
800,
275,
253,
3576,
11206,
8789,
15,
187,
29653,
318,
273,
253,
313,
257,
14915,
264,
10,
11206,
7759,
273,
7185,
281,
690,
313,
531,
10,
6287,
1340,
187,
5092,
275,
436,
2491,
387,
1682,
320,
32717,
323,
253,
830,
273,
253,
3576,
22361,
209,
187,
1913,
15,
2490,
187,
1231,
588,
840,
1908,
247,
22361,
3576,
2250,
342,
253,
1929,
581,
14,
14075,
187,
13116,
2442,
285,
247,
17818,
1307,
342,
10341,
3638,
370,
59,
5,
2803,
15,
187,
1552,
4483,
441,
281,
1705,
281,
776,
2022,
2256,
13,
253,
5955,
273,
35873,
187,
5528,
38526,
275,
253,
4250,
10295,
1332,
15,
187,
7542,
627,
310,
642,
4114,
11206,
1673,
323,
253,
19251,
187,
24693,
13,
253,
4250,
10295,
7466,
2168,
4961,
281,
1077,
1029,
1340,
187,
9,
395,
476,
4354,
320,
6508,
970,
747,
3082,
393,
41766,
92,
10859,
78,
10859,
86,
13,
401,
965,
10859,
78,
10859,
86,
38331,
187,
14131,
359,
476,
12666,
387,
247,
1077,
10799,
1971,
273,
253,
15113,
15,
187,
187,
1147,
7819,
562,
326,
253,
4228,
638,
19012,
534,
310,
9093,
253,
209,
187,
8501,
291,
2368,
27152,
4245,
247,
2266,
14523,
187,
1171,
253,
48671,
2281,
15,
7850,
42407,
778,
320,
12814,
347,
253,
581,
14,
14075,
187,
5528,
15831,
281,
253,
3576,
2250,
273,
253,
4619,
19251,
15,
380,
5301,
209,
187,
17352,
253,
767,
2193,
21936,
327,
253,
30437,
273,
253,
187,
29371,
318,
3762,
15,
2490,
187,
12612,
374,
4428,
247,
5955,
273,
253,
495,
14,
6967,
3576,
1029,
3276,
187,
34969,
5943,
2250,
2797,
432,
581,
14,
14075,
9554,
273,
512,
253,
643,
4910,
187,
249,
253,
50276,
626,
95,
41,
3288,
649,
14,
7510,
44166,
4114,
11206,
285,
247,
4619,
15981,
273,
187,
46229,
800,
7466,
285,
273,
20452,
3762,
15,
496,
2593,
495,
359,
806,
13515,
187,
15337,
253,
48671,
2281,
1754,
327,
418,
3751,
434,
50276,
32525,
15,
844,
2319,
253,
4619,
187,
67,
538,
9143,
2797,
342,
253,
11237,
5393,
1840,
15,
496,
253,
1563,
359,
209,
187,
15603,
253,
4250,
209,
187,
22562,
1332,
323,
18899,
253,
31608,
27152,
285,
1287,
247,
187,
50077,
1332,
281,
1555,
5058,
16,
6839,
494,
10006,
15,
844,
1246,
776,
1029,
187,
18921,
1974,
1543,
323,
253,
31608,
638,
19012,
275,
253,
5502,
2281,
15,
209,
187,
12612,
577,
4245,
776,
6452,
15,
187,
31796,
329,
4428,
253,
10272,
273,
370,
59,
5,
2616,
13,
17138,
378,
690,
187,
16691,
1320,
273,
253,
6906,
14,
12081,
19251,
2900,
15,
17138,
330,
4245,
253,
187,
7053,
2800,
9158,
275,
253,
4250,
10295,
7466,
15,
535,
187,
61,
4674,
92,
510,
41805,
12121,
94,
187,
61,
1178,
20285,
92,
29813,
1217,
17,
94,
187,
187,
510,
4619,
19251,
5482,
12930,
187,
783,
806,
14,
2621,
3408,
5502,
273,
253,
4640,
20881,
3762,
403,
187,
6313,
22361,
1673,
187,
5397,
13087,
15,
1583,
403,
417,
5482,
273,
253,
3236,
7936,
1673,
187,
2655,
569,
273,
50276,
783,
4640,
20881,
3762,
13,
533,
2723,
281,
271,
209,
187,
13116,
2250,
835,
313,
2003,
273,
10,
187,
783,
643,
1673,
7759,
273,
7185,
452,
2168,
644,
8527,
209,
187,
483,
15,
733,
187,
261,
253,
4388,
273,
253,
2634,
42611,
39358,
1387,
2746,
8,
209,
187,
936,
15313,
824,
271,
2250,
973,
12956,
281,
253,
1979,
273,
253,
27892,
15,
187,
688,
253,
1083,
273,
247,
11206,
3762,
436,
17905,
2086,
310,
816,
1146,
187,
35208,
393,
41766,
92,
1785,
86,
1231,
13,
9545,
88,
3751,
7165,
11706,
247,
19554,
1039,
281,
2319,
209,
187,
26717,
27892,
310,
281,
6635,
747,
2426,
273,
253,
22361,
3576,
2250,
407,
209,
187,
5302,
1698,
14,
2621,
20452,
3762,
13,
4983,
432,
253,
7936,
26150,
15,
187,
6436,
275,
247,
26565,
1971,
436,
4419,
253,
8137,
273,
4569,
187,
4347,
6232,
3602,
313,
4609,
778,
417,
320,
1896,
481,
187,
187,
61,
2377,
4674,
92,
510,
1029,
14,
26158,
3576,
2250,
94,
187,
187,
688,
253,
1083,
273,
253,
50276,
39782,
20881,
3408,
5502,
209,
187,
262,
310,
4569,
281,
1347,
247,
1029,
3276,
7466,
15,
187,
510,
7466,
4764,
310,
370,
78,
9,
53,
1933,
53,
1352,
380,
26766,
8063,
310,
281,
19837,
209,
187,
483,
253,
5536,
1673,
7759,
273,
7185,
281,
755,
271,
3576,
3762,
273,
253,
1708,
187,
15069,
15,
187,
187,
688,
247,
806,
3213,
352,
310,
1896,
281,
19837,
562,
253,
1327,
14,
4659,
31999,
538,
4595,
14,
71,
1844,
4601,
187,
4609,
6351,
11843,
14495,
281,
253,
3276,
370,
53,
5,
4816,
19,
79,
393,
2059,
308,
5,
342,
209,
187,
5,
79,
393,
9540,
470,
5,
323,
41913,
285,
3019,
19,
79,
12,
18,
10,
393,
2059,
308,
5,
323,
34040,
481,
380,
5780,
3576,
187,
32525,
310,
15846,
16237,
5120,
285,
495,
14,
6967,
15,
1284,
9125,
275,
1275,
15,
18078,
41766,
92,
45,
2287,
1342,
94,
187,
783,
1029,
14,
26158,
15759,
5141,
556,
35387,
275,
2169,
7367,
209,
187,
1171,
20452,
3762,
15,
2490,
187,
688,
247,
1273,
3213,
253,
14854,
4445,
370,
34,
64,
17,
5,
273,
253,
11206,
1673,
209,
187,
261,
8527,
562,
15,
733,
24357,
247,
1605,
17034,
14,
14611,
14495,
281,
370,
72,
53,
1352,
2490,
187,
688,
247,
2626,
3213,
359,
9708,
1079,
253,
11627,
285,
4910,
209,
187,
61,
2043,
92,
29813,
94,
393,
1968,
92,
373,
25912,
94,
187,
61,
4642,
92,
89,
94,
393,
4287,
393,
1124,
464,
4642,
92,
89,
5932,
72,
87,
2023,
393,
9315,
50275,
61,
6065,
393,
4287,
362,
61,
6065,
13,
187,
393,
9315,
50275,
34,
393,
4287,
362,
329,
187,
61,
423,
92,
29813,
94,
187,
2811,
253,
4311,
370,
87,
5,
310,
1669,
1527,
323,
253,
2774,
15,
380,
5780,
209,
187,
8656,
14,
26158,
3576,
2250,
476,
320,
3542,
13,
275,
253,
2701,
273,
29199,
209,
187,
39782,
20881,
12480,
6907,
13,
347,
187,
61,
2043,
92,
29813,
889,
1968,
92,
52,
384,
94,
187,
52,
1126,
1109,
288,
85,
94,
426,
393,
1124,
92,
18,
1217,
72,
64,
20,
9,
53,
4800,
19,
94,
50276,
61,
565,
277,
63,
20,
89,
393,
1274,
60,
393,
1124,
92,
18,
1217,
21,
94,
401,
578,
1944,
2306,
66,
401,
578,
1944,
2306,
66,
2490,
559,
313,
37,
64,
74,
61,
6065,
25690,
11560,
313,
37,
64,
74,
61,
6065,
10,
559,
2490,
657,
1126,
1109,
288,
85,
3713,
6065,
2850,
11560,
61,
6065,
10,
393,
918,
62,
187,
61,
423,
92,
29813,
94,
187,
3113,
643,
9021,
29199,
209,
187,
9177,
3022,
387,
1029,
3276,
13,
209,
187,
70,
15,
72,
15,
95,
66,
9722,
6065,
2850,
11560,
393,
6065,
4800,
20,
1227,
53,
63,
19,
5,
1307,
15,
1583,
452,
644,
187,
35844,
264,
281,
320,
440,
18108,
393,
41766,
92,
37135,
29456,
9387,
7165,
187,
187,
510,
3576,
495,
14,
6967,
11206,
8789,
310,
187,
7769,
347,
209,
187,
61,
2043,
92,
29813,
94,
187,
72,
64,
20,
9,
53,
4800,
19,
426,
393,
1124,
92,
72,
308,
1217,
87,
94,
393,
3362,
15,
187,
61,
423,
92,
29813,
94,
187,
510,
11206,
8789,
370,
72,
5,
556,
644,
24337,
562,
273,
253,
43359,
4309,
209,
187,
395,
253,
1673,
4757,
13148,
15,
187,
510,
1029,
14,
26158,
3576,
2442,
310,
209,
187,
61,
2043,
92,
29813,
94,
187,
55,
1126,
1109,
288,
85,
3713,
6065,
2850,
11560,
61,
6065,
10,
426,
2490,
50275,
61,
1124,
464,
2260,
64,
53,
1217,
72,
63,
19,
889,
1274,
9,
5081,
6065,
2850,
11560,
61,
6065,
4800,
19,
428,
2490,
50275,
61,
1274,
1035,
1124,
92,
87,
64,
17,
9,
53,
9783,
87,
889,
918,
4800,
19,
61,
6065,
2850,
11560,
61,
6065,
393,
918,
10,
393,
3362,
15,
187,
61,
423,
92,
29813,
94,
187,
1202,
1124,
92,
87,
64,
17,
9,
53,
4800,
19,
1217,
87,
63,
19,
724,
310,
253,
26640,
5927,
209,
187,
61,
2043,
92,
29813,
94,
187,
87,
64,
17,
9,
53,
4800,
19,
426,
393,
1124,
92,
19,
2704,
2260,
64,
53,
94,
393,
1274,
9,
53,
64,
17,
63,
19,
428,
308,
63,
19,
393,
918,
10,
399,
393
] |
to investigate the topological properties of an isolated Kitaev chain under the associated bulk-edge correspondence. On the other hand, hard-wall confinement only seldom models correctly the actual experimental conditions; in most cases, either unavoidable or desired couplings with the environment have to be taken into account; as a result, one needs to impose generic boundary conditions. In fact, the Kitaev chain model supplemented with deformed boundary conditions precisely incorporates information on the external environment. This method, which shares similarities with a self-energy approach proposed in Ref. \cite{Aguadoself}, allows to investigate an open topological system when the non-equilibrium effects induced by a current flow are either negligible or absent. The latter condition is surely met when the electrodes-system hybridization dominates over other concurrent effects.
\begin{figure*}
\includegraphics[scale=0.45]{FiguresEps/Figure1_a}
\hspace{0.5cm}
\includegraphics[scale=0.52]{FiguresEps/Figure1_b}
\caption{Panel (a): Scheme of a Kitaev chain coupled to an environment modeled by a pair of superconducting leads. Panel (b): Tight-binding representation of the system. Panel (c): Effective chain model with generalized boundary conditions. Table (d): A paradigmatic set of generalized boundary conditions. Breaking or conservation of the particle-hole ($PH$) and reflection ($R$) symmetry is determined by the choice of the pertinent boundary parameters. The $a$ parameter is fixed at the reference value $a=4/5$.}
\label{Scheme}
\end{figure*}
The coupling of the Kitaev chain with the environment can be addressed by means of generalized boundary conditions, namely $\psi_0=M_l \psi_1$ and $\psi_{L+1}=M_r \psi_L$, which depend on environmental wave functions $\psi_0$ and $\psi_{L+1}$. The coupling between the sites belonging to the environment, labelled by $n=0$ and $n=L+1$, and the two ends of the chain is illustrated in panel (b) of Fig. \ref{Scheme}. The boundary properties are completely described by the auxiliary matrices $M_l$ and $M_r$. In general, the latter are unknown \textit{a priori}, even though their structure can be at least partially determined by imposing suitable physical constraints. In order to implement such constraints, let us introduce generic complex-valued matrices in particle-hole space:
\begin{eqnarray}
M_l=\left(
\begin{array}{cc}
a_l&b_l\\
c_l&d_l\\
\end{array}
\right),&&\ \ M_r=\left(
\begin{array}{cc}
a_r&b_r\\
c_r&d_r\\
\end{array}
\right).
\label{MatricesBC}
\end{eqnarray}
By resorting to such generalized boundary conditions in Eq. (\ref{BdGKC}), we obtain a set of deformed tight-binding equations. They differ from those of the Kitaev chain with OBCs by a local renormalization of the edge potentials. These boundary effects are clearly evident by considering the deformed equations for the wave functions $\psi_1$ and $\psi_L$ of two chain ends:
\begin{eqnarray}
\label{tbB}
i\hbar \partial_t \psi_{1}&=&-(\mu \sigma_{z}+N_{l})\psi_{1}-t\sigma_{z}\psi_{2}+i \Delta \sigma_{y}\psi_{2} \,, \\
i\hbar \partial_t \psi_{L}&=&-(\mu \sigma_{z}+N_{r})\psi_{L}-t\sigma_{z}\psi_{L-1}-i \Delta \sigma_{y}\psi_{L-1} \,. \nonumber
\end{eqnarray}
We see that the dynamics depends on the boundary potentials $-N_l=-(t \sigma_z+i \Delta \sigma_y)\ M_l$ and $-N_r=-(t \sigma_z-i \Delta \sigma_y)\ M_r$ which vanish when OBCs are considered (i.e. when $M_{l/r}=0$). The fermionic statistics dictates that $N_l$ and $N_r$ be diagonal matrices in particle-hole space and thus Eq. (\ref{MatricesBC}) takes the form:
\begin{eqnarray}
M_l=\left(
\begin{array}{cc}
a_l&-\frac{\Delta}{t}d_l\\
-\frac{\Delta}{t}a_l&d_l\\
\end{array}
\right),&&\ \ M_r=\left(
\begin{array}{cc}
a_r&\frac{\Delta}{t}d_r\\
\frac{\Delta}{t}a_r&d_r\\
\end{array}
\right).
\label{Matrices2}
\end{eqnarray}\\
A further constraint comes from conservation of probability, which is expressed by the continuity equation, $\partial_t \rho_n+J_{n+1}-J_{n}=0$, relating the probability density $\rho_n=|u_n|^2+|v_n|^2$ and the probability current density
\begin{eqnarray}
J_n=\frac{2t}{\hbar}\ Im\biggl[\psi^\dagger_{n-1} (\sigma_z-i\ \frac{\Delta}{t}\ \sigma_y)\psi_n\biggr].
\label{currentDensity}
\end{eqnarray}
In the stationary regime, $J_n$ is a conserved quantity. In particular, when non-equilibrium effects induced by a current flow are negligible or absent, $J_n=0$ for each site index $n$. This condition is fulfilled both by the model with generalized boundary conditions and by the Kitaev chain with OBCs; this allows an appropriate comparison between systems with OBCs and systems with generalized boundary conditions. Exploiting Eq. (\ref{currentDensity}) with $n=1$ and $n=L+1$, we get:
\begin{eqnarray}
\begin{split}
&J_1 \propto \biggl(1-\frac{\Delta^2}{t^2}\biggr) \biggl[|u_1|^2 Im\bigl[a_l^*\bigr]-|v_1|^2 Im\bigl[d_l^*\bigr] \biggr]\\
&J_{L+1} \propto \biggl(1-\frac{\Delta^2}{t^2}\biggr) \biggl[|u_L|^2 Im\bigl[ a_r \bigr]-|v_L|^2 Im\bigl[ d_r \bigr] \biggr].
\end{split}
\label{Current2}
\end{eqnarray}
Since $J_1$ and $J_{L+1}$ have to vanish for any choice of parameters and for any quantum state of the chain, it follows that $M_l$ and $M_r$ are real-valued matrices with general expression given in Eq. (\ref{Matrices2}). Accordingly, the boundary potentials, see Eq. (\ref{tbB}), are related to the real-valued matrices as follows:
\begin{eqnarray}
N_l=\epsilon \left(
\begin{array}{cc}
a_l&0\\
0&-d_l\\
\end{array}
\right),&&\ \ N_r=\epsilon \left(
\begin{array}{cc}
a_r&0\\
0&-d_r\\
\end{array}
\right),
\label{MatricesN}
\end{eqnarray}
where $\epsilon=(t^2-\Delta^2)/t$. Crucially, by acting on the form of $N_l$ and $N_r$, it is possible to selectively preserve reflection and particle-hole symmetry. Reflection symmetry is lost when $N_l \neq N_r$, while, depending on the choice of parameters, particle-hole symmetry can be preserved or broken. In particular, particle-hole symmetry is preserved for traceless boundary potentials (i.e. $Tr[N_l]=Tr[N_r]=0$).
\begin{figure*}
\includegraphics[scale=0.25]{FiguresEps/Figure2_a}
\hspace{0.05cm}
\includegraphics[scale=0.25]{FiguresEps/Figure2_b}
\hspace{0.05cm}
\includegraphics[scale=0.25]{FiguresEps/Figure2_c}
\hspace{0.05cm}
\includegraphics[scale=0.25]{FiguresEps/Figure2_d}\\
\vspace{0.3cm}
\includ | redpajama | [
281,
7409,
253,
17597,
3607,
273,
271,
7011,
611,
5741,
1173,
5931,
762,
253,
2330,
10713,
14,
13057,
17668,
15,
1623,
253,
643,
1133,
13,
1892,
14,
12081,
25422,
760,
28277,
3210,
9113,
253,
4588,
5661,
2515,
28,
275,
954,
2219,
13,
2057,
46133,
390,
6799,
27654,
342,
253,
3126,
452,
281,
320,
2668,
715,
2395,
28,
347,
247,
906,
13,
581,
3198,
281,
16209,
12314,
7548,
2515,
15,
496,
958,
13,
253,
611,
5741,
1173,
5931,
1566,
19079,
342,
37196,
7548,
2515,
10534,
31167,
1491,
327,
253,
6024,
3126,
15,
831,
1332,
13,
534,
10764,
22620,
342,
247,
1881,
14,
14115,
2746,
4081,
275,
7567,
15,
393,
41766,
92,
34,
4297,
8585,
813,
2023,
4483,
281,
7409,
271,
1527,
17597,
985,
672,
253,
1327,
14,
2655,
10923,
2538,
5802,
407,
247,
1655,
2685,
403,
2057,
22879,
390,
12125,
15,
380,
6158,
1617,
310,
13353,
1313,
672,
253,
14722,
14,
10394,
24389,
36807,
689,
643,
17336,
2538,
15,
187,
61,
2043,
92,
13206,
33029,
187,
186,
61,
249,
741,
909,
1354,
982,
60,
7527,
30,
17,
15,
1857,
1019,
18877,
38,
793,
16,
2841,
18,
64,
66,
94,
187,
186,
61,
12887,
92,
17,
15,
22,
3591,
94,
187,
186,
61,
249,
741,
909,
1354,
982,
60,
7527,
30,
17,
15,
3583,
1019,
18877,
38,
793,
16,
2841,
18,
64,
67,
94,
187,
186,
61,
34480,
92,
16284,
313,
66,
2262,
38339,
273,
247,
611,
5741,
1173,
5931,
9904,
281,
271,
3126,
23115,
407,
247,
4667,
273,
32890,
5644,
15,
23610,
313,
67,
2262,
308,
429,
14,
13018,
6779,
273,
253,
985,
15,
23610,
313,
68,
2262,
41805,
5931,
1566,
342,
14923,
7548,
2515,
15,
5270,
313,
69,
2262,
329,
22199,
1420,
873,
273,
14923,
7548,
2515,
15,
47179,
390,
14144,
273,
253,
8091,
14,
13928,
4816,
6663,
7884,
285,
12906,
4816,
51,
7884,
10377,
310,
3413,
407,
253,
4327,
273,
253,
21452,
7548,
3602,
15,
380,
370,
66,
5,
4764,
310,
4229,
387,
253,
3806,
1318,
370,
66,
30,
21,
16,
22,
1352,
94,
187,
186,
61,
1968,
92,
32003,
94,
187,
61,
423,
92,
13206,
33029,
187,
510,
8789,
273,
253,
611,
5741,
1173,
5931,
342,
253,
3126,
476,
320,
9713,
407,
2097,
273,
14923,
7548,
2515,
13,
10775,
669,
4144,
64,
17,
30,
46,
64,
77,
393,
4144,
64,
18,
5,
285,
669,
4144,
578,
45,
12,
18,
4203,
46,
64,
83,
393,
4144,
64,
45,
1366,
534,
3469,
327,
6938,
5149,
3470,
669,
4144,
64,
17,
5,
285,
669,
4144,
578,
45,
12,
18,
3363,
380,
8789,
875,
253,
4375,
15823,
281,
253,
3126,
13,
27214,
407,
370,
79,
30,
17,
5,
285,
370,
79,
30,
45,
12,
18,
1366,
285,
253,
767,
7637,
273,
253,
5931,
310,
12800,
275,
5370,
313,
67,
10,
273,
2667,
15,
393,
709,
92,
32003,
7165,
380,
7548,
3607,
403,
4336,
2529,
407,
253,
24026,
12624,
370,
46,
64,
77,
5,
285,
370,
46,
64,
83,
1352,
496,
2087,
13,
253,
6158,
403,
7202,
393,
33063,
92,
66,
30400,
2023,
1014,
2167,
616,
2605,
476,
320,
387,
1878,
10571,
3413,
407,
23254,
7470,
3520,
10806,
15,
496,
1340,
281,
3359,
824,
10806,
13,
1339,
441,
9569,
12314,
2570,
14,
24995,
12624,
275,
8091,
14,
13928,
2317,
27,
187,
61,
2043,
92,
15214,
3728,
94,
187,
50273,
46,
64,
77,
2029,
1274,
9,
187,
50273,
61,
2043,
92,
3728,
1217,
550,
94,
187,
50273,
186,
66,
64,
77,
7,
67,
64,
77,
3353,
187,
50273,
186,
68,
64,
77,
7,
69,
64,
77,
3353,
187,
50273,
61,
423,
92,
3728,
94,
187,
50273,
61,
918,
582,
25984,
393,
353,
64,
83,
2029,
1274,
9,
187,
50273,
61,
2043,
92,
3728,
1217,
550,
94,
187,
50273,
186,
66,
64,
83,
7,
67,
64,
83,
3353,
187,
50270,
68,
64,
83,
7,
69,
64,
83,
3353,
187,
50273,
61,
423,
92,
3728,
94,
187,
50273,
61,
918,
481,
187,
50273,
61,
1968,
92,
9547,
5395,
3979,
94,
187,
61,
423,
92,
15214,
3728,
94,
187,
3463,
501,
12655,
281,
824,
14923,
7548,
2515,
275,
6354,
15,
5081,
709,
92,
35,
69,
40,
39089,
22286,
359,
4044,
247,
873,
273,
37196,
6863,
14,
13018,
7424,
15,
1583,
9184,
432,
1110,
273,
253,
611,
5741,
1173,
5931,
342,
473,
3979,
84,
407,
247,
1980,
39358,
273,
253,
5024,
19316,
15,
2053,
7548,
2538,
403,
4518,
8943,
407,
7296,
253,
37196,
7424,
323,
253,
5149,
3470,
669,
4144,
64,
18,
5,
285,
669,
4144,
64,
45,
5,
273,
767,
5931,
7637,
27,
187,
61,
2043,
92,
15214,
3728,
94,
187,
61,
1968,
92,
25192,
35,
94,
187,
74,
61,
13861,
393,
3214,
64,
85,
393,
4144,
578,
18,
94,
15638,
14,
1035,
1906,
393,
2592,
578,
91,
6643,
47,
578,
77,
8395,
4144,
578,
18,
5960,
85,
61,
2592,
578,
91,
889,
4144,
578,
19,
6643,
74,
393,
3442,
393,
2592,
578,
90,
889,
4144,
578,
19,
94,
5095,
1157,
3202,
187,
74,
61,
13861,
393,
3214,
64,
85,
393,
4144,
578,
45,
94,
15638,
14,
1035,
1906,
393,
2592,
578,
91,
6643,
47,
578,
83,
8395,
4144,
578,
45,
5960,
85,
61,
2592,
578,
91,
889,
4144,
578,
45,
14,
18,
5960,
74,
393,
3442,
393,
2592,
578,
90,
889,
4144,
578,
45,
14,
18,
94,
5095,
964,
393,
6274,
187,
61,
423,
92,
15214,
3728,
94,
187,
1231,
923,
326,
253,
8062,
7024,
327,
253,
7548,
19316,
9929,
47,
64,
77,
30,
8422,
85,
393,
2592,
64,
91,
12,
74,
393,
3442,
393,
2592,
64,
90,
1572,
353,
64,
77,
5,
285,
9929,
47,
64,
83,
30,
8422,
85,
393,
2592,
64,
91,
14,
74,
393,
3442,
393,
2592,
64,
90,
1572,
353,
64,
83,
5,
534,
29259,
672,
473,
3979,
84,
403,
2783,
313,
74,
15,
70,
15,
672,
370,
46,
578,
77,
16,
83,
4203,
17,
14553,
380,
17043,
17135,
9990,
44682,
326,
370,
47,
64,
77,
5,
285,
370,
47,
64,
83,
5,
320,
16421,
12624,
275,
8091,
14,
13928,
2317,
285,
3021,
6354,
15,
5081,
709,
92,
9547,
5395,
3979,
2311,
3936,
253,
830,
27,
187,
61,
2043,
92,
15214,
3728,
94,
187,
186,
46,
64,
77,
2029,
1274,
9,
187,
186,
61,
2043,
92,
3728,
1217,
550,
94,
996,
186,
66,
64,
77,
7,
2249,
1124,
464,
3442,
1217,
85,
94,
69,
64,
77,
3353,
996,
186,
2249,
1124,
464,
3442,
1217,
85,
94,
66,
64,
77,
7,
69,
64,
77,
3353,
187,
186,
61,
423,
92,
3728,
94,
187,
186,
61,
918,
582,
25984,
393,
353,
64,
83,
2029,
1274,
9,
187,
186,
61,
2043,
92,
3728,
1217,
550,
94,
187,
186,
66,
64,
83,
5977,
1124,
464,
3442,
1217,
85,
94,
69,
64,
83,
3353,
187,
186,
61,
1124,
464,
3442,
1217,
85,
94,
66,
64,
83,
7,
69,
64,
83,
3353,
187,
186,
61,
423,
92,
3728,
94,
187,
186,
61,
918,
481,
187,
186,
61,
1968,
92,
9547,
5395,
19,
94,
187,
61,
423,
92,
15214,
3728,
11054,
187,
34,
2007,
7658,
3249,
432,
14144,
273,
5912,
13,
534,
310,
4469,
407,
253,
21815,
5150,
13,
669,
3214,
64,
85,
393,
2859,
64,
79,
12,
43,
578,
79,
12,
18,
5960,
43,
578,
79,
4203,
17,
1366,
12600,
253,
5912,
4038,
669,
2859,
64,
79,
30,
93,
86,
64,
79,
10819,
19,
33885,
87,
64,
79,
10819,
19,
5,
285,
253,
5912,
1655,
4038,
187,
61,
2043,
92,
15214,
3728,
94,
187,
186,
43,
64,
79,
2029,
1124,
92,
19,
85,
2704,
13861,
889,
3173,
61,
33438,
5709,
4144,
2850,
11560,
578,
79,
14,
18,
94,
5081,
2592,
64,
91,
14,
74,
61,
393,
1124,
464,
3442,
1217,
85,
889,
393,
2592,
64,
90,
1572,
4144,
64,
79,
61,
34145,
1570,
187,
186,
61,
1968,
92,
6259,
37,
2741,
94,
187,
61,
423,
92,
15214,
3728,
94,
187,
688,
253,
17429,
9459,
13,
370,
43,
64,
79,
5,
310,
247,
14900,
10671,
15,
496,
1798,
13,
672,
1327,
14,
2655,
10923,
2538,
5802,
407,
247,
1655,
2685,
403,
22879,
390,
12125,
13,
370,
43,
64,
79,
30,
17,
5,
323,
1016,
2670,
3605,
370,
79,
1352,
831,
1617,
310,
25146,
1097,
407,
253,
1566,
342,
14923,
7548,
2515,
285,
407,
253,
611,
5741,
1173,
5931,
342,
473,
3979,
84,
28,
436,
4483,
271,
4569,
5301,
875,
2718,
342,
473,
3979,
84,
285,
2718,
342,
14923,
7548,
2515,
15,
14499,
80,
2996,
6354,
15,
5081,
709,
92,
6259,
37,
2741,
2311,
342,
370,
79,
30,
18,
5,
285,
370,
79,
30,
45,
12,
18,
1366,
359,
755,
27,
187,
61,
2043,
92,
15214,
3728,
94,
187,
186,
61,
2043,
92,
9148,
94,
187,
7,
43,
64,
18,
393,
24213,
393,
33438,
9,
18,
2249,
1124,
464,
3442,
63,
19,
1217,
85,
63,
19,
889,
34145,
10,
393,
33438,
60,
93,
86,
64,
18,
10819,
19,
3173,
61,
17896,
60,
66,
64,
77,
24638,
18002,
12977,
93,
87,
64,
18,
10819,
19,
3173,
61,
17896,
60,
69,
64,
77,
24638,
18002,
62,
393,
34145,
45301,
187,
7,
43,
578,
45,
12,
18,
94,
393,
24213,
393,
33438,
9,
18,
2249,
1124,
464,
3442,
63,
19,
1217,
85,
63,
19,
889,
34145,
10,
393,
33438,
60,
93,
86,
64,
45,
10819,
19,
3173,
61,
17896,
60,
247,
64,
83,
393,
18002,
12977,
93,
87,
64,
45,
10819,
19,
3173,
61,
17896,
60,
277,
64,
83,
393,
18002,
62,
393,
34145,
1570,
187,
61,
423,
92,
9148,
94,
187,
61,
1968,
92,
10605,
19,
94,
187,
61,
423,
92,
15214,
3728,
94,
187,
7542,
370,
43,
64,
18,
5,
285,
370,
43,
578,
45,
12,
18,
724,
452,
281,
29259,
323,
667,
4327,
273,
3602,
285,
323,
667,
6318,
1375,
273,
253,
5931,
13,
352,
3637,
326,
370,
46,
64,
77,
5,
285,
370,
46,
64,
83,
5,
403,
1524,
14,
24995,
12624,
342,
2087,
2048,
1677,
275,
6354,
15,
5081,
709,
92,
9547,
5395,
19,
38331,
10022,
13,
253,
7548,
19316,
13,
923,
6354,
15,
5081,
709,
92,
25192,
35,
22286,
403,
2905,
281,
253,
1524,
14,
24995,
12624,
347,
3637,
27,
187,
393,
2043,
92,
15214,
3728,
94,
187,
186,
47,
64,
77,
2029,
4259,
393,
1274,
9,
187,
186,
61,
2043,
92,
3728,
1217,
550,
94,
996,
186,
66,
64,
77,
7,
17,
3353,
996,
186,
17,
34377,
69,
64,
77,
3353,
187,
186,
61,
423,
92,
3728,
94,
187,
186,
61,
918,
582,
25984,
393,
427,
64,
83,
2029,
4259,
393,
1274,
9,
187,
186,
61,
2043,
92,
3728,
1217,
550,
94,
996,
186,
66,
64,
83,
7,
17,
3353,
996,
186,
17,
34377,
69,
64,
83,
3353,
187,
186,
61,
423,
92,
3728,
94,
187,
186,
61,
918,
582,
187,
186,
61,
1968,
92,
9547,
5395,
47,
94,
187,
61,
423,
92,
15214,
3728,
94,
187,
2811,
669,
4259,
10190,
85,
63,
19,
2249,
3442,
63,
19,
1933,
85,
1352,
12053,
68,
1365,
13,
407,
8534,
327,
253,
830,
273,
370,
47,
64,
77,
5,
285,
370,
47,
64,
83,
1366,
352,
310,
1896,
281,
21656,
14003,
12906,
285,
8091,
14,
13928,
10377,
15,
7567,
1788,
10377,
310,
3663,
672,
370,
47,
64,
77,
393,
9540,
427,
64,
83,
1366,
1223,
13,
7293,
327,
253,
4327,
273,
3602,
13,
8091,
14,
13928,
10377,
476,
320,
15296,
390,
7154,
15,
496,
1798,
13,
8091,
14,
13928,
10377,
310,
15296,
323,
43944,
6134,
7548,
19316,
313,
74,
15,
70,
15,
370,
2290,
60,
47,
64,
77,
18772,
2290,
60,
47,
64,
83,
18772,
17,
14553,
187,
187,
61,
2043,
92,
13206,
33029,
187,
186,
61,
249,
741,
909,
1354,
982,
60,
7527,
30,
17,
15,
1099,
1019,
18877,
38,
793,
16,
2841,
19,
64,
66,
94,
187,
186,
61,
12887,
92,
17,
15,
1762,
3591,
94,
187,
186,
61,
249,
741,
909,
1354,
982,
60,
7527,
30,
17,
15,
1099,
1019,
18877,
38,
793,
16,
2841,
19,
64,
67,
94,
187,
186,
61,
12887,
92,
17,
15,
1762,
3591,
94,
187,
186,
61,
249,
741,
909,
1354,
982,
60,
7527,
30,
17,
15,
1099,
1019,
18877,
38,
793,
16,
2841,
19,
64,
68,
94,
187,
186,
61,
12887,
92,
17,
15,
1762,
3591,
94,
187,
186,
61,
249,
741,
909,
1354,
982,
60,
7527,
30,
17,
15,
1099,
1019,
18877,
38,
793,
16,
2841,
19,
64,
69,
11054,
187,
186,
61,
87,
5641,
92,
17,
15,
20,
3591,
94,
187,
186,
61,
249,
741
] |
16 YRS Anhui Guoci Handbags Co., Ltd.
1 YRS Xiamen Greenlike Bag Co., Ltd.
html Products Classificat //////////////////// PRODUCTS CLASSIFICATION //////////////////// Exprise-foundation by credit, Mutual benefit win-win More information please check productlist. With a wide range, good quality, reasonable prices and stylish designs, our products are extensively used in residential and commercial application and other industries. Our products are widely recognized and trusted by users and can meet continuously changing economic and social needs.
Would you mind to cover it9 Freight collect is also for us operating if you have any carrier account. Production times vary based on the bag you choose, availability of inventory, the printing process you choose. Don’t have time to browse9 Tell us about your project and we can recommend bags to best suit your needs.
Please kindly tell me which kind of bags you prefer to and provide me more information. OEM and ODM are You can tell us your idea or provide us the drawing. The sample fee is charged according to the material and size of the product.
5. For any requirement or confused question about them, just please contact us without hesitation. They will choose cotton bags instead of plastic bags to reduce the damage of nature. In our daily life, people can reuse cotton bag and wash them many times.
Alibaba.com offers 1,368,078 bag shopper products. About 10% of these are shopping bags, 1% are promotional bags.
A wide variety of bag shopper options are available to you, such as cotton, nylon, and polyester. You can also choose from handled, folding, and punch. As well as from free samples, paid samples.
There are 1,368,078 bag shopper suppliers, mainly located in Asia. The top supplying country is China (Mainland), which supply 100% of bag shopper respectively.
Bag shopper products are most popular in North America, Western Europe, and Northern Europe.
You can ensure product safety by selecting from certified suppliers, including 172,300 with ISO9001, 101,721 with Other, and 76,935 with BSCI certification.<|endoftext|>Q: How to display validation summary below the input controls? I have the following form:
<form asp-controller="Manage" asp-action="RemoveDetails" method="post" class="form-horizontal">
@if (Model.RequirePassword)
{
<div id="password-container">
<div class="col-md-6">
<div class="form-group">
<label asp-for="Password"></label>
<input asp-for="Password" class="form-control" id="password" autocomplete="current-password" aria-required="true" />
<small>
<span asp-validation-for="Password" class="text-danger"></span>
</small>
</div>
</div>
</div>
}
<div class="col-6">
<hr class="mt-2 mb-3">
<button type="submit" class="btn btn-style-1 btn-danger">Confirm</button>
</div>
<div class="row">
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
</div>
</form>
If I leave the password empty, a validation message (the model uses DataAnnonations) is displayed right below the control. This is fine.
If I enter the wrong password, the Post action validates it and adds an error to the ModelState. This error is displayed below the form.
Is it possible to display such model errors below the relevant controls?
A: Try this code in Controller: ModelState.AddModelError("Password", "validation summary error."); The error message won't display in <div asp-validation-summary="ModelOnly"></div>, but it can display error message in @Html.ValidationSummary(false, "", new { @class = "text-danger" }).
<form asp-controller="Home" asp-action="RemoveDetails" method="post" class="form-horizontal">
<div id="password-container">
<div class="col-md-6">
<div class="form-group">
<label asp-for="Password"></label>
<input asp-for="Password" class="form-control" id="password" autocomplete="current-password" aria-required="true" />
<small>
@*<span asp-validation-for="Password" class="text-danger"></span>*@
@Html.ValidationSummary(false, "", new { @class = "text-danger" })
</small>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label asp-for="Description"></label>
<input asp-for="Description" class="form-control" id="description" autocomplete="current-password" aria-required="true" />
<small>
<span asp-validation-for="Description" class="text-danger"></span>
</small>
</div>
</div>
</div>
<div class="col-6">
<hr class="mt-2 mb-3">
<button type="submit" class="btn btn-style-1 btn-danger">Confirm</button>
</div>
<div class="row">
<div asp-validation-summary="ModelOnly"></div>
</div>
</form>
[HttpPost]
public IActionResult RemoveDetails(RemoveDetail rdl)
{
if(ModelState.IsValid)
{
var pwd = rdl.Password;
//do something here and find the password is wrong
//code below won't display error message in <div asp-validation-summary="ModelOnly" class="text-danger">
//but can display error message in @Html.ValidationSummary(false, "", new { @class = "text-danger" })
ModelState.AddModelError("Password", "validation summary error.");
return View(rdl);
}
return View(rdl);
}
<|endoftext|>Time to lift sanctions against Venezuela, Iran and Cuba
Swiftly moves the coronavirus disease (COVID-19), dashing across continents, skipping over oceans, terrifying populations in every country. The numbers of those infected rises, as do the numbers of those who have died. Hands are being washed, tests are being done, and social distance has become a new phrase. It is unclear how devastating this pandemic will be.
In the midst of a pandemic, one would expect that all countries would collaborate in every way to mitigate the spread of the virus and its impact on human society. One would expect that a humanitarian crisis of this magnitude would provide the opportunity to suspend or end all inhumane economic sanctions and political blockades against certain countries. The main point here is this: Is this not the time for the imperialist bloc, led by the United States of America, to end the sanctions against Cuba, Iran, Venezuela, and a series of other countries?
Medical Shortages
Venezuela's Foreign Minister Jorge Arreaza told us recently that the "illegal and unilateral coercive measures that the United States has imposed on Venezuela are a form of collective punishment." The use of the phrase "collective punishment" is significant; under the 1949 Geneva Conventions, any policy that inflicts damage on an entire population is a war crime. The U.S. policy, Arreaza told us, has "resulted in difficulties for the timely acquisition of medicines."
On paper, the unilateral U.S. sanctions say that medical supplies are exempt. But this is an illusion. Neither Venezuela nor Iran can easily buy medical supplies, nor can they easily transport it into their countries, nor can they use them in their largely public sector health systems. The embargo against these countries-in this time of COVID-19-is not only a war crime by the standards of the Geneva Conventions (1949) but is a crime against humanity as defined by the United Nations International Law Commission (1947).
In 2017, U.S. President Donald Trump enacted tight restrictions on Venezuela's ability to access financial markets; two years later, the U.S. government blacklisted Venezuela's Central Bank and put a general embargo against the Venezuelan state institutions. If any firm trades with Venezuela's public sector, it could face secondary sanctions. The U.S. Congress passed the Countering America's Adversaries Through Sanctions Act (CAATSA) in 2017, which tightened sanctions against Iran, Russia, and North Korea. The next year, Trump imposed a raft of new sanctions against Iran which suffocated Iran's economy. Once more, access to the world banking system and threats to companies that traded with Iran made it almost impossible for Iran to do business with the world.
In particular, the U.S. government made it clear that any business with the public sector of Iran and Venezuela was forbidden. The health infrastructure that provides for the mass of the populations in both Iran and Venezuela is run by the State, which means it faces disproportionate difficulty in accessing equipment and supplies, including testing kits and medicines.
Breaking the Embargo
Arreaza, the Venezuelan foreign minister, told us | redpajama | [
1036,
714,
6453,
743,
37942,
3262,
1118,
10535,
46728,
2434,
904,
12098,
15,
187,
18,
714,
6453,
1594,
16726,
257,
6115,
3022,
19997,
2434,
904,
12098,
15,
187,
2974,
23910,
6550,
692,
255,
1380,
9032,
605,
4653,
14647,
33949,
28085,
3801,
24352,
1380,
9032,
605,
1889,
10344,
14,
14541,
318,
407,
6152,
13,
36797,
5649,
3330,
14,
6481,
3010,
1491,
4496,
2451,
1885,
3550,
15,
2726,
247,
4618,
2491,
13,
1175,
3290,
13,
5272,
7911,
285,
38194,
11809,
13,
776,
3580,
403,
18171,
908,
275,
16252,
285,
6264,
2898,
285,
643,
17057,
15,
3824,
3580,
403,
7561,
7478,
285,
18273,
407,
4212,
285,
476,
2525,
14949,
6890,
5054,
285,
2675,
3198,
15,
187,
17304,
368,
2564,
281,
3835,
352,
26,
8377,
429,
4822,
310,
671,
323,
441,
6498,
604,
368,
452,
667,
10289,
2395,
15,
28363,
2069,
6889,
1754,
327,
253,
7351,
368,
5206,
13,
11659,
273,
19543,
13,
253,
11993,
1232,
368,
5206,
15,
5037,
7,
38267,
28,
85,
452,
673,
281,
34740,
26,
19906,
441,
670,
634,
2199,
285,
359,
476,
5583,
15284,
281,
1682,
4176,
634,
3198,
15,
187,
7845,
26604,
2028,
479,
534,
2238,
273,
15284,
368,
4510,
281,
285,
2085,
479,
625,
1491,
15,
473,
3172,
285,
473,
9042,
403,
1422,
476,
2028,
441,
634,
2934,
390,
2085,
441,
253,
10263,
15,
380,
3410,
9801,
310,
6636,
2556,
281,
253,
2144,
285,
1979,
273,
253,
1885,
15,
187,
22,
15,
1198,
667,
8284,
390,
13477,
1953,
670,
731,
13,
816,
4496,
3057,
441,
1293,
39500,
15,
1583,
588,
5206,
17649,
15284,
3185,
273,
8013,
15284,
281,
4796,
253,
4723,
273,
3753,
15,
496,
776,
5312,
1495,
13,
952,
476,
33150,
17649,
7351,
285,
14841,
731,
1142,
2069,
15,
187,
2422,
48748,
15,
681,
6131,
337,
13,
23926,
13,
36709,
7351,
6738,
3803,
3580,
15,
11376,
884,
6,
273,
841,
403,
12701,
15284,
13,
337,
6,
403,
32223,
15284,
15,
187,
34,
4618,
5235,
273,
7351,
6738,
3803,
4610,
403,
2130,
281,
368,
13,
824,
347,
17649,
13,
48543,
13,
285,
44011,
15,
1422,
476,
671,
5206,
432,
15726,
13,
23205,
13,
285,
18750,
15,
1284,
973,
347,
432,
1959,
3530,
13,
5087,
3530,
15,
187,
2512,
403,
337,
13,
23926,
13,
36709,
7351,
6738,
3803,
28265,
13,
7194,
4441,
275,
10497,
15,
380,
1755,
28106,
2586,
310,
4135,
313,
13030,
1373,
582,
534,
6186,
2233,
6,
273,
7351,
6738,
3803,
575,
49115,
15,
187,
36524,
6738,
3803,
575,
23832,
403,
954,
4633,
275,
3729,
3968,
13,
6359,
3060,
13,
285,
11442,
3060,
15,
187,
1394,
476,
5416,
1885,
5252,
407,
17221,
432,
18065,
28265,
13,
1690,
24347,
13,
7554,
342,
22776,
26,
2874,
13,
8437,
13,
24,
1797,
342,
5131,
13,
285,
10909,
13,
26,
1671,
342,
378,
4061,
42,
21612,
15,
50279,
50,
27,
1359,
281,
3148,
12820,
6010,
2708,
253,
3280,
5760,
32,
309,
452,
253,
1563,
830,
27,
187,
29,
630,
29781,
14,
19879,
568,
4779,
486,
3,
29781,
14,
1913,
568,
21605,
21691,
3,
1332,
568,
5996,
3,
966,
568,
630,
14,
33464,
1138,
187,
50274,
33,
338,
313,
7104,
15,
42406,
22147,
10,
187,
50274,
92,
187,
50270,
29,
2154,
2654,
568,
15760,
14,
13299,
1138,
187,
50266,
29,
2154,
966,
568,
2052,
14,
6535,
14,
23,
1138,
187,
50262,
29,
2154,
966,
568,
630,
14,
4399,
1138,
187,
50258,
29,
1968,
29781,
14,
1542,
568,
22147,
6750,
1968,
31,
187,
50258,
29,
5423,
29781,
14,
1542,
568,
22147,
3,
966,
568,
630,
14,
8519,
3,
2654,
568,
15760,
3,
1125,
48116,
568,
6259,
14,
15760,
3,
38579,
14,
17354,
568,
5672,
3,
4725,
187,
50258,
29,
6795,
31,
187,
50254,
29,
2551,
29781,
14,
29599,
14,
1542,
568,
22147,
3,
966,
568,
1156,
14,
36510,
6750,
2551,
31,
187,
50258,
870,
6795,
31,
187,
50262,
870,
2154,
31,
187,
50266,
870,
2154,
31,
187,
50270,
870,
2154,
31,
187,
50274,
94,
187,
50274,
29,
2154,
966,
568,
2052,
14,
23,
1138,
187,
50270,
29,
6285,
966,
568,
6917,
14,
19,
45505,
14,
20,
1138,
187,
50270,
29,
8060,
1511,
568,
21399,
3,
966,
568,
15581,
23929,
14,
4826,
14,
18,
23929,
14,
36510,
1138,
48529,
870,
8060,
31,
187,
50274,
870,
2154,
31,
187,
50274,
29,
2154,
966,
568,
736,
1138,
187,
50270,
29,
2154,
29781,
14,
29599,
14,
8774,
568,
7104,
11564,
3,
966,
568,
1156,
14,
36510,
6750,
2154,
31,
187,
50274,
870,
2154,
31,
187,
870,
630,
31,
187,
187,
2042,
309,
3553,
253,
9868,
6325,
13,
247,
12820,
3935,
313,
783,
1566,
4648,
5128,
1145,
4160,
569,
10,
310,
8653,
987,
2708,
253,
1453,
15,
831,
310,
4030,
15,
187,
2042,
309,
4901,
253,
3430,
9868,
13,
253,
5779,
2250,
3588,
684,
352,
285,
11323,
271,
2228,
281,
253,
10031,
5443,
15,
831,
2228,
310,
8653,
2708,
253,
830,
15,
187,
2513,
352,
1896,
281,
3148,
824,
1566,
6332,
2708,
253,
4623,
5760,
32,
187,
187,
34,
27,
15358,
436,
2127,
275,
31555,
27,
10031,
5443,
15,
4717,
7104,
4756,
1587,
22147,
995,
346,
29599,
6010,
2228,
23715,
380,
2228,
3935,
1912,
626,
3148,
275,
654,
2154,
29781,
14,
29599,
14,
8774,
568,
7104,
11564,
6750,
2154,
9983,
533,
352,
476,
3148,
2228,
3935,
275,
1214,
26592,
15,
31780,
18548,
9,
7750,
13,
18586,
747,
551,
1214,
2437,
426,
346,
1156,
14,
36510,
3,
44141,
187,
29,
630,
29781,
14,
19879,
568,
18686,
3,
29781,
14,
1913,
568,
21605,
21691,
3,
1332,
568,
5996,
3,
966,
568,
630,
14,
33464,
1138,
187,
50274,
29,
2154,
2654,
568,
15760,
14,
13299,
1138,
187,
50270,
29,
2154,
966,
568,
2052,
14,
6535,
14,
23,
1138,
187,
50266,
29,
2154,
966,
568,
630,
14,
4399,
1138,
187,
50262,
29,
1968,
29781,
14,
1542,
568,
22147,
6750,
1968,
31,
187,
50262,
29,
5423,
29781,
14,
1542,
568,
22147,
3,
966,
568,
630,
14,
8519,
3,
2654,
568,
15760,
3,
1125,
48116,
568,
6259,
14,
15760,
3,
38579,
14,
17354,
568,
5672,
3,
4725,
187,
50262,
29,
6795,
31,
187,
50258,
33,
11,
29,
2551,
29781,
14,
29599,
14,
1542,
568,
22147,
3,
966,
568,
1156,
14,
36510,
6750,
2551,
31,
11,
33,
187,
50258,
33,
26592,
15,
31780,
18548,
9,
7750,
13,
18586,
747,
551,
1214,
2437,
426,
346,
1156,
14,
36510,
3,
13985,
187,
50262,
870,
6795,
31,
187,
50266,
870,
2154,
31,
187,
50270,
870,
2154,
31,
187,
50269,
29,
2154,
966,
568,
2052,
14,
6535,
14,
23,
1138,
187,
50266,
29,
2154,
966,
568,
630,
14,
4399,
1138,
187,
50262,
29,
1968,
29781,
14,
1542,
568,
11185,
6750,
1968,
31,
187,
50262,
29,
5423,
29781,
14,
1542,
568,
11185,
3,
966,
568,
630,
14,
8519,
3,
2654,
568,
10008,
3,
1125,
48116,
568,
6259,
14,
15760,
3,
38579,
14,
17354,
568,
5672,
3,
4725,
187,
50262,
29,
6795,
31,
187,
50258,
29,
2551,
29781,
14,
29599,
14,
1542,
568,
11185,
3,
966,
568,
1156,
14,
36510,
6750,
2551,
31,
187,
50262,
870,
6795,
31,
187,
50266,
870,
2154,
31,
187,
50270,
870,
2154,
31,
187,
50274,
870,
2154,
31,
187,
50274,
29,
2154,
966,
568,
2052,
14,
23,
1138,
187,
50270,
29,
6285,
966,
568,
6917,
14,
19,
45505,
14,
20,
1138,
187,
50270,
29,
8060,
1511,
568,
21399,
3,
966,
568,
15581,
23929,
14,
4826,
14,
18,
23929,
14,
36510,
1138,
48529,
870,
8060,
31,
187,
50274,
870,
2154,
31,
187,
50274,
29,
2154,
966,
568,
736,
1138,
187,
50270,
29,
2154,
29781,
14,
29599,
14,
8774,
568,
7104,
11564,
6750,
2154,
31,
50273,
187,
50274,
870,
2154,
31,
187,
870,
630,
31,
187,
187,
60,
15003,
8983,
62,
187,
4387,
309,
9019,
9179,
20004,
21691,
9,
21605,
29596,
391,
11830,
10,
187,
92,
187,
50274,
338,
9,
7104,
5443,
15,
2513,
13159,
10,
187,
50274,
92,
187,
50270,
2044,
268,
14066,
426,
391,
11830,
15,
22147,
28,
187,
50270,
605,
3088,
1633,
1060,
285,
1089,
253,
9868,
310,
3430,
187,
50270,
187,
50270,
605,
3211,
2708,
1912,
626,
3148,
2228,
3935,
275,
654,
2154,
29781,
14,
29599,
14,
8774,
568,
7104,
11564,
3,
966,
568,
1156,
14,
36510,
1138,
187,
50270,
605,
2858,
476,
3148,
2228,
3935,
275,
1214,
26592,
15,
31780,
18548,
9,
7750,
13,
18586,
747,
551,
1214,
2437,
426,
346,
1156,
14,
36510,
3,
13985,
187,
50270,
7104,
5443,
15,
4717,
7104,
4756,
1587,
22147,
995,
346,
29599,
6010,
2228,
23715,
187,
50270,
2309,
9182,
9,
5784,
77,
558,
535,
50274,
94,
187,
50274,
2309,
9182,
9,
5784,
77,
558,
187,
94,
2756,
50279,
4769,
281,
8488,
17634,
1411,
27608,
13,
7751,
285,
24605,
187,
44756,
314,
9727,
253,
24891,
2728,
313,
36,
13780,
14,
746,
582,
277,
3834,
2439,
49900,
13,
42654,
689,
40277,
13,
35247,
7625,
275,
1046,
2586,
15,
380,
3904,
273,
1110,
9813,
22844,
13,
347,
513,
253,
3904,
273,
1110,
665,
452,
4962,
15,
44372,
403,
1146,
11974,
13,
5216,
403,
1146,
2218,
13,
285,
2675,
4181,
556,
2489,
247,
747,
12616,
15,
733,
310,
12744,
849,
25205,
436,
26296,
588,
320,
15,
187,
688,
253,
22654,
273,
247,
26296,
13,
581,
651,
1902,
326,
512,
4343,
651,
42124,
275,
1046,
1039,
281,
29966,
253,
5195,
273,
253,
6581,
285,
697,
3486,
327,
1966,
5948,
15,
2596,
651,
1902,
326,
247,
30122,
8891,
273,
436,
9777,
651,
2085,
253,
5107,
281,
32407,
390,
990,
512,
275,
18256,
1351,
5054,
17634,
285,
3569,
2972,
3355,
1411,
2176,
4343,
15,
380,
2022,
1127,
1060,
310,
436,
27,
1680,
436,
417,
253,
673,
323,
253,
21474,
382,
41129,
13,
3977,
407,
253,
1986,
2077,
273,
3968,
13,
281,
990,
253,
17634,
1411,
24605,
13,
7751,
13,
27608,
13,
285,
247,
2962,
273,
643,
4343,
32,
187,
41225,
14196,
1131,
187,
55,
20656,
66,
434,
15839,
8308,
47944,
1780,
250,
11983,
2183,
441,
4102,
326,
253,
346,
300,
7685,
285,
31378,
29323,
422,
5593,
326,
253,
1986,
2077,
556,
11295,
327,
27608,
403,
247,
830,
273,
12786,
14232,
449,
380,
897,
273,
253,
12616,
346,
23865,
422,
14232,
3,
310,
1534,
28,
762,
253,
24344,
31955,
1716,
9637,
13,
667,
3646,
326,
2192,
37693,
4723,
327,
271,
2862,
3072,
310,
247,
2137,
6617,
15,
380,
530,
15,
52,
15,
3646,
13,
1780,
250,
11983,
2183,
441,
13,
556,
346,
6870,
264,
275,
12748,
323,
253,
14793,
11931,
273,
26114,
449,
187,
2374,
2929,
13,
253,
31378,
530,
15,
52,
15,
17634,
1333,
326,
3739,
13191,
403,
13959,
15,
1292,
436,
310,
271,
25451,
15,
17106,
27608,
4543,
7751,
476,
4354,
4489,
3739,
13191,
13,
4543,
476,
597,
4354,
4616,
352,
715,
616,
4343,
13,
4543,
476,
597,
897,
731,
275,
616,
8127,
1345,
8776,
1786,
2718,
15,
380,
39135,
1411,
841,
4343,
14,
249,
436,
673,
273,
19314,
14,
746,
14,
261,
417,
760,
247,
2137,
6617,
407,
253,
7465,
273,
253,
31955,
1716,
9637,
313,
40853,
10,
533,
310,
247,
6617,
1411,
16457,
347,
2931,
407,
253,
1986,
14726,
5625,
5405,
5399,
313,
41858,
481,
187,
688,
4240,
13,
530,
15,
52,
15,
3918,
10053,
3778,
23552,
6863,
13133,
327,
27608,
434,
3745,
281,
2289,
4832,
10169,
28,
767,
1107,
1996,
13,
253,
530,
15,
52,
15,
2208,
2806,
24328,
27608,
434,
8170,
6022,
285,
1691,
247,
2087,
39135,
1411,
253,
22283,
266,
1375,
10003,
15,
1310,
667,
5882,
28587,
342,
27608,
434,
1345,
8776,
13,
352,
812,
2454,
6561,
17634,
15,
380,
530,
15,
52,
15,
5759,
4817,
253,
2678,
22993,
3968,
434,
2006,
735,
3927,
11970,
5003,
960,
3162,
313,
4280,
1194,
4576,
10,
275,
4240,
13,
534,
41912,
17634,
1411,
7751,
13,
7422,
13,
285,
3729,
9733,
15,
380,
1735,
807,
13,
3778,
11295,
247,
42217,
273,
747,
17634,
1411,
7751,
534,
6237,
30510,
7751,
434,
6982,
15,
7243,
625,
13,
2289,
281,
253,
1533,
19714,
985,
285,
14207,
281,
4413,
326,
24191,
342,
7751,
1160,
352,
2761,
7479,
323,
7751,
281,
513,
2136,
342,
253,
1533,
15,
187,
688,
1798,
13,
253,
530,
15,
52,
15,
2208,
1160,
352,
2590,
326,
667,
2136,
342,
253,
1345,
8776,
273,
7751,
285,
27608,
369,
25415,
15,
380,
1786,
11319,
326,
3400,
323,
253,
2280,
273,
253,
7625,
275,
1097,
7751,
285,
27608,
310,
1408,
407,
253,
2418,
13,
534,
2097,
352,
9365,
50196,
10183,
275,
24497,
6500,
285,
13191,
13,
1690,
5175,
28049,
285,
26114,
15,
187,
16212,
1170,
253,
19096,
20406,
187,
2906,
250,
11983,
13,
253,
22283,
266,
5639,
9843,
13,
2183,
441
] |
['default'].createElement("span", null, PrimeReact.localeOption('weekHeader', this.props.locale)));
return [weekHeader].concat(_toConsumableArray(dayNames));
} else {
return dayNames;
}
}
}, {
key: "renderDateCellContent",
value: function renderDateCellContent(date, className, groupIndex) {
var _this20 = this;
var content = this.props.dateTemplate? this.props.dateTemplate(date) : date.day;
return /*#__PURE__*/React__default['default'].createElement("span", {
className: className,
onClick: function onClick(e) {
return _this20.onDateSelect(e, date);
},
onKeyDown: function onKeyDown(e) {
return _this20.onDateCellKeydown(e, date, groupIndex);
}
}, content, /*#__PURE__*/React__default['default'].createElement(core.Ripple, null));
}
}, {
key: "renderWeek",
value: function renderWeek(weekDates, weekNumber, groupIndex) {
var _this21 = this;
var week = weekDates.map(function (date) {
var selected = _this21.isSelected(date);
var cellClassName = core.classNames({
'p-datepicker-other-month': date.otherMonth,
'p-datepicker-today': date.today
});
var dateClassName = core.classNames({
'p-highlight': selected,
'p-disabled':!date.selectable
});
var content = date.otherMonth &&!_this21.props.showOtherMonths? null : _this21.renderDateCellContent(date, dateClassName, groupIndex);
return /*#__PURE__*/React__default['default'].createElement("td", {
key: date.day,
className: cellClassName
}, content);
});
if (this.props.showWeek) {
var weekNumberCell = /*#__PURE__*/React__default['default'].createElement("td", {
key: 'wn' + weekNumber,
className: "p-datepicker-weeknumber"
}, /*#__PURE__*/React__default['default'].createElement("span", {
className: "p-disabled"
}, weekNumber));
return [weekNumberCell].concat(_toConsumableArray(week));
} else {
return week;
}
}
}, {
key: "renderDates",
value: function renderDates(monthMetaData, groupIndex) {
var _this22 = this;
return monthMetaData.dates.map(function (weekDates, index) {
return /*#__PURE__*/React__default['default'].createElement("tr", {
key: index
}, _this22.renderWeek(weekDates, monthMetaData.weekNumbers[index], groupIndex));
});
}
}, {
key: "renderDateViewGrid",
value: function renderDateViewGrid(monthMetaData, weekDays, groupIndex) {
var dayNames = this.renderDayNames(weekDays);
var dates = this.renderDates(monthMetaData, groupIndex);
return /*#__PURE__*/React__default['default'].createElement("div", {
className: "p-datepicker-calendar-container"
}, /*#__PURE__*/React__default['default'].createElement("table", {
className: "p-datepicker-calendar"
}, /*#__PURE__*/React__default['default'].createElement("thead", null, /*#__PURE__*/React__default['default'].createElement("tr", null, dayNames)), /*#__PURE__*/React__default['default'].createElement("tbody", null, dates)));
}
}, {
key: "renderMonth",
value: function renderMonth(monthMetaData, index) {
var weekDays = this.createWeekDays();
var backwardNavigator = this.renderBackwardNavigator(index === 0);
var forwardNavigator = this.renderForwardNavigator(this.props.numberOfMonths === 1 || index === this.props.numberOfMonths - 1);
var title = this.renderTitle(monthMetaData);
var dateViewGrid = this.renderDateViewGrid(monthMetaData, weekDays, index);
var header = this.props.headerTemplate? this.props.headerTemplate() : null;
return /*#__PURE__*/React__default['default'].createElement("div", {
key: monthMetaData.month,
className: "p-datepicker-group"
}, /*#__PURE__*/React__default['default'].createElement("div", {
className: "p-datepicker-header"
}, header, backwardNavigator, title, forwardNavigator), dateViewGrid);
}
}, {
key: "renderMonths",
value: function renderMonths(monthsMetaData) {
var _this23 = this;
var groups = monthsMetaData.map(function (monthMetaData, index) {
return _this23.renderMonth(monthMetaData, index);
});
return /*#__PURE__*/React__default['default'].createElement("div", {
className: "p-datepicker-group-container"
}, groups);
}
}, {
key: "renderDateView",
value: function renderDateView() {
var viewDate = this.getViewDate();
var monthsMetaData = this.createMonths(viewDate.getMonth(), viewDate.getFullYear());
var months = this.renderMonths(monthsMetaData);
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, months);
}
}, {
key: "renderMonthViewMonth",
value: function renderMonthViewMonth(index) {
var _this24 = this;
var className = core.classNames('p-monthpicker-month', {
'p-highlight': this.isMonthSelected(index)
});
var monthNamesShort = PrimeReact.localeOption('monthNamesShort', this.props.locale);
var monthName = monthNamesShort[index];
return /*#__PURE__*/React__default['default'].createElement("span", {
key: monthName,
className: className,
onClick: function onClick(event) {
return _this24.onMonthSelect(event, index);
},
onKeyDown: function onKeyDown(event) {
return _this24.onMonthCellKeydown(event, index);
}
}, monthName, /*#__PURE__*/React__default['default'].createElement(core.Ripple, null));
}
}, {
key: "renderMonthViewMonths",
value: function renderMonthViewMonths() {
var months = [];
for (var i = 0; i <= 11; i++) {
months.push(this.renderMonthViewMonth(i));
}
return months;
}
}, {
key: "renderMonthView",
value: function renderMonthView() {
var backwardNavigator = this.renderBackwardNavigator(true);
var forwardNavigator = this.renderForwardNavigator(true);
var yearElement = this.renderTitleYearElement(this.getViewDate().getFullYear());
var months = this.renderMonthViewMonths();
return /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null, /*#__PURE__*/React__default['default'].createElement("div", {
className: "p-datepicker-group-container"
}, /*#__PURE__*/React__default['default'].createElement("div", {
className: "p-datepicker-group"
}, /*#__PURE__*/React__default['default'].createElement("div", {
className: "p-datepicker-header"
}, backwardNavigator, /*#__PURE__*/React__default['default'].createElement("div", {
className: "p-datepicker-title"
}, yearElement), forwardNavigator))), /*#__PURE__*/React__default['default'].createElement("div", {
className: "p-monthpicker"
}, months));
}
}, {
key | redpajama | [
5013,
6986,
36676,
42004,
1587,
2551,
995,
3635,
13,
12128,
1785,
514,
15,
33113,
16956,
2073,
11151,
12618,
1383,
436,
15,
21390,
15,
33113,
23090,
187,
50268,
2309,
544,
11151,
12618,
1570,
35707,
10107,
936,
9323,
360,
494,
6542,
9,
1201,
14090,
4027,
187,
50270,
94,
2010,
551,
187,
50268,
2309,
1388,
14090,
28,
187,
50270,
94,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
12574,
6958,
10772,
8590,
995,
187,
50272,
2877,
27,
1159,
8600,
6958,
10772,
8590,
9,
2754,
13,
32181,
13,
1387,
6060,
10,
551,
187,
50270,
2044,
795,
2520,
938,
426,
436,
28,
535,
50270,
2044,
2600,
426,
436,
15,
21390,
15,
2754,
14968,
3736,
436,
15,
21390,
15,
2754,
14968,
9,
2754,
10,
1163,
3522,
15,
1201,
28,
187,
50270,
2309,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2551,
995,
551,
187,
50268,
42145,
27,
32181,
13,
187,
50268,
251,
7146,
27,
1159,
39144,
9,
70,
10,
551,
187,
50266,
2309,
795,
2520,
938,
15,
251,
6958,
10004,
9,
70,
13,
3522,
558,
187,
50268,
2023,
187,
50268,
251,
4814,
10854,
27,
1159,
327,
4814,
10854,
9,
70,
10,
551,
187,
50266,
2309,
795,
2520,
938,
15,
251,
6958,
10772,
4814,
3487,
9,
70,
13,
3522,
13,
1387,
6060,
558,
187,
50268,
94,
187,
50270,
2023,
2600,
13,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
9,
6443,
15,
51,
33687,
13,
3635,
4027,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
12574,
26477,
995,
187,
50272,
2877,
27,
1159,
8600,
26477,
9,
11151,
37,
684,
13,
2129,
8447,
13,
1387,
6060,
10,
551,
187,
50270,
2044,
795,
2520,
1797,
426,
436,
28,
535,
50270,
2044,
2129,
426,
2129,
37,
684,
15,
4251,
9,
3701,
313,
2754,
10,
551,
187,
50268,
2044,
4236,
426,
795,
2520,
1797,
15,
261,
19030,
9,
2754,
558,
535,
50268,
2044,
894,
43731,
426,
5161,
15,
2437,
14090,
7506,
187,
50266,
8,
81,
14,
43991,
14,
977,
14,
7791,
5295,
3522,
15,
977,
28907,
13,
187,
50266,
8,
81,
14,
43991,
14,
39799,
5295,
3522,
15,
39799,
187,
50268,
9897,
187,
50268,
2044,
3522,
43731,
426,
5161,
15,
2437,
14090,
7506,
187,
50266,
8,
81,
14,
30703,
5295,
4236,
13,
187,
50266,
8,
81,
14,
25050,
5295,
2195,
2754,
15,
7135,
494,
187,
50268,
9897,
187,
50268,
2044,
2600,
426,
3522,
15,
977,
28907,
3857,
2195,
64,
2520,
1797,
15,
21390,
15,
9029,
8665,
9304,
20556,
3736,
3635,
1163,
795,
2520,
1797,
15,
12574,
6958,
10772,
8590,
9,
2754,
13,
3522,
43731,
13,
1387,
6060,
558,
187,
50268,
2309,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2851,
995,
551,
187,
50266,
2364,
27,
3522,
15,
1201,
13,
187,
50266,
42145,
27,
894,
43731,
187,
50268,
2023,
2600,
558,
187,
50270,
9897,
535,
50270,
338,
313,
2520,
15,
21390,
15,
9029,
26477,
10,
551,
187,
50268,
2044,
2129,
8447,
10772,
426,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2851,
995,
551,
187,
50266,
2364,
27,
686,
939,
8,
559,
2129,
8447,
13,
187,
50266,
42145,
27,
346,
81,
14,
43991,
14,
11151,
9133,
3,
187,
50268,
2023,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2551,
995,
551,
187,
50266,
42145,
27,
346,
81,
14,
25050,
3,
187,
50268,
2023,
2129,
8447,
4027,
187,
50268,
2309,
544,
11151,
8447,
10772,
1570,
35707,
10107,
936,
9323,
360,
494,
6542,
9,
11151,
4027,
187,
50270,
94,
2010,
551,
187,
50268,
2309,
2129,
28,
187,
50270,
94,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
12574,
37,
684,
995,
187,
50272,
2877,
27,
1159,
8600,
37,
684,
9,
7791,
23062,
3233,
13,
1387,
6060,
10,
551,
187,
50270,
2044,
795,
2520,
1423,
426,
436,
28,
535,
50270,
2309,
1770,
23062,
3233,
15,
24275,
15,
4251,
9,
3701,
313,
11151,
37,
684,
13,
3605,
10,
551,
187,
50268,
2309,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
1206,
995,
551,
187,
50266,
2364,
27,
3605,
187,
50268,
2023,
795,
2520,
1423,
15,
12574,
26477,
9,
11151,
37,
684,
13,
1770,
23062,
3233,
15,
11151,
45972,
60,
4663,
1092,
1387,
6060,
4027,
187,
50270,
9897,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
12574,
6958,
3145,
15099,
995,
187,
50272,
2877,
27,
1159,
8600,
6958,
3145,
15099,
9,
7791,
23062,
3233,
13,
2129,
41430,
13,
1387,
6060,
10,
551,
187,
50270,
2044,
1388,
14090,
426,
436,
15,
12574,
15490,
14090,
9,
11151,
41430,
558,
187,
50270,
2044,
12282,
426,
436,
15,
12574,
37,
684,
9,
7791,
23062,
3233,
13,
1387,
6060,
558,
187,
50270,
2309,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2154,
995,
551,
187,
50268,
42145,
27,
346,
81,
14,
43991,
14,
36913,
14,
13299,
3,
187,
50270,
2023,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2420,
995,
551,
187,
50268,
42145,
27,
346,
81,
14,
43991,
14,
36913,
3,
187,
50270,
2023,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
45826,
995,
3635,
13,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
1206,
995,
3635,
13,
1388,
14090,
9679,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
30892,
995,
3635,
13,
12282,
23090,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
12574,
28907,
995,
187,
50272,
2877,
27,
1159,
8600,
28907,
9,
7791,
23062,
3233,
13,
3605,
10,
551,
187,
50270,
2044,
2129,
41430,
426,
436,
15,
6953,
26477,
41430,
1874,
187,
50270,
2044,
19265,
14749,
22853,
426,
436,
15,
12574,
8116,
1034,
14749,
22853,
9,
4663,
11013,
470,
558,
187,
50270,
2044,
3579,
14749,
22853,
426,
436,
15,
12574,
31696,
14749,
22853,
9,
2520,
15,
21390,
15,
9133,
4527,
9304,
20556,
11013,
337,
2785,
3605,
11013,
436,
15,
21390,
15,
9133,
4527,
9304,
20556,
428,
337,
558,
187,
50270,
2044,
4060,
426,
436,
15,
12574,
13408,
9,
7791,
23062,
3233,
558,
187,
50270,
2044,
3522,
3145,
15099,
426,
436,
15,
12574,
6958,
3145,
15099,
9,
7791,
23062,
3233,
13,
2129,
41430,
13,
3605,
558,
187,
50270,
2044,
10478,
426,
436,
15,
21390,
15,
10146,
14968,
3736,
436,
15,
21390,
15,
10146,
14968,
1082,
1163,
3635,
28,
187,
50270,
2309,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2154,
995,
551,
187,
50268,
2364,
27,
1770,
23062,
3233,
15,
7791,
13,
187,
50268,
42145,
27,
346,
81,
14,
43991,
14,
4399,
3,
187,
50270,
2023,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2154,
995,
551,
187,
50268,
42145,
27,
346,
81,
14,
43991,
14,
10146,
3,
187,
50270,
2023,
10478,
13,
19265,
14749,
22853,
13,
4060,
13,
3579,
14749,
22853,
582,
3522,
3145,
15099,
558,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
12574,
9304,
20556,
995,
187,
50272,
2877,
27,
1159,
8600,
9304,
20556,
9,
17348,
23062,
3233,
10,
551,
187,
50270,
2044,
795,
2520,
1508,
426,
436,
28,
535,
50270,
2044,
2390,
426,
2607,
23062,
3233,
15,
4251,
9,
3701,
313,
7791,
23062,
3233,
13,
3605,
10,
551,
187,
50268,
2309,
795,
2520,
1508,
15,
12574,
28907,
9,
7791,
23062,
3233,
13,
3605,
558,
187,
50270,
9897,
187,
50270,
2309,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2154,
995,
551,
187,
50268,
42145,
27,
346,
81,
14,
43991,
14,
4399,
14,
13299,
3,
187,
50270,
2023,
2390,
558,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
12574,
6958,
3145,
995,
187,
50272,
2877,
27,
1159,
8600,
6958,
3145,
1082,
551,
187,
50270,
2044,
1859,
6958,
426,
436,
15,
788,
3145,
6958,
1874,
187,
50270,
2044,
2607,
23062,
3233,
426,
436,
15,
6953,
9304,
20556,
9,
1374,
6958,
15,
788,
28907,
5715,
1859,
6958,
15,
788,
16135,
18085,
6020,
187,
50270,
2044,
2607,
426,
436,
15,
12574,
9304,
20556,
9,
17348,
23062,
3233,
558,
187,
50270,
2309,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
9,
1785,
514,
876,
6986,
5013,
6986,
36676,
24054,
13,
3635,
13,
2607,
558,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
12574,
28907,
3145,
28907,
995,
187,
50272,
2877,
27,
1159,
8600,
28907,
3145,
28907,
9,
4663,
10,
551,
187,
50270,
2044,
795,
2520,
1348,
426,
436,
28,
535,
50270,
2044,
32181,
426,
5161,
15,
2437,
14090,
2073,
81,
14,
7791,
25819,
14,
7791,
1383,
551,
187,
50268,
8,
81,
14,
30703,
5295,
436,
15,
261,
28907,
19030,
9,
4663,
10,
187,
50270,
9897,
187,
50270,
2044,
1770,
14090,
17624,
426,
12128,
1785,
514,
15,
33113,
16956,
2073,
7791,
14090,
17624,
1383,
436,
15,
21390,
15,
33113,
558,
187,
50270,
2044,
1770,
2402,
426,
1770,
14090,
17624,
60,
4663,
2194,
187,
50270,
2309,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2551,
995,
551,
187,
50268,
2364,
27,
1770,
2402,
13,
187,
50268,
42145,
27,
32181,
13,
187,
50268,
251,
7146,
27,
1159,
39144,
9,
8045,
10,
551,
187,
50266,
2309,
795,
2520,
1348,
15,
251,
28907,
10004,
9,
8045,
13,
3605,
558,
187,
50268,
2023,
187,
50268,
251,
4814,
10854,
27,
1159,
327,
4814,
10854,
9,
8045,
10,
551,
187,
50266,
2309,
795,
2520,
1348,
15,
251,
28907,
10772,
4814,
3487,
9,
8045,
13,
3605,
558,
187,
50268,
94,
187,
50270,
2023,
1770,
2402,
13,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
9,
6443,
15,
51,
33687,
13,
3635,
4027,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
12574,
28907,
3145,
9304,
20556,
995,
187,
50272,
2877,
27,
1159,
8600,
28907,
3145,
9304,
20556,
1082,
551,
187,
50270,
2044,
2607,
426,
26991,
535,
50270,
1542,
313,
2044,
891,
426,
470,
28,
891,
11049,
1903,
28,
891,
9234,
551,
187,
50268,
17348,
15,
11340,
9,
2520,
15,
12574,
28907,
3145,
28907,
9,
74,
4027,
187,
50270,
94,
535,
50270,
2309,
2607,
28,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
12574,
28907,
3145,
995,
187,
50272,
2877,
27,
1159,
8600,
28907,
3145,
1082,
551,
187,
50270,
2044,
19265,
14749,
22853,
426,
436,
15,
12574,
8116,
1034,
14749,
22853,
9,
5672,
558,
187,
50270,
2044,
3579,
14749,
22853,
426,
436,
15,
12574,
31696,
14749,
22853,
9,
5672,
558,
187,
50270,
2044,
807,
7050,
426,
436,
15,
12574,
13408,
18085,
7050,
9,
2520,
15,
788,
3145,
6958,
5023,
788,
16135,
18085,
6020,
187,
50270,
2044,
2607,
426,
436,
15,
12574,
28907,
3145,
9304,
20556,
1874,
187,
50270,
2309,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
9,
1785,
514,
876,
6986,
5013,
6986,
36676,
24054,
13,
3635,
13,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2154,
995,
551,
187,
50268,
42145,
27,
346,
81,
14,
43991,
14,
4399,
14,
13299,
3,
187,
50270,
2023,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2154,
995,
551,
187,
50268,
42145,
27,
346,
81,
14,
43991,
14,
4399,
3,
187,
50270,
2023,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2154,
995,
551,
187,
50268,
42145,
27,
346,
81,
14,
43991,
14,
10146,
3,
187,
50270,
2023,
19265,
14749,
22853,
13,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2154,
995,
551,
187,
50268,
42145,
27,
346,
81,
14,
43991,
14,
5564,
3,
187,
50270,
2023,
807,
7050,
582,
3579,
14749,
22853,
1228,
582,
3476,
4,
876,
7575,
1848,
876,
8480,
1785,
514,
876,
6986,
5013,
6986,
36676,
42004,
1587,
2154,
995,
551,
187,
50268,
42145,
27,
346,
81,
14,
7791,
25819,
3,
187,
50270,
2023,
2607,
4027,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364
] |
Shodown Anthology
SNK Arcade Classics Vol. 1
World Heroes Anthology
Sengoku Anthology
NEOGEO Station
Japan portal
Video games portal
Retrieved from "https://en.wikipedia.org/w/index.php?title=Blue%27s_Journey&oldid=928816324"
1991 video games
ACA Neo Geo games
ADK (company) games
Cooperative video games
D4 Enterprise games
Fantasy video games
Multiplayer and single-player video games
Neo Geo CD games
Nintendo Switch eShop games
PlayStation Network games
Side-scrolling platform games
Video games developed in Japan
Video games featuring female protagonists
CS1 Japanese-language sources (ja)
Articles using Infobox video game using locally defined parameters
Articles using Wikidata infoboxes with locally defined images
Articles to be expanded from July 2019
Articles using small message boxes
Articles using Video game reviews template in single platform mode<|endoftext|>Q: wxwidgets wxtreectrl wxTR_HAS_BUTTONS does not enable plus minus buttons next to tree When I create a treectrl item with wxTR_HAS_BUTTONS enabled, no buttons seem to show. I am compiling using VC++ 2008.
treectrlModelTree = new wxTreeCtrl( itemPanel3, ID_TREECTRL_MODEL_TREE, wxDefaultPosition, wxDefaultSize, wxTR_EDIT_LABELS|wxTR_HAS_BUTTONS |wxTR_SINGLE|wxSUNKEN_BORDER );
I am adding the root with:
wxTreeItemId rootId = treectrlModelTree->AddRoot("Model Tree", -1, -1, new MyTreeItemData((void*)group));
and appending data to the tree with the AppendItem() command:
wxTreeItemId tempItem = treectrlModelTree->AppendItem(groupId, tmpstr, -1, -1, new MyTreeItemData(tracker->model));
I tried searching around but it does not seem like there are too many posts online about treectrl problems.
A: I figured it out,
It has to do with a bug in wxwidgets 2.8.9 where dragging items within the treectrl will give an error when there is no images assigned to a treectrl (i.e. folder images).
See: [http://trac.wxwidgets.org/ticket/4390][1]
I was using a quick fix suggested, to add a dummy image list
treectrlModelTree->AssignImageList(new wxImageList(1, 1));
which suppressed the plus/minus buttons for the treectrl.
<|endoftext|>Клишино — деревня в Волоколамском городском округе Московской области России. Население — чел. ().
География
Деревня Клишино расположена на западе Московской области, в юго-западной части Волоколамского городского округа, примерно в 15 км юго-западу от города Волоколамска, на левом берегу впадающей в Щетинку небольшой речки Чернавки (бассейн Рузы).
В деревне 7 улиц — Заречная, Лесная, Луговая, Новая, Полевая, Садовая и Центральная, 1 микрорайон, приписано 1 садоводческое товарищество. Связана прямым автобусным сообщением с районным центром (маршруты № 22, 26, 27, 29).
В 3 км к востоку от Клишино находится село Спасс; в 2 км к западу — деревня Ивановское; в 1 км к юго-востоку — деревня Милованье; в 600 м к северу — деревня Скорякино.
Население
История
В «Списке населённых мест» 1862 года — казённая деревня 1-го стана Рузского уезда Московской губернии по левую сторону дороги из города Можайска в город Волоколамск, в 36 верстах от уездного города, при колодце, с 46 дворами и 299 жителями (139 мужчин, 160 женщин).
По данным на 1890 год — деревня Судниковской волости Рузского уезда с 242 душами населения и земским училищем.
В 1913 году — 59 дворов и земское училище.
В 1919 году включена в состав Осташёвской волости Волоколамского уезда.
По материалам Всесоюзной переписи населения 1926 года — деревня Щекотовского сельсовета Осташёвской волости Волоколамского уезда в 9 км от Осташёвского шоссе и 12 км от станции Волоколамск Балтийской железной дороги. Проживало 239 жителей (101 мужчина, 138 женщин), насчитывалось 54 крестьянских хозяйства, имелась школа.
С 1929 года — населённый пункт в составе Волоколамского района Московского округа Московской области. Постановлением ЦИК и СНК от 23 июля 1930 года округа как административно-территориальные единицы были ликвидированы.
1929—1939 гг. — центр Клишинского сельсовета Волоколамского района.
1939—1954 гг. — центр Клишинского сельсовета Осташёвского района.
1954—1957 гг. — деревня Спасского сельсовета Осташёвского района.
1957—1963, 1965—1968 гг. — деревня Спасского сельсовета Волоколамского района.
1963—1965 гг. — деревня Спасского сельсовета Волоколамского укрупнённого сельского района.
1968—1972 гг. — деревня Горбуновского сельсовета Волоколамского района.
1972—1994 гг. — центр Кармановского сельсовета Волоколамского района.
1994—2006 гг. — центр Кармановского сельского округа Волоколамского района.
С 2006 по 2018 года— деревня сельского поселения Спасское Волоколамского муниципального района Московской области.
С 2019 года деревня Волоколамского городского округа.
Примечания
Населённые пункты Волоколамского района
Населённые пункты Рузского уезда
Населённые пункты Волоколамского уезда<|endoftext|>Features, Review | redpajama | [
1608,
351,
628,
13426,
1497,
187,
18243,
44,
26476,
796,
6550,
982,
6845,
15,
337,
187,
14947,
44925,
13426,
1497,
187,
52,
1205,
23909,
13426,
1497,
187,
6603,
48,
7538,
48,
14628,
187,
19291,
20280,
187,
17213,
3958,
20280,
187,
9795,
35571,
432,
346,
3614,
1358,
257,
15,
25842,
15,
2061,
16,
88,
16,
4663,
15,
5581,
32,
5564,
30,
22036,
6,
1630,
84,
64,
43,
454,
2191,
7,
744,
301,
30,
26,
21340,
1036,
21397,
3,
187,
14209,
3492,
3958,
187,
33550,
40989,
44826,
3958,
187,
2350,
44,
313,
25610,
10,
3958,
187,
6869,
7105,
3492,
3958,
187,
37,
21,
26470,
3958,
187,
39,
386,
7077,
3492,
3958,
187,
22495,
15381,
285,
2014,
14,
15381,
3492,
3958,
187,
6560,
80,
44826,
3437,
3958,
187,
47,
24150,
26457,
299,
48698,
3958,
187,
21020,
25972,
10701,
3958,
187,
28541,
14,
1026,
19891,
5147,
3958,
187,
17213,
3958,
3715,
275,
4047,
187,
17213,
3958,
15773,
5343,
30224,
1346,
187,
5166,
18,
6692,
14,
12982,
4973,
313,
6362,
10,
187,
11796,
3741,
970,
13160,
48577,
3492,
2165,
970,
12171,
2931,
3602,
187,
11796,
3741,
970,
45155,
301,
682,
2192,
48577,
265,
342,
12171,
2931,
3888,
187,
11796,
3741,
281,
320,
11848,
432,
4163,
6247,
187,
11796,
3741,
970,
1355,
3935,
12783,
187,
11796,
3741,
970,
16428,
2165,
10123,
7646,
275,
2014,
5147,
4438,
50279,
50,
27,
22365,
49875,
259,
633,
250,
646,
8435,
22365,
3125,
64,
35183,
64,
30741,
18587,
52,
1057,
417,
8046,
5043,
19734,
16020,
1735,
281,
5202,
2091,
309,
2794,
247,
2578,
646,
8435,
5382,
342,
22365,
3125,
64,
35183,
64,
30741,
18587,
52,
11410,
13,
642,
16020,
1646,
281,
921,
15,
309,
717,
40877,
970,
29640,
3424,
4695,
15,
187,
50274,
5643,
646,
8435,
7104,
14444,
426,
747,
22365,
14444,
32303,
9,
5382,
16284,
20,
13,
5417,
64,
53,
1848,
9649,
6587,
64,
18129,
45,
64,
53,
12241,
13,
22365,
9671,
13883,
13,
22365,
9671,
5496,
13,
22365,
3125,
64,
18071,
64,
29317,
3887,
52,
93,
22358,
3125,
64,
35183,
64,
30741,
18587,
52,
1040,
22358,
3125,
64,
47307,
1843,
93,
22358,
52,
4037,
39373,
64,
35,
24066,
5349,
187,
187,
42,
717,
6240,
253,
5230,
342,
27,
209,
187,
22358,
14444,
5475,
2618,
5230,
2618,
426,
2578,
646,
8435,
7104,
14444,
1168,
4717,
16560,
1587,
7104,
19128,
995,
428,
18,
13,
428,
18,
13,
50276,
1826,
2752,
14444,
5475,
3233,
4464,
4353,
5627,
4399,
4027,
187,
187,
395,
622,
1946,
941,
281,
253,
5202,
342,
253,
2051,
423,
5475,
1082,
3923,
27,
187,
22358,
14444,
5475,
2618,
14712,
5475,
426,
2578,
646,
8435,
7104,
14444,
1168,
33253,
5475,
9,
24548,
13,
19097,
1344,
13,
428,
18,
13,
428,
18,
13,
747,
2752,
14444,
5475,
3233,
9,
13712,
254,
1168,
7645,
4027,
187,
187,
42,
3597,
12203,
1475,
533,
352,
1057,
417,
1646,
751,
627,
403,
1512,
1142,
9319,
3909,
670,
2578,
646,
8435,
3237,
15,
2490,
187,
34,
27,
309,
15433,
352,
562,
13,
209,
187,
1147,
556,
281,
513,
342,
247,
7505,
275,
22365,
49875,
374,
15,
25,
15,
26,
835,
32126,
4957,
1561,
253,
2578,
646,
8435,
588,
1918,
271,
2228,
672,
627,
310,
642,
3888,
7922,
281,
247,
2578,
646,
8435,
313,
74,
15,
70,
15,
11534,
3888,
481,
209,
187,
5035,
27,
544,
2413,
1358,
1206,
317,
15,
22358,
49875,
15,
2061,
16,
42186,
16,
21,
23850,
7082,
18,
62,
187,
42,
369,
970,
247,
3158,
4993,
5125,
13,
281,
823,
247,
28726,
2460,
1618,
209,
187,
5643,
646,
8435,
7104,
14444,
1168,
44467,
6586,
2765,
9,
1826,
22365,
6586,
2765,
9,
18,
13,
337,
4027,
187,
187,
4609,
16013,
253,
5043,
16,
10420,
16020,
323,
253,
2578,
646,
8435,
15,
187,
50279,
27822,
11378,
9082,
1389,
8355,
575,
1128,
6564,
7029,
21537,
32493,
4407,
21615,
7869,
15647,
7869,
11409,
10453,
8496,
13192,
10161,
8804,
10453,
8496,
6099,
3721,
39545,
1207,
29280,
1068,
10453,
5790,
10453,
12007,
18651,
3415,
29685,
1389,
32082,
45366,
24215,
15,
25077,
15712,
9247,
22515,
575,
1128,
50276,
4435,
9247,
15,
22193,
187,
187,
140,
230,
1207,
9689,
16798,
18341,
10743,
209,
187,
32697,
7029,
21537,
32493,
24572,
11378,
9082,
1389,
8355,
9160,
15712,
7179,
7869,
14706,
5126,
1152,
8713,
40769,
16205,
1207,
29280,
1068,
10453,
5790,
10453,
12007,
18651,
3415,
29685,
1389,
13,
4407,
7786,
225,
41623,
14,
7762,
20366,
16205,
29862,
10530,
29685,
1389,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
13192,
10161,
8804,
10453,
15147,
6099,
3721,
39545,
1152,
13,
7486,
12500,
7029,
8355,
4407,
1458,
575,
3721,
5160,
7786,
225,
41623,
14,
7762,
20366,
16205,
2964,
15095,
13192,
10161,
8804,
1152,
21615,
7869,
15647,
7869,
11409,
10453,
1152,
13,
8713,
17978,
21537,
8496,
9514,
7029,
19985,
2964,
4407,
7179,
16205,
47682,
11514,
15290,
4407,
929,
104,
7508,
10961,
34366,
4418,
32445,
18584,
9082,
12007,
9160,
30338,
23379,
929,
102,
7029,
1640,
10324,
23379,
313,
8787,
42732,
15290,
1640,
32082,
2964,
7762,
4141,
481,
187,
187,
22292,
6564,
7029,
21537,
32520,
818,
11770,
11378,
8961,
575,
1128,
929,
234,
12559,
30338,
43167,
13,
929,
238,
20508,
43167,
13,
929,
238,
2964,
9925,
5790,
32255,
13,
25077,
5790,
32255,
13,
21146,
7869,
21537,
32255,
13,
22310,
16205,
5790,
32255,
5822,
929,
101,
21527,
1697,
24885,
43167,
13,
337,
8277,
18778,
1697,
10161,
21241,
11256,
13,
36816,
7179,
17307,
6754,
1068,
337,
4189,
16205,
5790,
8804,
4435,
31318,
39026,
8134,
5790,
12559,
1389,
30594,
40017,
15,
22310,
4183,
3504,
7762,
6754,
1152,
7486,
49977,
4141,
5160,
15057,
4183,
1367,
12444,
46640,
36922,
35150,
12444,
11514,
40286,
10077,
4189,
9160,
21241,
11256,
36922,
31682,
21527,
1697,
8496,
313,
5160,
12559,
9082,
16828,
1367,
4141,
3384,
215,
233,
575,
1423,
13,
3436,
13,
3435,
13,
3285,
481,
187,
187,
22292,
495,
575,
3721,
5160,
6467,
4407,
19745,
15647,
2964,
15095,
24572,
11378,
9082,
1389,
8355,
8713,
31818,
7620,
12587,
4189,
9247,
1068,
22310,
7179,
42732,
28,
4407,
374,
575,
3721,
5160,
6467,
40769,
16205,
2964,
575,
1128,
6564,
7029,
21537,
32493,
35256,
4183,
6754,
5790,
10453,
39026,
28,
4407,
337,
575,
3721,
5160,
6467,
7786,
225,
41623,
14,
4183,
19745,
15647,
2964,
575,
1128,
6564,
7029,
21537,
32493,
29280,
15780,
33036,
4169,
1207,
28,
4407,
12891,
575,
5160,
6467,
4189,
21537,
7029,
2964,
575,
1128,
6564,
7029,
21537,
32493,
22310,
3721,
10161,
3504,
23379,
8355,
15,
187,
187,
25518,
15712,
9247,
22515,
187,
187,
29690,
5031,
10161,
10743,
209,
187,
22292,
7539,
22690,
7179,
1389,
10453,
1207,
8713,
1674,
9247,
36065,
1640,
28167,
8277,
24860,
6234,
45834,
44576,
1152,
1905,
6467,
11995,
36065,
1640,
43167,
6564,
7029,
21537,
32493,
337,
14,
41623,
18330,
6754,
1152,
32082,
2964,
7762,
10453,
15147,
11770,
20410,
25809,
29280,
1068,
10453,
5790,
10453,
12007,
13192,
45586,
7029,
14171,
1389,
17008,
17978,
21537,
26199,
4189,
18706,
11256,
2964,
6564,
10161,
9689,
1389,
19833,
13192,
10161,
8804,
1152,
29280,
14706,
21241,
10453,
1152,
4407,
13192,
10161,
8804,
21615,
7869,
15647,
7869,
11409,
10453,
13,
4407,
5540,
4407,
7029,
5031,
39857,
15095,
11770,
20410,
5129,
27328,
13192,
10161,
8804,
1152,
13,
36816,
6467,
7869,
8804,
8961,
1207,
13,
4189,
7904,
6564,
4183,
10161,
35411,
5822,
29949,
25705,
49349,
49977,
1389,
313,
15270,
8277,
32195,
4435,
10961,
13,
12036,
25705,
5126,
11514,
10961,
481,
187,
187,
21715,
1068,
6564,
6754,
36922,
8713,
32789,
44576,
1905,
6564,
7029,
21537,
32493,
22310,
23038,
42720,
5790,
10453,
12007,
4407,
7869,
19745,
1389,
32082,
2964,
7762,
10453,
15147,
11770,
20410,
25809,
4189,
28415,
6564,
2964,
9082,
35411,
8713,
1674,
9247,
22625,
5822,
8793,
10077,
10453,
12500,
11770,
4435,
32882,
11514,
10077,
15,
187,
187,
22292,
33920,
44576,
2964,
1905,
8978,
6564,
4183,
10161,
5790,
5822,
8793,
10077,
10453,
39026,
11770,
4435,
32882,
30594,
15,
187,
187,
22292,
29145,
44576,
2964,
4407,
3721,
46686,
5126,
1152,
4407,
4189,
19745,
10324,
33306,
5031,
47046,
36065,
4183,
10453,
12007,
4407,
7869,
19745,
1389,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
11770,
20410,
25809,
15,
187,
187,
21715,
1068,
8277,
7065,
7029,
1389,
8117,
11409,
21615,
1674,
20508,
1068,
8204,
7762,
29862,
26546,
31220,
17307,
1389,
8713,
1674,
9247,
22625,
33554,
44576,
1152,
1905,
6564,
7029,
21537,
32493,
929,
104,
14742,
12562,
5790,
10453,
15147,
4189,
23468,
1674,
5790,
7508,
1152,
33306,
5031,
47046,
36065,
4183,
10453,
12007,
4407,
7869,
19745,
1389,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
11770,
20410,
25809,
4407,
898,
6467,
5160,
15095,
33306,
5031,
47046,
36065,
4183,
10453,
15147,
41553,
45366,
1207,
5822,
1249,
6467,
5160,
15095,
18330,
6754,
33116,
21615,
7869,
15647,
7869,
11409,
10453,
38177,
8117,
1367,
18664,
10453,
12007,
25705,
9247,
20410,
29862,
6564,
10161,
9689,
1389,
15,
21146,
1697,
14706,
16423,
8117,
1068,
27862,
25705,
49349,
15290,
313,
6903,
8277,
32195,
4435,
43495,
13,
15410,
25705,
5126,
11514,
10961,
582,
8713,
1674,
4435,
7620,
4141,
4183,
8117,
13043,
4169,
8255,
6467,
1697,
24860,
4169,
3504,
1640,
10453,
21602,
27968,
19245,
3504,
10411,
48952,
13,
32951,
9247,
15712,
4169,
41553,
3721,
7869,
1152,
15,
187,
187,
22690,
29063,
44576,
1152,
1905,
8713,
1674,
9247,
36065,
1640,
29729,
3776,
40546,
3721,
1367,
4407,
4189,
19745,
10324,
1207,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
9160,
21241,
11256,
1152,
29280,
1068,
10453,
5790,
10453,
15147,
6099,
3721,
39545,
1152,
29280,
1068,
10453,
5790,
10453,
12007,
18651,
3415,
29685,
1389,
15,
21146,
19745,
6754,
5790,
36723,
1389,
10077,
929,
101,
29690,
27822,
5822,
22310,
25518,
27822,
15095,
3495,
5822,
8204,
17544,
17437,
44576,
1152,
6099,
3721,
39545,
1152,
25043,
15057,
5129,
5160,
10961,
28500,
1697,
7065,
16423,
8355,
14,
46360,
34491,
18706,
1389,
24885,
29220,
13709,
5129,
10961,
45485,
4141,
23358,
11378,
17978,
18778,
4183,
24368,
20650,
33036,
4141,
15,
187,
187,
746,
1717,
1128,
42093,
13192,
9925,
15,
1905,
31682,
21527,
1697,
24572,
11378,
9082,
10961,
10453,
15147,
4189,
23468,
1674,
5790,
7508,
1152,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
9160,
21241,
11256,
1152,
15,
187,
187,
42093,
1128,
39511,
13192,
9925,
15,
1905,
31682,
21527,
1697,
24572,
11378,
9082,
10961,
10453,
15147,
4189,
23468,
1674,
5790,
7508,
1152,
33306,
5031,
47046,
36065,
4183,
10453,
15147,
9160,
21241,
11256,
1152,
15,
187,
187,
39511,
1128,
35364,
13192,
9925,
15,
1905,
6564,
7029,
21537,
32493,
22310,
7179,
15712,
10453,
15147,
4189,
23468,
1674,
5790,
7508,
1152,
33306,
5031,
47046,
36065,
4183,
10453,
15147,
9160,
21241,
11256,
1152,
15,
187,
187,
35364,
1128,
30488,
13,
18417,
1128,
25929,
13192,
9925,
15,
1905,
6564,
7029,
21537,
32493,
22310,
7179,
15712,
10453,
15147,
4189,
23468,
1674,
5790,
7508,
1152,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
9160,
21241,
11256,
1152,
15,
187,
187,
30488,
1128,
28403,
13192,
9925,
15,
1905,
6564,
7029,
21537,
32493,
22310,
7179,
15712,
10453,
15147,
4189,
23468,
1674,
5790,
7508,
1152,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
11770,
3721,
16828,
7179,
1640,
36065,
1640,
27328,
4189,
23468,
10453,
15147,
9160,
21241,
11256,
1152,
15,
187,
187,
25929,
1128,
23482,
13192,
9925,
15,
1905,
6564,
7029,
21537,
32493,
41905,
10161,
8787,
40546,
5790,
10453,
15147,
4189,
23468,
1674,
5790,
7508,
1152,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
9160,
21241,
11256,
1152,
15,
187,
187,
23482,
1128,
13034,
13192,
9925,
15,
1905,
31682,
21527,
1697,
24572,
12559,
5160,
6754,
5790,
10453,
15147,
4189,
23468,
1674,
5790,
7508,
1152,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
9160,
21241,
11256,
1152,
15,
187,
187,
13034,
1128,
8603,
13192,
9925,
15,
1905,
31682,
21527,
1697,
24572,
12559,
5160,
6754,
5790,
10453,
15147,
4189,
23468,
10453,
15147,
6099,
3721,
39545,
1152,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
9160,
21241,
11256,
1152,
15,
187,
187,
22690,
5403,
17008,
4765,
44576,
1152,
1128,
6564,
7029,
21537,
32493,
4189,
23468,
10453,
15147,
38940,
9247,
22625,
22310,
7179,
15712,
10453,
39026,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
8277,
2964,
14171,
16779,
7179,
24885,
27328,
9160,
21241,
11256,
1152,
29280,
1068,
10453,
5790,
10453,
12007,
18651,
3415,
29685,
1389,
15,
187,
187,
22690,
6247,
44576,
1152,
6564,
7029,
21537,
32493,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
13192,
10161,
8804,
10453,
15147,
6099,
3721,
39545,
1152,
15,
187,
187,
21715,
1697,
12500,
30338,
6754,
10743,
209,
2756,
187,
25518,
15712,
9247,
36065,
1640,
29220,
3776,
40546,
3721,
1367,
4141,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
9160,
21241,
11256,
1152,
187,
25518,
15712,
9247,
36065,
1640,
29220,
3776,
40546,
3721,
1367,
4141,
32082,
2964,
7762,
10453,
15147,
11770,
20410,
25809,
187,
25518,
15712,
9247,
36065,
1640,
29220,
3776,
40546,
3721,
1367,
4141,
21615,
7869,
15647,
7869,
11409,
10453,
15147,
11770,
20410,
25809,
50279,
30880,
13,
8439
] |
Lance Armstrong, road racing cyclist, 7 time (and counting) Tour De France winner, is a Mac user. He has a Mac laptop and chills to music from an iPod when he is training or racing.
Lance had an injury earlier this year that required surgery. This is the post operation video interview with him. Lance Armstrong discusses a little about the surgery, and using his Mac (Apple MacBook Pro), Lance shows his medical x-ray photo from the surgery. He only took a few days off. Then back to training for Tour De France. Gotta admire the dedication.
Lance is currently racing in the 2009 Tour de France. Tour de France is an extremely challenging annual bicycle race that attracts top competition cyclists from around the world. The race lasts 23 days and covers over 2000 miles through France and bordering countries.
Lance also enjoys some of his time relaxing to music from his Apple iPod.
What’s on Lance’s Apple iPod?
“Times like These” by the Foo Fighters. You can pretty much count on the Foo Fighters to get your heart rate up. He [Lance] has a little bit of Linkin Park on his (Tour) playlist, some of the new Coldplay, some U2 and some things I haven’t heard of, like POD.
This entry was posted on Tuesday, July 14th, 2009 at 10:25 pm and is filed under Celebs with Macs. You can follow any responses to this entry through the RSS 2.0 feed.<|endoftext|>ANTHONY HAYBLE'S NEW BLOG SITE FOR MOST CURRENT NEWS & CELEBRITY NEWS, GOSIPS AND EVENTS
Missing British schoolgirl found in Trinidad as police investigate disappearance
Posted byanthonyhayble January 8, 2023 Posted inUncategorized
Delika White Lezama
A British teenager who went missing while on holiday with her family in Trinidad more than two weeks ago has been found safe and well by police in Trinidad and Tobago.
Delika White Lezama,13, of Greenford, London, disappeared while on a trip with her mother and brother to Trinidad to visit their grandmother.
The teenager was last seen on a back road after going to a corner shop near her grandmother’s house in Sangre Grande town at around 4 pm on December 17.
Speaking from the southern Caribbean island, team captain Vallence Rambharat, who was leading the search with his group Hunters Search and Rescue to locate the teenager, said that she has been located and was being reunited with her family.
“Delika White Lezama has been safely located at 5:15 pm this evening. After weeks of hard work by her family, the anti-kidnapping unit of the Trinidad police, the Sangre Grande police officers, and the Hunters Search and Rescue team, it has paid off. She has been found. The matter is still receiving the attention of the [police],” Mr Rambharat said.
Delika White Lezama was last seen after visiting a corner shop last month
She was last seen on a back road after visiting a corner shop near her grandmother’s house in the town of Sangre Grande at around 4 pm on December 17.
Her family desperately began searching for her after realising she hadn’t come home 10 minutes later but were unable to find any trace of the teenager.
Since her disappearance, the family has sent several messages to Delika’s phone which had been delivered but appear not to have been read.
Her mum said: “The police told me they have some camera footage from the area that she walked, and they’re still waiting for footage of people around the area as well.
“The police have searched people’s houses, but we haven’t found her. They’ve searched the rivers and the bushes to see if she’s in the area.”
Mr Rambharat, whose organisation searches for missing persons in Trinidad and Tobago, said that they work closely with the local police to share and gather information.
“We all worked together on this and we are happy that she was found safe this afternoon,” Mr Rambharat said.”The police investigations are continuing and ongoing.”
Trinidad police say that there is not much that can be said right now as they impose a news blackout.
A local official said that the matter still has to be fully investigated by the police.
“The police need to know what really happened to her and where she was all this time that she was reported missing,” the official said. “They will be speaking to her to find out more.”
Published by anthonyhayble
I AM A PROFESSIONAL BLOGGER WHO BLOGS ON EVENTS, NEWS AND CELEBRITY ACTIVITIES. YOU WILL GET THE LATEST BLOGGING UPDATES WITH UP TO DATE NEWS AND EVENTS THAT MIGHT INTEREST YOU. COMMENTS AND LIKES ARE ALSO WELCOMED. I AM STILL IN THE PROCESS OF BUILDING AND UPDATING MY BLOGS AND IT WOULD BE UP AND RUNNING SHORTLY. THIS IS STILL A NEW SITE AND WILL GREATLY IMPROVE WITH TIME View more posts
Brexit is just one of the three Tory errors that have brought Britain to its knees
‘No role’ for Prince Harry at King Charles’ coronation
ANTHONY HAYBLE'S NEW BLOG SITE FOR MOST CURRENT NEWS & CELEBRITY NEWS, GOSIPS AND EVENTS, Blog at WordPress.com.<|endoftext|>Q: Angular 5 - data not binding after redirect I have problem with data binding while I am redirecting from one view to another. I am filling the form data in "http://localhost:4200/create" view and then redirecting to "http://localhost:4200/settle/9ed5509c-ecd6-4895-96eb-a2efa04bae6d" (url with token). Nothing is binded correctly after redirection (no binding made at all) but I click refresh (ctrl+r on chrome) then biding is made properly.
create.component.ts
onSubmit() {
this.model.token = UUID.UUID();
this.settleService
.addSettle(this.model)
.subscribe(settle => this.settles.push(settle));
this.router
.navigate([`settle`, this.model.token])
.then(() => console.log(`Redirection to settle details made!`));
this.submitted = true;
}
settle.component.ts - ngOnInit() method
ngOnInit() {
this.getSettle();
this.currentUrl = window.location.href;
this.show = false;
}
settle.component.ts - getSettle() method
getSettle(): void {
const token = this.route.snapshot.paramMap.get('id');
this.settleService
.getSettle(token)
.subscribe(settle => this.settle = settle, null, () => this.BindEditUrl());
}
A: Ok I figure it out. Mistake was simple - redirection was made before getting response from backend (HTTP POST create settle). I put redirect logic after backend response and everything works now.
Working code:
create.component.ts - onSubmit() method
onSubmit() {
this.model.token = UUID.UUID();
this.settleService
.addSettle(this.model)
.subscribe(settle => this.settles.push(settle), null, () => this.redirectToSettleDetails());
this.submitted = true;
}
create.component.ts - redirectToSettleDetails() method
redirectToSettleDetails(): void {
this.router
.navigate([`settle`, this.model.token])
.then(() => console.log(`Redirection to settle details made!`));
}
<|endoftext|>It searches the Tweets of Twitter around Dhartak Damdam, Lahaul And Spiti, Himachal Pradesh 30km.
Riding Solo is for the travel enthusiasts to take away all of their travelling headaches and help them in meeting their true selves.
A fascinating landscape view is waiting you..!
Some fun on the road to Kaza in March 2019. Tabo. Himachal Pradesh. INDIA.
The Spiti flowing along the road to Kaza from Tabo. March 2019. Himachal Pradesh. India.<|endoftext|>Want it by Wednesday 24th April? Order within 7 hours, 16 minutes and choose Special Delivery at checkout.
A highly polished 10mm 14 carat rose gold plated stainless steel gem top which won't tarnish and is hard-wearing. It has a sparkling, faceted purple amethyst coloured Swarovski Crystal and can be added to any QUDO ring base to make a beautiful, statement ring.<|endoftext|>Q: can't connect to database by executable file i wrote a program that need to connect to database to insert some data, my executable file not connect to database but when i checked with code connection established! i don't know what is problem, do you know what is problem?
i use Qt to connect to database and my database is on mySql and here is how | redpajama | [
45,
593,
29915,
13,
3971,
16893,
6776,
382,
13,
818,
673,
313,
395,
15496,
10,
11997,
1605,
6181,
13688,
13,
310,
247,
5602,
2608,
15,
754,
556,
247,
5602,
16556,
285,
448,
3171,
281,
3440,
432,
271,
41020,
672,
344,
310,
3733,
390,
16893,
15,
187,
45,
593,
574,
271,
4975,
4321,
436,
807,
326,
2424,
5869,
15,
831,
310,
253,
1501,
4254,
3492,
4572,
342,
779,
15,
35463,
29915,
25339,
247,
1652,
670,
253,
5869,
13,
285,
970,
521,
5602,
313,
25989,
5602,
12323,
1294,
582,
35463,
2722,
521,
3739,
1269,
14,
1402,
7512,
432,
253,
5869,
15,
754,
760,
2335,
247,
1643,
1897,
745,
15,
2635,
896,
281,
3733,
323,
11997,
1605,
6181,
15,
21979,
893,
26930,
253,
31768,
15,
187,
45,
593,
310,
4390,
16893,
275,
253,
4748,
11997,
372,
6181,
15,
11997,
372,
6181,
310,
271,
6685,
11132,
7970,
25812,
5492,
326,
45465,
1755,
7324,
42094,
432,
1475,
253,
1533,
15,
380,
5492,
34756,
3495,
1897,
285,
10949,
689,
5307,
6574,
949,
6181,
285,
5680,
272,
4343,
15,
187,
45,
593,
671,
29566,
690,
273,
521,
673,
32196,
281,
3440,
432,
521,
8217,
41020,
15,
187,
1276,
457,
84,
327,
35463,
457,
84,
8217,
41020,
32,
187,
1628,
27555,
751,
2053,
668,
407,
253,
31814,
401,
15053,
15,
1422,
476,
3965,
1199,
1385,
327,
253,
31814,
401,
15053,
281,
755,
634,
2798,
2281,
598,
15,
754,
544,
45,
593,
62,
556,
247,
1652,
2372,
273,
13829,
249,
4913,
327,
521,
313,
38289,
10,
1132,
3550,
13,
690,
273,
253,
747,
20754,
1993,
13,
690,
530,
19,
285,
690,
1841,
309,
6468,
457,
85,
3735,
273,
13,
751,
367,
3519,
15,
187,
1552,
5857,
369,
9269,
327,
7948,
13,
4163,
1638,
394,
13,
4748,
387,
884,
27,
1099,
12920,
186,
395,
310,
4724,
762,
33245,
1768,
342,
5602,
84,
15,
1422,
476,
956,
667,
6128,
281,
436,
5857,
949,
253,
35452,
374,
15,
17,
3997,
15,
50279,
1539,
3886,
1139,
58,
388,
8506,
18688,
8,
52,
22428,
378,
21273,
322,
12752,
6651,
353,
13792,
40535,
39244,
41059,
708,
7956,
1843,
7941,
7400,
41059,
13,
443,
2697,
24748,
4889,
9463,
24937,
187,
36840,
4782,
2143,
23660,
1119,
275,
49057,
10045,
347,
3513,
7409,
31852,
187,
25698,
407,
14718,
2421,
49289,
934,
4247,
854,
13,
1384,
1508,
36349,
275,
2447,
68,
992,
263,
1025,
187,
13569,
11825,
5219,
2070,
91,
2902,
187,
34,
4782,
28713,
665,
2427,
5816,
1223,
327,
13319,
342,
617,
2021,
275,
49057,
10045,
625,
685,
767,
3618,
3622,
556,
644,
1119,
4999,
285,
973,
407,
3513,
275,
49057,
10045,
285,
20358,
5477,
15,
187,
13569,
11825,
5219,
2070,
91,
2902,
13,
1012,
13,
273,
6115,
4379,
13,
4693,
13,
15159,
1223,
327,
247,
7408,
342,
617,
3101,
285,
4929,
281,
49057,
10045,
281,
4143,
616,
20606,
15,
187,
510,
28713,
369,
1390,
2326,
327,
247,
896,
3971,
846,
1469,
281,
247,
7145,
8979,
2822,
617,
20606,
457,
84,
2419,
275,
38236,
250,
35896,
3874,
387,
1475,
577,
12920,
327,
4565,
1722,
15,
187,
28326,
432,
253,
11053,
25564,
8930,
13,
2285,
13595,
48535,
566,
416,
1369,
9432,
255,
13,
665,
369,
4283,
253,
3186,
342,
521,
1387,
12048,
1336,
14736,
285,
44150,
281,
19912,
253,
28713,
13,
753,
326,
703,
556,
644,
4441,
285,
369,
1146,
27135,
959,
342,
617,
2021,
15,
187,
1628,
13569,
11825,
5219,
2070,
91,
2902,
556,
644,
15792,
4441,
387,
608,
27,
1010,
12920,
436,
7237,
15,
2732,
3618,
273,
1892,
789,
407,
617,
2021,
13,
253,
3270,
14,
49934,
79,
5436,
3943,
273,
253,
49057,
10045,
3513,
13,
253,
38236,
250,
35896,
3513,
6251,
13,
285,
253,
12048,
1336,
14736,
285,
44150,
2285,
13,
352,
556,
5087,
745,
15,
1500,
556,
644,
1119,
15,
380,
2647,
310,
1335,
6883,
253,
4116,
273,
253,
544,
50141,
1092,
668,
2305,
416,
1369,
9432,
255,
753,
15,
187,
13569,
11825,
5219,
2070,
91,
2902,
369,
1390,
2326,
846,
13975,
247,
7145,
8979,
1390,
1770,
187,
2993,
369,
1390,
2326,
327,
247,
896,
3971,
846,
13975,
247,
7145,
8979,
2822,
617,
20606,
457,
84,
2419,
275,
253,
3874,
273,
38236,
250,
35896,
387,
1475,
577,
12920,
327,
4565,
1722,
15,
187,
10759,
2021,
26426,
3407,
12203,
323,
617,
846,
1524,
2182,
703,
8715,
457,
85,
1705,
1728,
884,
2909,
1996,
533,
497,
7591,
281,
1089,
667,
10711,
273,
253,
28713,
15,
187,
7542,
617,
31852,
13,
253,
2021,
556,
2197,
2067,
8169,
281,
6304,
11825,
457,
84,
4481,
534,
574,
644,
8549,
533,
3176,
417,
281,
452,
644,
1239,
15,
187,
10759,
29616,
753,
27,
773,
510,
3513,
2183,
479,
597,
452,
690,
6568,
20541,
432,
253,
2170,
326,
703,
7428,
13,
285,
597,
457,
250,
1335,
6179,
323,
20541,
273,
952,
1475,
253,
2170,
347,
973,
15,
187,
1628,
510,
3513,
452,
16113,
952,
457,
84,
9910,
13,
533,
359,
6468,
457,
85,
1119,
617,
15,
1583,
457,
306,
16113,
253,
21646,
285,
253,
40444,
281,
923,
604,
703,
457,
84,
275,
253,
2170,
1425,
187,
7710,
416,
1369,
9432,
255,
13,
3692,
19156,
17891,
323,
5816,
7732,
275,
49057,
10045,
285,
20358,
5477,
13,
753,
326,
597,
789,
8244,
342,
253,
1980,
3513,
281,
3894,
285,
9580,
1491,
15,
187,
1628,
1231,
512,
4307,
2366,
327,
436,
285,
359,
403,
5211,
326,
703,
369,
1119,
4999,
436,
9055,
1806,
2305,
416,
1369,
9432,
255,
753,
1425,
510,
3513,
14006,
403,
11440,
285,
10800,
1425,
187,
2290,
249,
10045,
3513,
1333,
326,
627,
310,
417,
1199,
326,
476,
320,
753,
987,
1024,
347,
597,
16209,
247,
3668,
2806,
483,
15,
187,
34,
1980,
3565,
753,
326,
253,
2647,
1335,
556,
281,
320,
4751,
6949,
407,
253,
3513,
15,
187,
1628,
510,
3513,
878,
281,
871,
752,
1663,
4592,
281,
617,
285,
835,
703,
369,
512,
436,
673,
326,
703,
369,
2361,
5816,
1806,
253,
3565,
753,
15,
773,
3726,
588,
320,
8288,
281,
617,
281,
1089,
562,
625,
1425,
187,
32963,
407,
13950,
2421,
49289,
934,
187,
42,
5208,
329,
41238,
34748,
1556,
378,
8372,
6435,
947,
18896,
378,
8372,
10339,
8160,
9463,
24937,
13,
41059,
4889,
7956,
1843,
7941,
7400,
21318,
3252,
1433,
9785,
15,
8702,
22268,
19220,
3003,
418,
4966,
1267,
378,
8372,
6435,
2637,
530,
5414,
42564,
9277,
20653,
5935,
46611,
41059,
4889,
9463,
24937,
16093,
353,
9981,
22508,
24422,
8702,
15,
8610,
39307,
4889,
13092,
46009,
17003,
6589,
8683,
411,
3887,
9507,
1703,
15,
309,
5208,
3915,
10592,
2949,
3003,
25717,
5479,
3481,
26564,
21247,
2637,
4889,
530,
5414,
42284,
17450,
378,
8372,
10339,
4889,
8017,
411,
30384,
8728,
20653,
4889,
34540,
47,
2637,
7840,
7396,
12715,
15,
10113,
4110,
3915,
10592,
329,
22428,
322,
12752,
4889,
22268,
30273,
1194,
12715,
10744,
3175,
19252,
9277,
25329,
9182,
625,
9319,
187,
16212,
19706,
310,
816,
581,
273,
253,
1264,
36819,
6332,
326,
452,
3982,
9643,
281,
697,
15746,
187,
8924,
2302,
2554,
457,
323,
12843,
11643,
387,
4377,
8444,
457,
9987,
318,
187,
1539,
3886,
1139,
58,
388,
8506,
18688,
8,
52,
22428,
378,
21273,
322,
12752,
6651,
353,
13792,
40535,
39244,
41059,
708,
7956,
1843,
7941,
7400,
41059,
13,
443,
2697,
24748,
4889,
9463,
24937,
13,
20299,
387,
31198,
15,
681,
15,
50279,
50,
27,
33001,
608,
428,
941,
417,
4865,
846,
21124,
309,
452,
1895,
342,
941,
4865,
1223,
309,
717,
21124,
272,
432,
581,
1859,
281,
1529,
15,
309,
717,
12868,
253,
830,
941,
275,
346,
2413,
1358,
22922,
27,
21,
1518,
16,
6953,
3,
1859,
285,
840,
21124,
272,
281,
346,
2413,
1358,
22922,
27,
21,
1518,
16,
12569,
282,
16,
26,
264,
22,
17013,
68,
14,
886,
69,
23,
14,
2385,
2222,
14,
4196,
2275,
14,
66,
19,
832,
66,
2125,
67,
3348,
23,
69,
3,
313,
6434,
342,
10669,
481,
13529,
310,
8980,
264,
9113,
846,
2502,
11798,
313,
2369,
4865,
1160,
387,
512,
10,
533,
309,
5532,
22906,
313,
24845,
12,
83,
327,
36605,
10,
840,
270,
2821,
310,
1160,
6283,
15,
187,
6953,
15,
15658,
15,
1641,
187,
50276,
251,
38403,
1082,
551,
187,
50274,
2520,
15,
7645,
15,
13763,
426,
530,
18244,
15,
54,
18244,
1874,
535,
50274,
2520,
15,
12569,
282,
7456,
187,
50272,
15,
1911,
52,
35189,
9,
2520,
15,
7645,
10,
187,
50272,
15,
31473,
9,
12569,
282,
3001,
436,
15,
12569,
868,
15,
11340,
9,
12569,
282,
4027,
535,
50274,
2520,
15,
37564,
187,
50272,
15,
8002,
12894,
8850,
65,
12569,
282,
11976,
436,
15,
7645,
15,
13763,
3291,
187,
50272,
15,
7461,
36810,
3001,
9667,
15,
2808,
37428,
10252,
11798,
281,
16359,
4278,
1160,
2,
65,
4027,
535,
50274,
2520,
15,
2377,
3004,
426,
2032,
28,
187,
50276,
94,
187,
187,
12569,
282,
15,
15658,
15,
1641,
428,
9782,
2374,
10828,
1082,
1332,
187,
50276,
1251,
2374,
10828,
1082,
551,
187,
50274,
2520,
15,
788,
52,
35189,
1874,
187,
50274,
2520,
15,
6259,
13636,
426,
3497,
15,
12428,
15,
27616,
28,
187,
50274,
2520,
15,
9029,
426,
3221,
28,
187,
50276,
94,
187,
187,
12569,
282,
15,
15658,
15,
1641,
428,
755,
52,
35189,
1082,
1332,
187,
50276,
788,
52,
35189,
14850,
2991,
551,
187,
50274,
3474,
10669,
426,
436,
15,
25966,
15,
11489,
27760,
15,
3575,
6648,
15,
788,
2073,
301,
5137,
535,
50274,
2520,
15,
12569,
282,
7456,
187,
50272,
15,
788,
52,
35189,
9,
13763,
10,
187,
50272,
15,
31473,
9,
12569,
282,
3001,
436,
15,
12569,
282,
426,
16359,
13,
3635,
13,
6734,
3001,
436,
15,
29008,
13904,
13636,
6020,
187,
50276,
94,
535,
187,
34,
27,
19023,
309,
4677,
352,
562,
15,
31872,
640,
369,
2969,
428,
2502,
11798,
369,
1160,
1078,
2970,
2380,
432,
31446,
313,
23760,
28846,
2794,
16359,
481,
309,
1691,
21124,
9317,
846,
31446,
2380,
285,
3253,
2987,
1024,
15,
187,
32197,
2127,
27,
187,
6953,
15,
15658,
15,
1641,
428,
327,
38403,
1082,
1332,
187,
50276,
251,
38403,
1082,
551,
187,
50274,
2520,
15,
7645,
15,
13763,
426,
530,
18244,
15,
54,
18244,
1874,
535,
50274,
2520,
15,
12569,
282,
7456,
187,
50272,
15,
1911,
52,
35189,
9,
2520,
15,
7645,
10,
187,
50272,
15,
31473,
9,
12569,
282,
3001,
436,
15,
12569,
868,
15,
11340,
9,
12569,
282,
582,
3635,
13,
6734,
3001,
436,
15,
41794,
1992,
52,
35189,
21691,
6020,
535,
50274,
2520,
15,
2377,
3004,
426,
2032,
28,
187,
50276,
94,
187,
187,
6953,
15,
15658,
15,
1641,
428,
21124,
1992,
52,
35189,
21691,
1082,
1332,
187,
50276,
41794,
1992,
52,
35189,
21691,
14850,
2991,
551,
187,
50274,
2520,
15,
37564,
187,
50272,
15,
8002,
12894,
8850,
65,
12569,
282,
11976,
436,
15,
7645,
15,
13763,
3291,
187,
50272,
15,
7461,
36810,
3001,
9667,
15,
2808,
37428,
10252,
11798,
281,
16359,
4278,
1160,
2,
65,
4027,
187,
50276,
94,
535,
50279,
1147,
17891,
253,
308,
664,
1507,
273,
7879,
1475,
399,
23110,
518,
12304,
11747,
13,
418,
19369,
335,
1244,
2101,
15208,
13,
15101,
607,
267,
35112,
1884,
10294,
15,
187,
51,
2821,
46100,
310,
323,
253,
4288,
41498,
281,
1379,
1977,
512,
273,
616,
22710,
37403,
285,
1361,
731,
275,
4804,
616,
2032,
11329,
1634,
15,
187,
34,
20996,
13016,
1859,
310,
6179,
368,
537,
2,
187,
6080,
794,
327,
253,
3971,
281,
611,
11983,
275,
3919,
6247,
15,
19660,
80,
15,
15101,
607,
267,
35112,
15,
44239,
5236,
15,
187,
510,
2101,
15208,
19246,
2112,
253,
3971,
281,
611,
11983,
432,
19660,
80,
15,
3919,
6247,
15,
15101,
607,
267,
35112,
15,
5427,
15,
50279,
32841,
352,
407,
8330,
2164,
394,
4162,
32,
9700,
1561,
818,
3038,
13,
1668,
2909,
285,
5206,
10396,
40605,
387,
36620,
15,
187,
34,
4122,
29422,
884,
2188,
1638,
1113,
255,
9461,
5328,
35610,
31361,
10194,
16915,
1755,
534,
1912,
626,
246,
1596,
763,
285,
310,
1892,
14,
88,
10745,
15,
733,
556,
247,
45531,
13,
32124,
264,
19445,
717,
678,
9207,
37220,
4235,
274,
729,
9327,
29509,
285,
476,
320,
2879,
281,
667,
1165,
7273,
48,
5818,
2613,
281,
1056,
247,
5389,
13,
3908,
5818,
15,
50279,
50,
27,
476,
626,
4684,
281,
5447,
407,
33375,
1873,
891,
4159,
247,
2086,
326,
878,
281,
4684,
281,
5447,
281,
5669,
690,
941,
1157,
619,
33375,
1873,
417,
4684,
281,
5447,
533,
672,
891,
10141,
342,
2127,
4602,
4232,
2,
891,
1053,
626,
871,
752,
310,
1895,
1157,
513,
368,
871,
752,
310,
1895,
32,
187,
74,
897,
25879,
281,
4684,
281,
5447,
285,
619,
5447,
310,
327,
619,
27683,
285,
1060,
310,
849
] |
error rate, will be introduced in Section~\ref{sec:stability-selection}, where
we also give an overview on common error rates and some guidance on the choice
of the parameters in stability selection. Section~\ref{sec:empirical-evaluation}
presents an empirical evaluation of boosting with stability selection. In our
case study (Section~\ref{sec:data-analysis}) we will examine autism spectrum
disorder (ASD) patients and compare them to healthy controls using the boosting
approach in conjunction with stability selection. The aim is to detect
differentially expressed phenotype measurements. More specifically, we try to
assess which amino acid pathways differ between healthy subjects and ASD
patients.
\section{A Short Introduction to Boosting}
\label{sec:boosting}
Consider a generalized linear model
\begin{equation}\label{eq:lm}
\mathds{E}(y|\mathbf{x}) = h(\eta(\mathbf{x}))
\end{equation}
with outcome $y$, appropriate response function $h$ and linear predictor
$\eta(x)$. Let the latter be defined as
\begin{equation}
\label{eq:4}
\eta(\mathbf{x}) = \beta_0 + \sum_{j = 1}^p \beta_j x_{j},
\end{equation}
with covariates $\mathbf{x} = (x_1, \ldots, x_p)$, and corresponding effects $\beta_j,\
j = 0, \ldots, p$. Model fitting aims at minimizing the expected loss
$\mathds{E}(\rho(y, \mathbf{x}))$ with an appropriate loss function $\rho(y, \mathbf{x})$. The
loss function is defined by the fitting problem at hand. Thus, for example,
Gaussian regression models, i.e.\ least squares regression models, aim to
minimize the squared loss $\rho(y, \mathbf{x}) = (y - \eta(\mathbf{x}))^2$. Generalized linear
models can be obtained by maximizing the log-likelihood or, analogously, by
minimizing the negative log-likelihood function. Logistic regression models with
binary outcome, for example, can be obtained by using the negative binomial
log-likelihood
\begin{equation*}
\rho(y, \mathbf{x}) = -y \log(P(y = 1 | \mathbf{x})) +
(1 - y) \log (1 - P(y = 1 | \mathbf{x}))
\end{equation*}
as loss function or a reparametrization thereof \citep{buehl:hoth:2007}.
In practice, one cannot minimize the expected loss function. Instead, we
optimize the empirical risk function
\begin{equation}
\label{eq:2}
\mathcal{R}(\mathbf{y}, \mathbf{X}) = n^{-1} \sum_{i=1}^n \rho(y_i, \eta(\mathbf{x}_i))
\end{equation}
with observations $\mathbf{y} = (y_1, \ldots, y_n)^\top$ and $\mathbf{X} = (\mathbf{x}^\top_1, \ldots,
\mathbf{x}^\top_n)^\top$. This can be done for arbitrary loss functions by
component-wise functional gradient descent boosting \citep{buehlmann03}. The
algorithm is especially attractive owing to its intrinsic variable selection
properties \citep{Kneib:Hothorn:Tutz:modelchoice:2009,Hofner:unbiased:2011}.
One begins with a constant model $\hat{\eta}^{[0]}(\mathbf{x}_i) \equiv 0$ and computes the
residuals $\u^{[1]} = (u_1^{[1]}, \ldots, u_n^{[1]})^\top$ defined by the
negative gradient of the loss function
\begin{equation}\label{eq:1}
u_i^{[m]} := - \left. \frac{\partial \rho(y_i, \eta)}{\partial \eta} \right|_{\eta =
\hat{\eta}^{[m-1]}(\mathbf{x}_i)}
\end{equation}
evaluated at the fit of the previous iteration $\hat{\eta}^{[m-1]}(\mathbf{x}_i)$
\citep[see][]{buehlmann03,buehl:hoth:2007,Hothorn+Buehlmann+Kneib+Schmid+Hofner:mboost:2010}.
Each variable $x_1, \ldots, x_p$ is fitted separately to the residuals
$\u^{[m]}$ by least squares estimation (this is called the ``base-learner''),
and only the variable $j^*$ that describes these residuals best is updated by
adding a small percentage $\nu$ of the fit $\hat{\beta}_{j^*}$ (e.g., $\nu =
10\%$) to the current model fit, i.e.,
\begin{equation*}
\hat{\eta}^{[m]} = \hat{\eta}^{[m-1]} + \nu \cdot \hat{\beta}_{j^*}.
\end{equation*}
New residuals $\u^{[m+1]}$ are computed, and the whole procedure is iterated
until a fixed number of iterations $m = m_{\text{stop}}$ is reached. The final
model $\hat{\eta}^{[m_{\text{stop}}]}(\mathbf{x}_i)$ is defined as the sum of all models
fitted in this process. Instead of using linear base-learners (i.e., linear
effects) to fit the negative gradient vector $\u^{[m]}$ in each boosting step,
one can also specify smooth base-learners for the variables $x_j$ \cite[see
e.g.][]{Schmid:Hothorn:boosting-p-Splines}, which are then fitted by penalized
least squares estimation. As we update only one modeling component in each
boosting iteration, variables are selected by stopping the boosting procedure
after an appropriate number of iterations (``early stopping''). This number is
usually determined using cross-validation techniques \cite[see
e.g.,][]{Mayr:mstop:2012}.
\section{Stability Selection}
\label{sec:stability-selection}
A problem of many statistical learning approaches including boosting with early
stopping is that despite regularization one often ends up with relatively rich
models \citep{Mayr:mstop:2012,Meinshausen:2010}. A lot of noise variables might
be erroneously selected. To improve the selection process and to obtain an error
control for the number of falsely selected noise variables
\citet{Meinshausen:2010} proposed stability selection. This is a versatile
approach, which can be combined with all high-dimensional variable selection
approaches. Stability selection is based on sub-sampling and controls the
\emph{per-family error rate} $\mathds{E}(V)$, where $V$ is the number of false
positive variables (for more details on error rates see
Section~\ref{sec:error_rates}).
Consider a data set with $p$ predictor variables $x_j,\, j = 1, \ldots, p$ and
an outcome variable $y$. Let $S \subseteq \{1, \ldots, p\}$ be the set of signal
variables, and let $N \subseteq \{1, \ldots, p\} / S$ be the set of noise
variables. The set of variables that are selected by the statistical learning
procedure is denoted by $\hat{S}_n \subseteq \{1, \ldots, p\}$. This set
$\hat{S}_n$ can be considered to be an estimator of $S$, based on a data set
with $n$ observations. In short, for stability selection with boosting one
proceeds as follows:
\begin{enumerate}[\quad1.)]\itemsep0pt
\item \label{item:subset} Select a random subset of size $\lfloor n/2 \rfloor$
of the data, where $\lfloor x \rfloor$ denotes the largest integer $\leq x$.
\item \label{item:modelfit} Fit a boosting model and continue to increase the
number of boosting iterations $m_{\text{stop}}$ until $q$ base-learners are
selected. $\hat{S}_{\lfloor n/2 \rfloor,\, b}$ denotes the set of selected variables.
\item Repeat the steps \ref{item:subset}) and \ref{item:modelfit}) for $b = 1,
\ldots, B$.
\item Compute the relative selection frequencies
\begin{equation}\label{eq:selprob}
\hat{\pi}_j := \frac{1}{B} \sum_{b = 1}^B \mathds{I}_{\{j \in \hat{S}_{\lfloor n/2 \rfloor,\, b}\}}
\end{equation}
per variable (or actually per base-learner).
\item Select all base-learners that were selected with a frequency of at least
$\pi_{\text{thr}}$, where $\pi_{\text{thr}}$ is | redpajama | [
3775,
2281,
13,
588,
320,
5611,
275,
5238,
18078,
709,
92,
1704,
27,
296,
1430,
14,
27423,
2023,
835,
187,
664,
671,
1918,
271,
18389,
327,
1846,
2228,
4142,
285,
690,
12925,
327,
253,
4327,
187,
1171,
253,
3602,
275,
7882,
5438,
15,
5238,
18078,
709,
92,
1704,
27,
358,
5378,
474,
14,
15419,
2368,
94,
187,
81,
5957,
271,
16774,
7103,
273,
43124,
342,
7882,
5438,
15,
496,
776,
187,
5045,
1263,
313,
12612,
18078,
709,
92,
1704,
27,
2203,
14,
12792,
2311,
359,
588,
9186,
27734,
6637,
187,
3431,
2621,
313,
1719,
37,
10,
1363,
285,
7277,
731,
281,
5875,
5760,
970,
253,
43124,
187,
6772,
607,
275,
17385,
342,
7882,
5438,
15,
380,
4388,
310,
281,
2736,
187,
19623,
1365,
4469,
13466,
6341,
15,
3010,
5742,
13,
359,
1611,
281,
187,
515,
405,
534,
8898,
3527,
9130,
9184,
875,
5875,
5705,
285,
29895,
187,
34732,
15,
187,
187,
61,
4674,
92,
34,
14196,
12276,
281,
35476,
272,
94,
187,
61,
1968,
92,
1704,
27,
15467,
272,
94,
187,
187,
16628,
247,
14923,
4872,
1566,
187,
61,
2043,
92,
29813,
889,
1968,
92,
2574,
27,
20347,
94,
187,
50276,
61,
33857,
92,
38,
1603,
90,
3577,
2407,
92,
89,
2311,
426,
288,
1035,
1464,
1035,
2407,
92,
89,
26025,
187,
61,
423,
92,
29813,
94,
187,
3113,
6454,
370,
90,
1366,
4569,
2380,
1159,
370,
73,
5,
285,
4872,
23403,
187,
1202,
1464,
9,
89,
3822,
1281,
253,
6158,
320,
2931,
347,
187,
61,
2043,
92,
29813,
94,
187,
50276,
61,
1968,
92,
2574,
27,
21,
94,
187,
50276,
61,
1464,
1035,
2407,
92,
89,
2311,
426,
393,
2461,
64,
17,
559,
393,
2204,
578,
75,
426,
337,
2306,
81,
393,
2461,
64,
75,
1269,
578,
75,
2023,
187,
61,
423,
92,
29813,
94,
187,
3113,
33520,
669,
2407,
92,
89,
94,
426,
313,
89,
64,
18,
13,
393,
5589,
13,
1269,
64,
81,
4244,
285,
3969,
2538,
669,
2461,
64,
75,
1337,
187,
75,
426,
470,
13,
393,
5589,
13,
268,
1352,
10031,
13532,
13698,
387,
28699,
253,
3264,
2957,
187,
1202,
33857,
92,
38,
3713,
2859,
9,
90,
13,
393,
2407,
92,
89,
2311,
1009,
342,
271,
4569,
2957,
1159,
669,
2859,
9,
90,
13,
393,
2407,
92,
89,
17137,
380,
187,
18585,
1159,
310,
2931,
407,
253,
13532,
1895,
387,
1133,
15,
3308,
13,
323,
1650,
13,
187,
44765,
9077,
3210,
13,
891,
15,
70,
4880,
1878,
19325,
9077,
3210,
13,
4388,
281,
187,
1222,
39263,
253,
30044,
2957,
669,
2859,
9,
90,
13,
393,
2407,
92,
89,
2311,
426,
313,
90,
428,
393,
1464,
1035,
2407,
92,
89,
26025,
63,
19,
1352,
4214,
1025,
4872,
187,
19286,
476,
320,
2797,
407,
46875,
253,
2412,
14,
7513,
10202,
390,
13,
7370,
4087,
13,
407,
187,
1222,
303,
3006,
253,
4016,
2412,
14,
7513,
10202,
1159,
15,
8192,
2531,
9077,
3210,
342,
187,
26458,
6454,
13,
323,
1650,
13,
476,
320,
2797,
407,
970,
253,
4016,
47585,
187,
2808,
14,
7513,
10202,
187,
61,
2043,
92,
29813,
33029,
187,
50276,
61,
2859,
9,
90,
13,
393,
2407,
92,
89,
2311,
426,
428,
90,
393,
2808,
9,
49,
9,
90,
426,
337,
1040,
393,
2407,
92,
89,
26025,
559,
187,
50276,
9,
18,
428,
340,
10,
393,
2808,
313,
18,
428,
367,
9,
90,
426,
337,
1040,
393,
2407,
92,
89,
26025,
187,
61,
423,
92,
29813,
33029,
187,
284,
2957,
1159,
390,
247,
294,
3575,
292,
45031,
10445,
393,
10179,
554,
92,
67,
489,
12408,
27,
73,
837,
27,
8602,
7165,
187,
187,
688,
3946,
13,
581,
2550,
15338,
253,
3264,
2957,
1159,
15,
7820,
13,
359,
187,
32581,
907,
253,
16774,
2495,
1159,
187,
61,
2043,
92,
29813,
94,
187,
50276,
61,
1968,
92,
2574,
27,
19,
94,
187,
50276,
61,
1588,
92,
51,
3713,
2407,
92,
90,
2023,
393,
2407,
92,
57,
2311,
426,
295,
2497,
18,
94,
393,
2204,
578,
74,
30,
18,
2306,
79,
393,
2859,
9,
90,
64,
74,
13,
393,
1464,
1035,
2407,
92,
89,
2000,
74,
1228,
187,
61,
423,
92,
29813,
94,
187,
3113,
7313,
669,
2407,
92,
90,
94,
426,
313,
90,
64,
18,
13,
393,
5589,
13,
340,
64,
79,
25690,
3956,
5,
285,
669,
2407,
92,
57,
94,
426,
5081,
2407,
92,
89,
9616,
3956,
64,
18,
13,
393,
5589,
13,
187,
61,
2407,
92,
89,
9616,
3956,
64,
79,
25690,
3956,
1352,
831,
476,
320,
2218,
323,
10341,
2957,
3470,
407,
187,
15658,
14,
3020,
5164,
11786,
18499,
43124,
393,
10179,
554,
92,
67,
489,
12408,
8420,
2941,
7165,
380,
187,
41528,
310,
3340,
12994,
21681,
281,
697,
15276,
4778,
5438,
187,
19402,
393,
10179,
554,
92,
44,
570,
487,
27,
41,
837,
1575,
27,
53,
25374,
27,
7645,
22122,
27,
7857,
13,
41,
1171,
1216,
27,
328,
30344,
27,
7330,
7165,
187,
187,
4041,
9513,
342,
247,
3638,
1566,
669,
700,
464,
1464,
1990,
60,
17,
62,
3713,
2407,
92,
89,
2000,
74,
10,
393,
8275,
470,
5,
285,
48169,
253,
187,
40512,
780,
84,
669,
86,
36692,
18,
18095,
426,
313,
86,
64,
18,
36692,
18,
18095,
1157,
393,
5589,
13,
1484,
64,
79,
36692,
18,
62,
2311,
2850,
3956,
5,
2931,
407,
253,
187,
12373,
11786,
273,
253,
2957,
1159,
187,
61,
2043,
92,
29813,
889,
1968,
92,
2574,
27,
18,
94,
187,
50276,
86,
64,
74,
36692,
78,
18095,
3843,
428,
393,
1274,
15,
393,
1124,
464,
3214,
393,
2859,
9,
90,
64,
74,
13,
393,
1464,
15734,
3214,
393,
1464,
94,
393,
918,
34813,
1464,
426,
187,
50274,
61,
700,
464,
1464,
1990,
60,
78,
14,
18,
62,
3713,
2407,
92,
89,
2000,
74,
3117,
187,
61,
423,
92,
29813,
94,
187,
15419,
11634,
387,
253,
4944,
273,
253,
2045,
19502,
669,
700,
464,
1464,
1990,
60,
78,
14,
18,
62,
3713,
2407,
92,
89,
2000,
74,
1009,
187,
61,
10179,
554,
60,
2887,
7082,
1019,
67,
489,
12408,
8420,
2941,
13,
67,
489,
12408,
27,
73,
837,
27,
8602,
13,
41,
837,
1575,
12,
35,
489,
12408,
8420,
12,
44,
570,
487,
12,
10859,
7893,
12,
41,
1171,
1216,
27,
1814,
80,
493,
27,
7199,
7165,
187,
11837,
4778,
370,
89,
64,
18,
1157,
393,
5589,
13,
1269,
64,
81,
5,
310,
14662,
11794,
281,
253,
42435,
187,
1202,
86,
36692,
78,
45114,
407,
1878,
19325,
13418,
313,
2520,
310,
1925,
253,
20890,
4793,
14,
282,
47612,
6267,
582,
187,
395,
760,
253,
4778,
370,
75,
18636,
326,
8631,
841,
42435,
1682,
310,
9300,
407,
187,
8052,
247,
1355,
7155,
669,
3023,
5,
273,
253,
4944,
669,
700,
464,
2461,
2026,
75,
3503,
724,
313,
70,
15,
72,
904,
669,
3023,
426,
187,
740,
19182,
7884,
281,
253,
1655,
1566,
4944,
13,
891,
15,
70,
904,
187,
61,
2043,
92,
29813,
33029,
187,
50276,
61,
700,
464,
1464,
1990,
60,
78,
18095,
426,
393,
700,
464,
1464,
1990,
60,
78,
14,
18,
18095,
559,
393,
3023,
393,
3830,
393,
700,
464,
2461,
2026,
75,
3503,
7165,
187,
61,
423,
92,
29813,
33029,
187,
4257,
42435,
669,
86,
36692,
78,
12,
18,
45114,
403,
10302,
13,
285,
253,
2644,
5199,
310,
10040,
456,
187,
27390,
247,
4229,
1180,
273,
25142,
370,
78,
426,
278,
1126,
1156,
92,
13121,
4018,
310,
4925,
15,
380,
2457,
187,
7645,
669,
700,
464,
1464,
1990,
60,
78,
1126,
1156,
92,
13121,
599,
62,
3713,
2407,
92,
89,
2000,
74,
1009,
310,
2931,
347,
253,
2020,
273,
512,
3210,
187,
71,
2166,
275,
436,
1232,
15,
7820,
273,
970,
4872,
2613,
14,
29343,
398,
313,
74,
15,
70,
904,
4872,
187,
29907,
10,
281,
4944,
253,
4016,
11786,
4972,
669,
86,
36692,
78,
45114,
275,
1016,
43124,
3213,
13,
187,
531,
476,
671,
13199,
6032,
2613,
14,
29343,
398,
323,
253,
4903,
370,
89,
64,
75,
5,
393,
41766,
60,
2887,
187,
70,
15,
72,
15,
7082,
1019,
10859,
7893,
27,
41,
837,
1575,
27,
15467,
272,
14,
81,
14,
37840,
1100,
2023,
534,
403,
840,
14662,
407,
29697,
1025,
187,
38462,
19325,
13418,
15,
1284,
359,
5731,
760,
581,
14053,
4445,
275,
1016,
187,
15467,
272,
19502,
13,
4903,
403,
4236,
407,
15910,
253,
43124,
5199,
187,
6438,
271,
4569,
1180,
273,
25142,
313,
5190,
18579,
15910,
6267,
481,
831,
1180,
310,
187,
27978,
3413,
970,
2831,
14,
29599,
5609,
393,
41766,
60,
2887,
187,
70,
15,
72,
904,
7082,
1019,
6791,
83,
27,
78,
13121,
27,
6755,
7165,
187,
187,
61,
4674,
92,
998,
1430,
31851,
94,
187,
61,
1968,
92,
1704,
27,
296,
1430,
14,
27423,
94,
187,
187,
34,
1895,
273,
1142,
7605,
4715,
7274,
1690,
43124,
342,
2393,
187,
11769,
2784,
310,
326,
5747,
37820,
581,
2223,
7637,
598,
342,
4942,
6793,
187,
19286,
393,
10179,
554,
92,
6791,
83,
27,
78,
13121,
27,
6755,
13,
5072,
968,
25531,
257,
27,
7199,
7165,
329,
2257,
273,
6046,
4903,
1537,
187,
1257,
41587,
4236,
15,
1916,
3157,
253,
5438,
1232,
285,
281,
4044,
271,
2228,
187,
8519,
323,
253,
1180,
273,
39380,
4236,
6046,
4903,
187,
61,
10179,
292,
92,
5072,
968,
25531,
257,
27,
7199,
94,
4081,
7882,
5438,
15,
831,
310,
247,
30708,
187,
6772,
607,
13,
534,
476,
320,
5678,
342,
512,
1029,
14,
6967,
4778,
5438,
187,
6772,
3844,
15,
659,
1430,
5438,
310,
1754,
327,
749,
14,
48027,
285,
5760,
253,
187,
61,
37236,
92,
468,
14,
11807,
2228,
2281,
94,
669,
33857,
92,
38,
1603,
55,
4244,
835,
370,
55,
5,
310,
253,
1180,
273,
3221,
187,
10247,
4903,
313,
1542,
625,
4278,
327,
2228,
4142,
923,
187,
12612,
18078,
709,
92,
1704,
27,
3775,
64,
27619,
38331,
187,
187,
16628,
247,
941,
873,
342,
370,
81,
5,
23403,
4903,
370,
89,
64,
75,
14101,
480,
426,
337,
13,
393,
5589,
13,
268,
5,
285,
187,
266,
6454,
4778,
370,
90,
1352,
1281,
370,
52,
393,
11861,
9121,
18,
13,
393,
5589,
13,
268,
10952,
320,
253,
873,
273,
2625,
187,
39448,
13,
285,
1339,
370,
47,
393,
11861,
9121,
18,
13,
393,
5589,
13,
268,
12499,
1227,
322,
5,
320,
253,
873,
273,
6046,
187,
39448,
15,
380,
873,
273,
4903,
326,
403,
4236,
407,
253,
7605,
4715,
187,
45760,
310,
17007,
407,
669,
700,
92,
52,
2000,
79,
393,
11861,
9121,
18,
13,
393,
5589,
13,
268,
19562,
831,
873,
187,
1202,
700,
92,
52,
2000,
79,
5,
476,
320,
2783,
281,
320,
271,
29107,
273,
370,
52,
1366,
1754,
327,
247,
941,
873,
187,
3113,
370,
79,
5,
7313,
15,
496,
2159,
13,
323,
7882,
5438,
342,
43124,
581,
187,
856,
2638,
84,
347,
3637,
27,
187,
187,
61,
2043,
92,
14379,
5034,
28231,
3362,
18,
2698,
9955,
4835,
33032,
17,
431,
187,
61,
4835,
393,
1968,
92,
4835,
27,
6040,
94,
16551,
247,
3632,
8578,
273,
1979,
669,
30489,
295,
16,
19,
393,
30266,
5,
187,
50276,
1171,
253,
941,
13,
835,
669,
30489,
1269,
393,
30266,
5,
12853,
253,
6253,
7007,
669,
3040,
1269,
1352,
187,
61,
4835,
393,
1968,
92,
4835,
27,
2307,
813,
262,
94,
40632,
247,
43124,
1566,
285,
4035,
281,
2572,
253,
187,
50276,
9133,
273,
43124,
25142,
370,
78,
1126,
1156,
92,
13121,
4018,
1919,
370,
82,
5,
2613,
14,
29343,
398,
403,
187,
50276,
16191,
15,
669,
700,
92,
52,
4689,
30489,
295,
16,
19,
393,
30266,
14101,
270,
724,
12853,
253,
873,
273,
4236,
4903,
15,
187,
61,
4835,
37780,
253,
5018,
393,
709,
92,
4835,
27,
6040,
2311,
285,
393,
709,
92,
4835,
27,
2307,
813,
262,
2311,
323,
370,
67,
426,
337,
13,
187,
50276,
61,
5589,
13,
378,
1352,
187,
61,
4835,
45947,
253,
4103,
5438,
11383,
187,
50276,
61,
2043,
92,
29813,
889,
1968,
92,
2574,
27,
2034,
22275,
94,
187,
50274,
61,
700,
464,
2059,
2000,
75,
3843,
393,
1124,
92,
18,
1217,
35,
94,
393,
2204,
578,
67,
426,
337,
2306,
35,
393,
33857,
92,
42,
4689,
92,
75,
393,
249,
393,
700,
92,
52,
4689,
30489,
295,
16,
19,
393,
30266,
14101,
270,
889,
599,
187,
50276,
61,
423,
92,
29813,
94,
187,
50276,
468,
4778,
313,
263,
2686,
591,
2613,
14,
282,
47612,
481,
187,
61,
4835,
16551,
512,
2613,
14,
29343,
398,
326,
497,
4236,
342,
247,
4294,
273,
387,
1878,
187,
50276,
1202,
2059,
1126,
1156,
92,
394,
83,
12460,
835,
669,
2059,
1126,
1156,
92,
394,
83,
4018,
310
] |
of places that brought back good memories. (Including an Amish buggy and horse along the road.) He didn’t even need his GPS unit today at all. Upon arriving at his destination this evening, he will have traveled about 1000 miles today and around 5800 total miles. He will have touched 38 states so far. He will be spending the night in Luverne, MN not far from where he lived for a short time as a child, and expects to arrive around 2:00 – 2:30 a.m.
His favorite familiar face to see today was his son, Kyle in Chicago. He has not seen Kyle since he left to study for a semester in Ireland back in January. They met at what Mark believes must be the largest McDonalds in the world for about 45 minutes, and talked about life, love, and this awesome trip.
Mark also wanted to give a shout out to the guy from Maine who helped him get back on track when he got lost and who owns a very unique bike. He cannot describe it online, but you can ask him about it when he gets back.
Mark wanted to let everyone know that he has had many hours to pray for Flood and for the many needs they have while riding through this awesome country. If you haven’t taken time to donate yet, please do so. They really need our help, and that’s what this ride is all about.
Thanks for all your prayers! Listen to KLOVE Monday morning between 8 and 9 for an “on the road” interview.
Mark left Luverne, MN this morning around 9:15 local time. After driving for a couple of hours, he stopped and called in to Calvary Bible Church to say “hello” to the 1st service congregation on speakerphone. At his stop, he talked with a guy named Phil who was very excited to hear about the trip and said he would definitely be donating to Flood. Once he was about 30 – 40 minutes down the road, he realized his wallet was missing and had to turn around and go back. He found the wallet on the side of the road and nothing was missing. A few miles later he stopped and called in to the 2nd service congregation at Calvary. The cheers and encouragement from everyone gave his spirits a big boost. There were a few drops of rain while he was on the phone, but it quickly stopped.
The weather was very hot and humid, so at one of his stops, he had taken off his gloves and laid them on top of his bag, only to forget about them. When he went to put them back on, one was missing. He noticed he was getting very low on gas and had not seen any stations. Finally seeing a place to stop, he ran out of gas 3 miles short of the station and coasted to a stop in someone’s driveway in South Dakota. A man named Shawn quickly came outside and asked if he needed help and drove him the 3 miles to a gas station to get gas. Shawn also filled up all of Mark’s water bottles and offered him dinner (which he politely declined for time’s sake). When he was getting ready to leave, Shawn said, “Hey, is that your glove?” His missing glove was hanging under his windshield and had stayed there for 400 miles.
By the end of the day he will have traveled 1050 miles and touched 6 states. (IA, NE, SD, ND, WY, & MT) Only 3 more to go! He is planning to land in Billings, MT tonight around 2:00 a.m. Mark said he has not had trouble with getting sleepy today, but his body is exhausted. He is definitely looking forward to getting some sleep and much needed rest on Tuesday. Please keep praying for safety as fatigue is definitely a factor for this last stretch.
Thanks to Phil and Shawn for being the men of Day 7.
Just before Mark entered into Wyoming, a severe thunderstorm hit with very heavy rains and lots of thunder and lightening. He had to pull into a station to wait for the storm to pass as the lightning was all around him. This is the first time the weather has been an issue and cost him some time.
Written by a gentleman that heard about the ride and has been following daily!
Ode to the Goal: 48 in 8.
Mark takes his bike to the high road.
Mark looks ahead and not at the past.
He rides for God; he rides his best.
He’s moving fast; first East, then West.
Pledges were made all for good cause.
And with that in mind he takes no pause.
His head is down as he slips through space.
The motor is steady at a predictable pace.
Through the nights and back roads not too fast.
He saves his speed for “rest stops” and gas.
Remembering still the goal: 48 in 8.
And when all is done, he’ll give God the Glory.
48 in 8 is now a reality! At 10:00 PM Pacific time, July 7, 2008 I rode into Pendleton, Oregon safe and sound.
7 Days, 17 hours and 50 min.
Murdered 87,535 bugs with my bike, helmet and face.
What a trip! I can hardly put into words what just happened these past eight days. I can only say that it is by Gods grace and many people’s prayers that I was able to complete this journey.
I saw that we have the most diverse and beautiful country in the world. Wow, we have an awesome Creator. I met some fantastic people along the way that really prove there is still that awesome American spirit.
Through all the exhaustion, aches and pains, motorcycle fires, stolen money, near deer misses and even a near pig miss along the road, it has been a pleasure to ride for the cause of FLOOD.
What they are doing each and every week to bring hope to the hopeless is a far greater feat than what I have done these past few days. 48 in 8 is over but Floods work is only beginning. Will you pray for them? Will you personally get involved if you are in the Bakersfield area? Will you consider supporting them financially? What I have done these past few days is in the past. What Flood is doing will last for an eternity. What will you do?
God bless you and thank you for all your support, prayers, and encouragement. I couldn’t have done it without you.<|endoftext|>
package io.cdap.plugin.bigquery.stepsdesign;
import io.cdap.e2e.pages.actions.CdfBigQueryPropertiesActions;
import io.cdap.e2e.pages.actions.CdfStudioActions;
import io.cdap.e2e.pages.locators.CdfStudioLocators;
import io.cdap.e2e.utils.BigQueryClient;
import io.cdap.e2e.utils.ConstantsUtil;
import io.cdap.e2e.utils.ElementHelper;
import io.cdap.e2e.utils.PluginPropertyUtils;
import io.cdap.e2e.utils.SeleniumHelper;
import io.cdap.plugin.common.stepsdesign.TestSetupHooks;
import io.cdap.plugin.utils.E2EHelper;
import io.cdap.plugin.utils.E2ETestConstants;
import io.cucumber.java.en.Then;
import org.apache.commons.lang3.StringUtils;
import org.junit.Assert;
import stepsdesign.BeforeActions;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Optional;
import java.util.UUID;
/**
* BigQuery related common stepDesigns.
*/
public class BigQueryBase implements E2EHelper {
static {
SeleniumHelper.getPropertiesLocators(CdfStudioLocators.class);
}
@Then("Enter BigQuery property reference name")
public void enterBigQueryPropertyReferenceName() {
CdfBigQueryPropertiesActions.enterBigQueryReferenceName("BQ_Ref_" + UUID.randomUUID());
}
@Then("Enter BigQuery property projectId {string}")
public void enterBigQueryPropertyProjectId(String projectId) throws IOException {
CdfBigQueryPropertiesActions.enterProjectId(PluginPropertyUtils.pluginProp(projectId));
}
@Then("Enter BigQuery property datasetProjectId {string}")
public void enterBigQueryPropertyDatasetProjectId(String datasetProjectId) throws IOException {
CdfBigQueryPropertiesActions.enterDatasetProjectId(PluginPropertyUtils.pluginProp(datasetProjectId));
}
@Then("Enter BigQuery property dataset {string}")
public void enterBigQueryPropertyDataset(String dataset) {
CdfBigQueryPropertiesActions.enterBigQueryDataset(PluginPropertyUtils.pluginProp(dataset));
}
@Then("Enter BigQuery property table {string}")
public void enterBigQueryPropertyTable(String table) {
CdfBigQueryPropertiesActions.enterBigQueryTable(PluginPropertyUtils.pluginProp(table));
}
@Then("Enter BiqQuery property encryption key name {string} if cmek is enabled")
public void enterBiqQueryPropertyEncryptionKeyNameIfCmekIsEnabled(String cmek) throws IOException | redpajama | [
273,
5053,
326,
3982,
896,
1175,
12959,
15,
313,
688,
6547,
271,
3052,
763,
7505,
4233,
285,
8815,
2112,
253,
3971,
2698,
754,
1904,
457,
85,
1014,
878,
521,
21303,
3943,
3063,
387,
512,
15,
15797,
20948,
387,
521,
12095,
436,
7237,
13,
344,
588,
452,
19624,
670,
9098,
6574,
3063,
285,
1475,
9135,
361,
2264,
6574,
15,
754,
588,
452,
14435,
6480,
3054,
594,
2080,
15,
754,
588,
320,
9100,
253,
2360,
275,
7511,
332,
570,
13,
26583,
417,
2080,
432,
835,
344,
6940,
323,
247,
2159,
673,
347,
247,
1429,
13,
285,
21973,
281,
12666,
1475,
374,
27,
361,
1108,
374,
27,
1229,
247,
15,
78,
15,
187,
8389,
7583,
7615,
2454,
281,
923,
3063,
369,
521,
3347,
13,
25856,
275,
8068,
15,
754,
556,
417,
2326,
25856,
1580,
344,
1669,
281,
1263,
323,
247,
33644,
275,
11011,
896,
275,
4247,
15,
1583,
1313,
387,
752,
4744,
11532,
1364,
320,
253,
6253,
30946,
2814,
1397,
275,
253,
1533,
323,
670,
5329,
2909,
13,
285,
10062,
670,
1495,
13,
2389,
13,
285,
436,
13103,
7408,
15,
187,
11063,
671,
3078,
281,
1918,
247,
11557,
562,
281,
253,
5599,
432,
22366,
665,
6518,
779,
755,
896,
327,
3540,
672,
344,
1694,
3663,
285,
665,
21186,
247,
1077,
4451,
13696,
15,
754,
2550,
6266,
352,
3909,
13,
533,
368,
476,
1642,
779,
670,
352,
672,
344,
4850,
896,
15,
187,
11063,
3078,
281,
1339,
4130,
871,
326,
344,
556,
574,
1142,
3038,
281,
12518,
323,
48613,
285,
323,
253,
1142,
3198,
597,
452,
1223,
15150,
949,
436,
13103,
2586,
15,
1310,
368,
6468,
457,
85,
2668,
673,
281,
31656,
2568,
13,
4496,
513,
594,
15,
1583,
1663,
878,
776,
1361,
13,
285,
326,
457,
84,
752,
436,
9549,
310,
512,
670,
15,
187,
8061,
323,
512,
634,
24861,
2,
33851,
281,
47669,
19252,
7216,
4131,
875,
854,
285,
898,
323,
271,
773,
251,
253,
3971,
668,
4572,
15,
187,
11063,
1669,
7511,
332,
570,
13,
26583,
436,
4131,
1475,
898,
27,
1010,
1980,
673,
15,
2732,
6276,
323,
247,
4564,
273,
3038,
13,
344,
6331,
285,
1925,
275,
281,
2263,
39381,
13534,
6412,
281,
1333,
773,
25521,
668,
281,
253,
337,
296,
2579,
35997,
327,
14925,
6198,
15,
2058,
521,
3523,
13,
344,
10062,
342,
247,
5599,
4907,
6778,
665,
369,
1077,
9049,
281,
4089,
670,
253,
7408,
285,
753,
344,
651,
7964,
320,
1053,
839,
281,
48613,
15,
7243,
344,
369,
670,
1884,
1108,
3387,
2909,
1066,
253,
3971,
13,
344,
8156,
521,
23138,
369,
5816,
285,
574,
281,
1614,
1475,
285,
564,
896,
15,
754,
1119,
253,
23138,
327,
253,
1930,
273,
253,
3971,
285,
2717,
369,
5816,
15,
329,
1643,
6574,
1996,
344,
6331,
285,
1925,
275,
281,
253,
374,
2109,
2579,
35997,
387,
2263,
39381,
15,
380,
1161,
398,
285,
31868,
432,
4130,
3534,
521,
19851,
247,
1943,
9510,
15,
1707,
497,
247,
1643,
15323,
273,
9313,
1223,
344,
369,
327,
253,
4481,
13,
533,
352,
4541,
6331,
15,
187,
510,
8588,
369,
1077,
3511,
285,
33595,
13,
594,
387,
581,
273,
521,
14545,
13,
344,
574,
2668,
745,
521,
26936,
285,
10090,
731,
327,
1755,
273,
521,
7351,
13,
760,
281,
7740,
670,
731,
15,
2091,
344,
2427,
281,
1691,
731,
896,
327,
13,
581,
369,
5816,
15,
754,
8344,
344,
369,
2970,
1077,
1698,
327,
3678,
285,
574,
417,
2326,
667,
10988,
15,
6610,
6523,
247,
1659,
281,
3523,
13,
344,
6337,
562,
273,
3678,
495,
6574,
2159,
273,
253,
4660,
285,
8852,
264,
281,
247,
3523,
275,
3095,
457,
84,
35664,
275,
3684,
23528,
15,
329,
637,
4907,
46600,
4541,
2210,
3345,
285,
2546,
604,
344,
3058,
1361,
285,
12668,
779,
253,
495,
6574,
281,
247,
3678,
4660,
281,
755,
3678,
15,
46600,
671,
6898,
598,
512,
273,
4744,
457,
84,
1824,
20321,
285,
5907,
779,
8955,
313,
4609,
344,
45646,
13072,
323,
673,
457,
84,
13232,
481,
2091,
344,
369,
2970,
4704,
281,
3553,
13,
46600,
753,
13,
773,
8262,
13,
310,
326,
634,
38081,
7721,
3032,
5816,
38081,
369,
14203,
762,
521,
5448,
32770,
285,
574,
11791,
627,
323,
9166,
6574,
15,
187,
3463,
253,
990,
273,
253,
1388,
344,
588,
452,
19624,
884,
1235,
6574,
285,
14435,
721,
3054,
15,
313,
5236,
13,
8973,
13,
7388,
13,
21588,
13,
411,
58,
13,
708,
15964,
10,
7214,
495,
625,
281,
564,
2,
754,
310,
7219,
281,
2659,
275,
7641,
723,
13,
15964,
11608,
1475,
374,
27,
361,
247,
15,
78,
15,
4744,
753,
344,
556,
417,
574,
7596,
342,
2970,
48849,
3063,
13,
533,
521,
2133,
310,
20802,
15,
754,
310,
7964,
2819,
3579,
281,
2970,
690,
4600,
285,
1199,
3058,
1551,
327,
7948,
15,
7764,
1978,
33632,
323,
5252,
347,
18693,
310,
7964,
247,
2803,
323,
436,
1390,
13726,
15,
187,
8061,
281,
6778,
285,
46600,
323,
1146,
253,
1821,
273,
6258,
818,
15,
187,
6300,
1078,
4744,
5966,
715,
36582,
13,
247,
5460,
24511,
25576,
4352,
342,
1077,
5536,
42229,
285,
8783,
273,
24511,
285,
1708,
2980,
15,
754,
574,
281,
3785,
715,
247,
4660,
281,
3343,
323,
253,
9902,
281,
1509,
347,
253,
25033,
369,
512,
1475,
779,
15,
831,
310,
253,
806,
673,
253,
8588,
556,
644,
271,
2523,
285,
2105,
779,
690,
673,
15,
187,
39557,
407,
247,
21205,
326,
3735,
670,
253,
9549,
285,
556,
644,
1563,
5312,
2,
187,
48,
615,
281,
253,
3617,
267,
27,
5693,
275,
854,
15,
187,
11063,
3936,
521,
13696,
281,
253,
1029,
3971,
15,
187,
11063,
4453,
6386,
285,
417,
387,
253,
2469,
15,
187,
1328,
28742,
323,
2656,
28,
344,
28742,
521,
1682,
15,
187,
1328,
457,
84,
4886,
3809,
28,
806,
5791,
13,
840,
4255,
15,
187,
49,
1070,
2510,
497,
1160,
512,
323,
1175,
2847,
15,
187,
1898,
342,
326,
275,
2564,
344,
3936,
642,
19309,
15,
187,
8389,
1481,
310,
1066,
347,
344,
42282,
949,
2317,
15,
187,
510,
5694,
310,
11792,
387,
247,
28826,
13870,
15,
187,
18852,
253,
15513,
285,
896,
13939,
417,
1512,
3809,
15,
187,
1328,
26866,
521,
3885,
323,
773,
1120,
14545,
668,
285,
3678,
15,
187,
21914,
272,
1335,
253,
4736,
27,
5693,
275,
854,
15,
187,
1898,
672,
512,
310,
2218,
13,
344,
457,
620,
1918,
2656,
253,
4051,
590,
15,
187,
2385,
275,
854,
310,
1024,
247,
6612,
2,
2058,
884,
27,
361,
5365,
11553,
673,
13,
4163,
818,
13,
4695,
309,
22461,
715,
367,
423,
10747,
13,
15427,
4999,
285,
3590,
15,
187,
24,
23264,
13,
1722,
3038,
285,
2456,
1054,
15,
187,
24354,
3466,
11422,
13,
42980,
19775,
342,
619,
13696,
13,
26358,
285,
2454,
15,
187,
1276,
247,
7408,
2,
309,
476,
10693,
1691,
715,
3000,
752,
816,
4592,
841,
2469,
4314,
1897,
15,
309,
476,
760,
1333,
326,
352,
310,
407,
38778,
14426,
285,
1142,
952,
457,
84,
24861,
326,
309,
369,
2104,
281,
3426,
436,
9455,
15,
187,
42,
3047,
326,
359,
452,
253,
954,
11117,
285,
5389,
2586,
275,
253,
1533,
15,
42340,
13,
359,
452,
271,
13103,
40325,
15,
309,
1313,
690,
15143,
952,
2112,
253,
1039,
326,
1663,
5276,
627,
310,
1335,
326,
13103,
2448,
5968,
15,
187,
18852,
512,
253,
29775,
13,
913,
1041,
285,
31991,
13,
30649,
19333,
13,
15661,
2583,
13,
2822,
24563,
38771,
285,
1014,
247,
2822,
8393,
2985,
2112,
253,
3971,
13,
352,
556,
644,
247,
11284,
281,
9549,
323,
253,
2847,
273,
401,
8372,
3519,
15,
187,
1276,
597,
403,
2509,
1016,
285,
1046,
2129,
281,
3324,
3524,
281,
253,
29281,
310,
247,
2080,
3687,
8151,
685,
752,
309,
452,
2218,
841,
2469,
1643,
1897,
15,
5693,
275,
854,
310,
689,
533,
48613,
84,
789,
310,
760,
5068,
15,
7395,
368,
12518,
323,
731,
32,
7395,
368,
11697,
755,
3206,
604,
368,
403,
275,
253,
378,
7380,
3423,
2170,
32,
7395,
368,
1908,
8109,
731,
27576,
32,
1737,
309,
452,
2218,
841,
2469,
1643,
1897,
310,
275,
253,
2469,
15,
1737,
48613,
310,
2509,
588,
1390,
323,
271,
40432,
15,
1737,
588,
368,
513,
32,
187,
13618,
11736,
368,
285,
5717,
368,
323,
512,
634,
1329,
13,
24861,
13,
285,
31868,
15,
309,
4571,
457,
85,
452,
2218,
352,
1293,
368,
15,
50279,
187,
10708,
17908,
15,
2428,
522,
15,
16895,
15,
2760,
7267,
15,
20528,
19417,
28,
187,
187,
2948,
17908,
15,
2428,
522,
15,
70,
19,
70,
15,
21505,
15,
3518,
15,
36,
4989,
5178,
8053,
18401,
40013,
28,
187,
2948,
17908,
15,
2428,
522,
15,
70,
19,
70,
15,
21505,
15,
3518,
15,
36,
4989,
39701,
40013,
28,
187,
2948,
17908,
15,
2428,
522,
15,
70,
19,
70,
15,
21505,
15,
9450,
2392,
15,
36,
4989,
39701,
16395,
2392,
28,
187,
2948,
17908,
15,
2428,
522,
15,
70,
19,
70,
15,
18833,
15,
5178,
8053,
8975,
28,
187,
2948,
17908,
15,
2428,
522,
15,
70,
19,
70,
15,
18833,
15,
31171,
12804,
28,
187,
2948,
17908,
15,
2428,
522,
15,
70,
19,
70,
15,
18833,
15,
7050,
19570,
28,
187,
2948,
17908,
15,
2428,
522,
15,
70,
19,
70,
15,
18833,
15,
23836,
8324,
19611,
28,
187,
2948,
17908,
15,
2428,
522,
15,
70,
19,
70,
15,
18833,
15,
52,
23622,
1514,
19570,
28,
187,
2948,
17908,
15,
2428,
522,
15,
16895,
15,
9784,
15,
20528,
19417,
15,
5089,
37632,
40568,
84,
28,
187,
2948,
17908,
15,
2428,
522,
15,
16895,
15,
18833,
15,
38,
19,
38,
19570,
28,
187,
2948,
17908,
15,
2428,
522,
15,
16895,
15,
18833,
15,
38,
19,
2025,
383,
31171,
28,
187,
2948,
17908,
15,
68,
1028,
2764,
15,
5594,
15,
257,
15,
5872,
28,
187,
2948,
4955,
15,
8418,
15,
34870,
15,
8700,
20,
15,
2776,
19611,
28,
187,
2948,
4955,
15,
31265,
15,
21659,
28,
187,
2948,
5018,
19417,
15,
8639,
40013,
28,
187,
187,
2948,
7626,
15,
900,
15,
38487,
28,
187,
2948,
7626,
15,
1156,
15,
21595,
6958,
10069,
28,
187,
2948,
7626,
15,
8906,
15,
6958,
28,
187,
2948,
7626,
15,
8906,
15,
36301,
28,
187,
2948,
7626,
15,
8906,
15,
54,
18244,
28,
187,
187,
6930,
187,
475,
7967,
8053,
2905,
1846,
3213,
23045,
84,
15,
187,
1738,
187,
4387,
966,
7967,
8053,
8932,
17930,
444,
19,
38,
19570,
551,
535,
50276,
4659,
551,
187,
50274,
52,
23622,
1514,
19570,
15,
788,
18401,
16395,
2392,
9,
36,
4989,
39701,
16395,
2392,
15,
2437,
558,
187,
50276,
94,
535,
50276,
33,
5872,
1587,
15886,
7967,
8053,
2867,
3806,
1416,
2807,
187,
50276,
4387,
2991,
4901,
5178,
8053,
8324,
12905,
2402,
1082,
551,
187,
50274,
36,
4989,
5178,
8053,
18401,
40013,
15,
9553,
5178,
8053,
12905,
2402,
1587,
35,
50,
64,
7676,
25233,
559,
530,
18244,
15,
14719,
54,
18244,
6020,
187,
50276,
94,
535,
50276,
33,
5872,
1587,
15886,
7967,
8053,
2867,
2199,
2618,
551,
2703,
94,
2807,
187,
50276,
4387,
2991,
4901,
5178,
8053,
8324,
11695,
2618,
9,
2776,
2199,
2618,
10,
12326,
33638,
551,
187,
50274,
36,
4989,
5178,
8053,
18401,
40013,
15,
9553,
11695,
2618,
9,
23836,
8324,
19611,
15,
16895,
21389,
9,
10408,
2618,
4027,
187,
50276,
94,
535,
50276,
33,
5872,
1587,
15886,
7967,
8053,
2867,
10895,
11695,
2618,
551,
2703,
94,
2807,
187,
50276,
4387,
2991,
4901,
5178,
8053,
8324,
14362,
23456,
11695,
2618,
9,
2776,
10895,
11695,
2618,
10,
12326,
33638,
551,
187,
50274,
36,
4989,
5178,
8053,
18401,
40013,
15,
9553,
14362,
23456,
11695,
2618,
9,
23836,
8324,
19611,
15,
16895,
21389,
9,
42429,
11695,
2618,
4027,
187,
50276,
94,
535,
50276,
33,
5872,
1587,
15886,
7967,
8053,
2867,
10895,
551,
2703,
94,
2807,
187,
50276,
4387,
2991,
4901,
5178,
8053,
8324,
14362,
23456,
9,
2776,
10895,
10,
551,
187,
50274,
36,
4989,
5178,
8053,
18401,
40013,
15,
9553,
5178,
8053,
14362,
23456,
9,
23836,
8324,
19611,
15,
16895,
21389,
9,
42429,
4027,
187,
50276,
94,
535,
50276,
33,
5872,
1587,
15886,
7967,
8053,
2867,
2829,
551,
2703,
94,
2807,
187,
50276,
4387,
2991,
4901,
5178,
8053,
8324,
3235,
9,
2776,
2829,
10,
551,
187,
50274,
36,
4989,
5178,
8053,
18401,
40013,
15,
9553,
5178,
8053,
3235,
9,
23836,
8324,
19611,
15,
16895,
21389,
9,
2420,
4027,
187,
50276,
94,
535,
50276,
33,
5872,
1587,
15886,
6943,
82,
8053,
2867,
24589,
2234,
1416,
551,
2703,
94,
604,
260,
1405,
76,
310,
11410,
2807,
187,
50276,
4387,
2991,
4901,
16621,
82,
8053,
8324,
13502,
18008,
4814,
2402,
2042,
36,
1405,
76,
2513,
19157,
9,
2776,
260,
1405,
76,
10,
12326,
33638
] |
in with one part into the river, and the other part was on that steep slope, so I wrapped it around my waist to be able to raise my face above the water level. I held him by being behind him, and he was leaning on my legs until the firefighters arrived,” told the brave policeman Dimic.
According to him, when the firefighters came, one of them went down the riverbed and they slung the ladder. After that, with the help of a rope, they pulled the man out of the riverbed.
The Emergency Medical Service of Banja Luka was immediately informed about everything, which provided medical assistance to this man who had hypothermia and transported him to the University Clinical Center (UCC) of Republika Srpska (RS), where he was taken care of.
The unfortunate man, while talking to the police, said that he was a resident of the mentioned settlement who was just walking that morning and accidentally slipped and fell into the Crkvena river, Nezavisne writes.
Tags: #BiH, #man, #positive, #river<|endoftext|>Subject Access Requests can be completed by a number of different methods. They are however often a little difficult to complete in a quick and easy manner, regardless of which method you choose.
You can use companies like iGPR who offer a service to create solicitor SAR requests directly from SystmOne.
You can use the Ardens 'Subject Access Request' template to record when a SAR has been requested. There are also useful links on the template to forms and risk assessment protocols.
To identify patients who have requested a SAR but have not been given a copy yet, go to Clinical Reporting > Ardens > Registers > Subject Access Request.<|endoftext|>Q: Can anyone give me any idea Nftable rules 1.Accept incoming TCP connections ssh (port 22), with a rate limit of 30 connections per minute, per host, and a burst of 5 connections
2.Log accepted ssh connections.
A: The first rule in the input chain is usually:
ct state established,related counter accept
So it should be sufficient to add the rule:
ct state new tcp dport 22 limit rate 30/minute burst 35 packets log prefix "[nft accept ssh] " counter accept
Putting it all together:
table inet filter {
chain input {
type filter hook input priority filter; policy drop;
ct state established,related counter accept
ct state new tcp dport 22 limit rate 30/minute burst 35 packets log prefix "[nft accept ssh] " counter accept
}
}
<|endoftext|>Q: how to loop gif with Sprite function Sky() {
tSky = new Sprite(scene, "./bg_sky.gif", 800, 700)
tSky.setSpeed(0)
tSky.setPosition(400, 300);
return tSky
}
I create game but I can't animate this GIF in scene
when I set speed it will slide the scene and the scene will be gray instead.
<|endoftext|>Elaeodendron glaucum är en benvedsväxtart som först beskrevs av Christen Friis Rottbøll, och fick sitt nu gällande namn av Christiaan Hendrik Persoon. Elaeodendron glaucum ingår i släktet Elaeodendron och familjen Celastraceae.
Underarter
Arten delas in i följande underarter:
E. g. cochinchinensis
E. g. montanum
Källor
Externa länkar
Kärlväxter
glaucum<|endoftext|>You’ll notice that most of the Monday, Wednesday and Friday workouts have two part. The first one is called Max Effort, and it is designed to go as heavy as possible with one exercise for very low volume. These are designed to challenge everyone to push themselves to higher levels of strength and PRs without having to worry about super high volume or time.
Unless otherwise noted, these are 3 total sets of descending weight (after warming up and working up to your max weight) Stability should be about 6-8 reps on the first set, with strength/power around 4-6. After that max effort first set, you drop down in weight, do another max effort set (about 1-2 more reps), and then drop down again for the 3rd set.
Example: I work up to double 28kg in Military Press and do 6 reps. Then the 2nd set I’ll use 24s and try to do ~8 reps. Then 3rd set will be 20s for about ~10 reps.
After the Max Effort part, there will be a second part of the workout usually with different exercises and movement. There are a few super short MEs with conditioning exercises that are meant to be full intensity such as 100 JRDs AFAP. We’ll repeat these once in a while so its a great time to encourage people to track their PRs on each one.
This will be simply practicing for most people. Work on getting a smooth and stable motion.
Second: 5 Rounds of descending rest, rotating through all exercises each round. First round is 60/50, second round is 60/40, third round is 60/30, fourth round is 60/20, and last round is just 60s max effort.
With a partner, complete 4 rounds as fast as possible, alternating and resting while your partner goes. If you do not have a partner, then rest the same amount of time it takes you to complete a set. The workout has a 1:1 work to rest ratio, so you can go up to 80-90% intensity.
Second: 3 Rounds as fast as possible.
Complete 2 Rounds as fast as possible.<|endoftext|>Anna Karénine est une mini-série historique italo-franco-germano-espagnole en deux épisodes totalisant, réalisée par Christian Duguay et diffusée en Italie à partir du sur Rai 1.
Synopsis
Fiche technique
Titre original : Anna Karenina
Titre français : Anna Karénine
Réalisation : Christian Duguay
Scénario : Francesco Arlanch, d'après Léon Tolstoï.
Décors : Asta Urbonaite
Costumes : Enrica Biscossi, Angelo Poretti
Musique : Antongiulio Frulio, Jan A.P. Kaczmarek
Photographie : Fabrizio Lucci
Montage : David Yardley
Producteurs : Luca Bernabei, Milda Leipute, Sara Melodia, Vincenzo Mosca, Piergiuseppe Serra
Sociétés de production : Lux Vide, Nordic Productions, Pampa Production, Rai Fiction, Telecinco
Pays de production : - - -
Langue de tournage : italien
Format : Couleur - 16/9 - Son stéréo
Genre : drame historique
Durée : (3h20)
Date de diffusion sur Rai 1 :
Italie : et
France :
Distribution
Vittoria Puccini : Anna Karénine
Santiago Cabrera : le comte Alexis Kirillovitch Vronski
Ángela Molina : la comtesse Vronska, la mère d'Alexis
Benjamin Sadler : Alexis Alexandrovitch Karénine
Lou de Laâge : Kitty Stcherbatskï
Max von Thun : Constantin Dmitriévitch Lévine
Carlotta Natoli : Daria Alexandrovna Oblonska, née Stcherbatski, dite « Dolly »
Pietro Sermonti : Stépane Arkadiévitch Oblonski dit « Stiva »
Léa Bosco : Betsy Tverskoïa
María Castro : Varenka
Patricia Vico : Lidia Ivanovna
Sydne Rome : la princesse Stcherbatskï
Références
Liens externes
Série télévisée créée en 2013
Série télévisée en italien
Série télévisée française des années 2010
Série télévisée italienne des années 2010
Série télévisée allemande des années 2010
Série télévisée espagnole des années 2010
Série télévisée historique
Mini-série italienne
Mini-série allemande
Mini-série française
Mini-série espagnole
Série télévisée biographique
Série télévisée se déroulant au XIXe siècle
Adaptation d'Anna Karénine<|endoftext|>La Coalition albanaise de la vallée de Preševo est un mouvement politique de la vallée de Preševo (en Serbie). Il défend la minorité albanaise de cette vallée. Elle a obtenu un député le ( voix, soit 0,42 %). Ce député est confirmé en mai 2008, avec voix et 0,5 %.
Cette liste résultait de la coalition du Parti d | redpajama | [
275,
342,
581,
629,
715,
253,
8281,
13,
285,
253,
643,
629,
369,
327,
326,
16624,
14679,
13,
594,
309,
15312,
352,
1475,
619,
18106,
281,
320,
2104,
281,
7164,
619,
2454,
1840,
253,
1824,
1268,
15,
309,
2918,
779,
407,
1146,
3212,
779,
13,
285,
344,
369,
25661,
327,
619,
9246,
1919,
253,
45399,
7244,
1806,
2183,
253,
21189,
40677,
18025,
280,
15,
187,
7130,
281,
779,
13,
672,
253,
45399,
2210,
13,
581,
273,
731,
2427,
1066,
253,
8281,
3026,
285,
597,
1499,
1947,
253,
23465,
15,
2732,
326,
13,
342,
253,
1361,
273,
247,
20762,
13,
597,
7320,
253,
637,
562,
273,
253,
8281,
3026,
15,
187,
510,
28060,
8710,
6631,
273,
16456,
6362,
418,
25501,
369,
4745,
8191,
670,
3253,
13,
534,
2530,
3739,
8385,
281,
436,
637,
665,
574,
3500,
977,
15604,
285,
20870,
779,
281,
253,
2499,
15022,
5197,
313,
54,
2648,
10,
273,
2719,
538,
965,
4530,
22827,
793,
4530,
313,
6453,
582,
835,
344,
369,
2668,
1557,
273,
15,
187,
510,
23293,
637,
13,
1223,
5015,
281,
253,
3513,
13,
753,
326,
344,
369,
247,
14544,
273,
253,
5393,
10858,
665,
369,
816,
7824,
326,
4131,
285,
26187,
19347,
285,
6497,
715,
253,
7306,
76,
1261,
66,
8281,
13,
3532,
91,
41826,
570,
12013,
15,
187,
31095,
27,
1852,
16621,
41,
13,
1852,
1342,
13,
1852,
10247,
13,
1852,
9878,
50279,
18961,
13135,
19107,
84,
476,
320,
6312,
407,
247,
1180,
273,
1027,
3082,
15,
1583,
403,
2299,
2223,
247,
1652,
2834,
281,
3426,
275,
247,
3158,
285,
3477,
5133,
13,
10159,
273,
534,
1332,
368,
5206,
15,
187,
1394,
476,
897,
4413,
751,
891,
40,
3175,
665,
3959,
247,
2579,
281,
2794,
26854,
2081,
44067,
9762,
3587,
432,
5619,
296,
78,
4041,
15,
187,
1394,
476,
897,
253,
1780,
23624,
686,
18961,
13135,
19107,
8,
7646,
281,
1924,
672,
247,
44067,
556,
644,
9521,
15,
1707,
403,
671,
4217,
4859,
327,
253,
7646,
281,
4948,
285,
2495,
6803,
14238,
15,
187,
1992,
4271,
1363,
665,
452,
9521,
247,
44067,
533,
452,
417,
644,
1677,
247,
3491,
2568,
13,
564,
281,
15022,
40283,
2239,
1780,
23624,
2239,
3667,
8328,
2239,
20772,
13135,
19107,
15,
50279,
50,
27,
2615,
3780,
1918,
479,
667,
2934,
427,
649,
494,
4803,
337,
15,
29011,
19363,
28371,
10291,
50276,
34164,
313,
631,
3307,
582,
342,
247,
2281,
2701,
273,
1884,
10291,
591,
7017,
13,
591,
3167,
13,
285,
247,
12948,
273,
608,
10291,
187,
19,
15,
6800,
7607,
32899,
10291,
15,
187,
187,
34,
27,
380,
806,
4086,
275,
253,
3280,
5931,
310,
3798,
27,
187,
291,
1375,
4232,
13,
4919,
4828,
2997,
187,
187,
2598,
352,
943,
320,
4209,
281,
823,
253,
4086,
27,
187,
291,
1375,
747,
49047,
277,
631,
3307,
2701,
2281,
1884,
16,
15505,
12948,
4791,
20342,
2412,
17744,
5749,
79,
649,
2997,
32899,
62,
346,
4828,
2997,
187,
187,
12501,
1076,
352,
512,
2366,
27,
187,
2420,
275,
292,
5806,
551,
187,
50274,
10050,
3280,
551,
187,
50266,
881,
5806,
10584,
3280,
11674,
5806,
28,
3646,
5926,
28,
187,
50266,
291,
1375,
4232,
13,
4919,
4828,
2997,
187,
50266,
291,
1375,
747,
49047,
277,
631,
3307,
2701,
2281,
1884,
16,
15505,
12948,
4791,
20342,
2412,
17744,
5749,
79,
649,
2997,
32899,
62,
346,
4828,
2997,
187,
50274,
94,
187,
94,
535,
50279,
50,
27,
849,
281,
6287,
305,
338,
342,
14474,
614,
1159,
16194,
1082,
551,
187,
50276,
85,
45060,
426,
747,
14474,
614,
9,
32280,
13,
49173,
17424,
64,
13456,
15,
23200,
995,
14212,
13,
18450,
10,
187,
50276,
85,
45060,
15,
1178,
30475,
9,
17,
10,
187,
50276,
85,
45060,
15,
1178,
13883,
9,
8320,
13,
7469,
558,
535,
50276,
2309,
246,
45060,
187,
94,
187,
187,
42,
2794,
2165,
533,
309,
476,
626,
49129,
436,
443,
3801,
275,
6200,
187,
9453,
309,
873,
3885,
352,
588,
14518,
253,
6200,
285,
253,
6200,
588,
320,
11978,
3185,
15,
535,
50279,
8677,
3348,
45813,
1406,
1289,
14827,
360,
14710,
546,
2240,
1272,
11427,
1392,
633,
435,
1260,
10647,
296,
6290,
76,
250,
10936,
1323,
2828,
257,
30867,
261,
416,
1519,
67,
7256,
620,
13,
8363,
269,
781,
256,
770,
8794,
305,
36383,
10273,
9557,
79,
1323,
2828,
571,
266,
20069,
16409,
10400,
3508,
15,
3599,
3348,
45813,
1406,
1289,
14827,
360,
6446,
18481,
891,
1499,
1392,
5751,
292,
3599,
3348,
45813,
1406,
8363,
31786,
22289,
23948,
505,
83,
20448,
15,
187,
187,
11752,
5179,
2490,
187,
11796,
257,
1448,
284,
275,
891,
21119,
35687,
10273,
762,
5179,
27,
535,
444,
15,
305,
15,
820,
348,
12099,
249,
16520,
187,
444,
15,
305,
15,
24325,
266,
360,
187,
187,
44,
36383,
263,
187,
187,
1672,
931,
66,
298,
6841,
18970,
2490,
187,
44,
1392,
8435,
21380,
89,
350,
187,
3129,
14827,
360,
50279,
1394,
457,
620,
4366,
326,
954,
273,
253,
7216,
13,
8330,
285,
6794,
789,
8349,
452,
767,
629,
15,
380,
806,
581,
310,
1925,
7903,
39070,
430,
13,
285,
352,
310,
4158,
281,
564,
347,
5536,
347,
1896,
342,
581,
5763,
323,
1077,
1698,
4644,
15,
2053,
403,
4158,
281,
5691,
4130,
281,
7450,
3746,
281,
2169,
2308,
273,
4757,
285,
4653,
84,
1293,
1907,
281,
7664,
670,
2221,
1029,
4644,
390,
673,
15,
187,
28645,
5010,
4879,
13,
841,
403,
495,
2264,
5239,
273,
16317,
2801,
313,
6438,
18384,
598,
285,
2444,
598,
281,
634,
2781,
2801,
10,
659,
1430,
943,
320,
670,
721,
14,
25,
47276,
327,
253,
806,
873,
13,
342,
4757,
16,
9177,
1475,
577,
14,
23,
15,
2732,
326,
2781,
3434,
806,
873,
13,
368,
5926,
1066,
275,
2801,
13,
513,
1529,
2781,
3434,
873,
313,
10383,
337,
14,
19,
625,
47276,
582,
285,
840,
5926,
1066,
969,
323,
253,
495,
5784,
873,
15,
187,
16698,
27,
309,
789,
598,
281,
4021,
3349,
5840,
275,
20884,
5687,
285,
513,
721,
47276,
15,
2635,
253,
374,
2109,
873,
309,
457,
620,
897,
2164,
84,
285,
1611,
281,
513,
5062,
25,
47276,
15,
2635,
495,
5784,
873,
588,
320,
1384,
84,
323,
670,
5062,
740,
47276,
15,
187,
4553,
253,
7903,
39070,
430,
629,
13,
627,
588,
320,
247,
1273,
629,
273,
253,
30755,
3798,
342,
1027,
18418,
285,
4866,
15,
1707,
403,
247,
1643,
2221,
2159,
10616,
84,
342,
21839,
18418,
326,
403,
5486,
281,
320,
2120,
7133,
824,
347,
2233,
500,
19000,
84,
11854,
2088,
15,
844,
457,
620,
10280,
841,
2378,
275,
247,
1223,
594,
697,
247,
1270,
673,
281,
11907,
952,
281,
3540,
616,
4653,
84,
327,
1016,
581,
15,
187,
1552,
588,
320,
3365,
25815,
323,
954,
952,
15,
7733,
327,
2970,
247,
6032,
285,
6474,
3200,
15,
187,
10951,
27,
608,
416,
2261,
273,
16317,
1551,
13,
17387,
949,
512,
18418,
1016,
3790,
15,
3973,
3790,
310,
3925,
16,
1235,
13,
1273,
3790,
310,
3925,
16,
1449,
13,
2626,
3790,
310,
3925,
16,
1229,
13,
7002,
3790,
310,
3925,
16,
938,
13,
285,
1390,
3790,
310,
816,
3925,
84,
2781,
3434,
15,
187,
3378,
247,
7832,
13,
3426,
577,
16334,
347,
3809,
347,
1896,
13,
28035,
285,
18180,
1223,
634,
7832,
4566,
15,
1310,
368,
513,
417,
452,
247,
7832,
13,
840,
1551,
253,
1072,
2408,
273,
673,
352,
3936,
368,
281,
3426,
247,
873,
15,
380,
30755,
556,
247,
337,
27,
18,
789,
281,
1551,
4313,
13,
594,
368,
476,
564,
598,
281,
5096,
14,
2270,
6,
7133,
15,
187,
10951,
27,
495,
416,
2261,
347,
3809,
347,
1896,
15,
187,
26626,
374,
416,
2261,
347,
3809,
347,
1896,
15,
50279,
40805,
12604,
9390,
460,
1144,
6987,
12949,
14,
84,
32278,
5153,
2271,
352,
12584,
14,
925,
26798,
14,
72,
693,
4692,
14,
24182,
1530,
1306,
546,
23156,
45431,
261,
3180,
2264,
261,
386,
1157,
9568,
21728,
7678,
1061,
6416,
399,
42314,
333,
1162,
46132,
7678,
546,
40300,
466,
4057,
39955,
3443,
50276,
9960,
416,
2284,
337,
15,
187,
187,
19158,
18614,
187,
187,
39,
16128,
5853,
15267,
27897,
250,
3236,
1163,
16543,
25062,
1758,
187,
27897,
250,
42839,
3314,
4631,
1163,
16543,
12604,
9390,
460,
187,
45282,
267,
5837,
1163,
6416,
399,
42314,
333,
2490,
1810,
9390,
5629,
1163,
27522,
1940,
1780,
77,
3903,
13,
277,
8,
522,
31030,
35969,
251,
23860,
11769,
12589,
15,
187,
399,
32839,
641,
1163,
15123,
66,
15520,
4006,
66,
614,
187,
12805,
9181,
1163,
3035,
23616,
378,
2865,
1730,
74,
13,
18354,
80,
367,
410,
26760,
187,
4878,
2271,
1163,
9422,
543,
74,
335,
900,
1879,
335,
900,
13,
3344,
329,
15,
49,
15,
611,
317,
91,
22005,
76,
187,
45751,
466,
1163,
17287,
21100,
900,
7511,
46668,
187,
7812,
486,
1163,
5119,
43767,
2205,
187,
13126,
34976,
1163,
10467,
66,
10246,
12424,
74,
13,
353,
34223,
2070,
532,
1137,
13,
31336,
8359,
28539,
13,
45106,
257,
8636,
353,
5829,
66,
13,
14791,
7311,
2089,
365,
4165,
376,
187,
33962,
11524,
5069,
372,
3275,
1163,
28313,
657,
504,
13,
23060,
280,
45878,
13,
367,
24079,
28363,
13,
416,
2284,
42193,
13,
13940,
68,
45741,
187,
367,
698,
372,
3275,
1163,
50276,
14,
50276,
14,
50276,
14,
2490,
18232,
489,
372,
4892,
79,
486,
1163,
36037,
1914,
187,
31512,
1163,
28424,
282,
321,
428,
1668,
16,
26,
428,
11832,
331,
14064,
860,
80,
187,
2588,
250,
1163,
1837,
482,
5153,
2271,
187,
17065,
7678,
1163,
50276,
9,
20,
73,
938,
10,
187,
10421,
372,
12393,
919,
416,
2284,
337,
1163,
187,
40300,
466,
1163,
50276,
292,
2490,
6181,
1163,
187,
187,
35207,
2490,
657,
770,
20130,
14902,
550,
5391,
50276,
27,
16543,
12604,
9390,
460,
187,
38436,
15569,
30059,
50276,
27,
458,
389,
442,
6539,
261,
20799,
408,
729,
2682,
657,
9036,
5985,
187,
36201,
1251,
7896,
24429,
1758,
50276,
27,
826,
389,
5298,
339,
657,
9036,
4530,
13,
826,
278,
10133,
277,
8,
18552,
261,
187,
19046,
21995,
2146,
50276,
27,
6539,
261,
26958,
18540,
2682,
12604,
9390,
460,
187,
6100,
372,
3905,
6457,
463,
1163,
43947,
659,
5316,
67,
1832,
76,
12589,
187,
7903,
8449,
596,
328,
50276,
27,
46329,
399,
2225,
363,
48214,
2682,
35969,
29735,
187,
11197,
31797,
17320,
10424,
1163,
399,
8125,
26958,
18540,
2072,
473,
1559,
790,
4530,
13,
295,
7678,
659,
5316,
67,
1832,
5985,
13,
277,
614,
7539,
399,
10378,
9280,
187,
48961,
287,
322,
693,
834,
74,
1163,
659,
41808,
1351,
14012,
11282,
48214,
2682,
473,
1559,
790,
5985,
16465,
7539,
659,
9321,
9280,
187,
35969,
66,
18624,
1940,
1163,
378,
1507,
90,
308,
735,
7381,
12589,
66,
187,
2398,
6336,
34192,
1163,
50276,
55,
6950,
4530,
187,
39206,
657,
4173,
1163,
418,
32825,
27443,
729,
2072,
187,
16739,
570,
12300,
1163,
826,
47776,
339,
659,
5316,
67,
1832,
76,
12589,
187,
187,
51,
860,
71,
860,
1998,
187,
187,
17448,
561,
23489,
265,
4928,
187,
187,
52,
32278,
246,
20255,
860,
4534,
7678,
1531,
860,
7678,
546,
4072,
187,
52,
32278,
246,
20255,
860,
4534,
7678,
546,
36037,
1914,
187,
52,
32278,
246,
20255,
860,
4534,
7678,
42839,
17434,
885,
711,
2459,
14330,
4267,
187,
52,
32278,
246,
20255,
860,
4534,
7678,
36037,
26983,
711,
2459,
14330,
4267,
187,
52,
32278,
246,
20255,
860,
4534,
7678,
355,
5616,
10273,
711,
2459,
14330,
4267,
187,
52,
32278,
246,
20255,
860,
4534,
7678,
17985,
1530,
1306,
711,
2459,
14330,
4267,
187,
52,
32278,
246,
20255,
860,
4534,
7678,
5153,
2271,
187,
46,
5391,
14,
84,
32278,
36037,
26983,
187,
46,
5391,
14,
84,
32278,
355,
5616,
10273,
187,
46,
5391,
14,
84,
32278,
42839,
17434,
885,
187,
46,
5391,
14,
84,
32278,
17985,
1530,
1306,
187,
52,
32278,
246,
20255,
860,
4534,
7678,
1794,
2047,
2271,
187,
52,
32278,
246,
20255,
860,
4534,
7678,
396,
7113,
83,
3941,
386,
7331,
1594,
10569,
70,
4927,
3539,
2148,
187,
38432,
431,
318,
277,
8,
40805,
12604,
9390,
460,
50279,
7647,
32241,
31527,
3230,
885,
372,
826,
362,
455,
7678,
372,
5729,
7326,
46261,
1144,
440,
278,
276,
41562,
42557,
372,
826,
362,
455,
7678,
372,
5729,
7326,
46261,
313,
257,
4165,
17782,
481,
11090,
42912,
423,
826,
5884,
11272,
31527,
3230,
885,
372,
18208,
362,
455,
7678,
15,
36614,
247,
1823,
8309,
440,
7113,
1065,
860,
458,
50276,
9,
3273,
895,
13,
38180,
470,
13,
2945,
2462,
481,
16357,
7113,
1065,
860,
1144,
6583,
860,
546,
24843,
4695,
13,
14333,
50276,
5711,
895,
1162,
186,
17,
13,
22,
44745,
187,
187,
36,
5464,
1618,
70,
32563,
503,
1942,
372,
826,
20706,
3443,
3512,
74,
277
] |
Americans. Bin Laden said it was a Muslim duty to defend Iraq from the Americans and Zionists, even though he described Iraq as ruled by "socialists," who for bin Laden were tantamount to godless infidels.
Bin Laden spoke before the war like a seasoned general, giving Iraqis tactical advice after having battled the Americans in Afghanistan and lived to fight another day.
"We are with you and we will fight in the name of God," bin Laden said, addressing the Iraqi people. "Our brothers, the mujahideen in Iraq, don't be afraid of America's lies about their powers and their military might. We advise you to drag the forces into street fighting. Take them into farms, into cities, and fight them there."
Although the speech proves Saddam and Osama were bound by a shared hatred of the United States, I don't believe it was evidence of a direct connection between the two men. Saddam Hussein simply didn't have anything to gain by forging an alliance with bin Laden; it wasn't worth the risk. Saddam was first and foremost a dictator, concerned primarily with maintaining his rule, not changing the world. Although Saddam peppered his speeches with verses from the Koran and was in the process of building several huge mosques in Baghdad when the war started, his desire for power superseded any moral or religious beliefs he had. Saddam crushed religious fundamentalists in Iraq and would never have shared power with bin Laden the way the Taliban had done in Afghanistan, nor would he have allowed such a dangerous, volatile and provocative loose cannon like al-Qaeda to operate in his country. It would have taken control out of Saddam's hands. I also highly doubt Saddam would have ever considered handing bin Laden weapons of mass destruction to attack the United States or Israel—a threat suggested by the Bush administration—because it would have been tantamount to signing over Iraq's fate to bin Laden. I think bin Laden's offer of support, however, became much more appealing to the Iraqi leadership during the final days of the war and during the period of post-war resistance.
This is not to say that President Saddam Hussein had any aversion to making alliances with terrorists. Saddam, in fact, sheltered and employed the Palestinian terrorists Mohammed al-Abbas (Abu al-Abbas) and the notorious Sabri al-Banna, better known as Abu Nidal. Iraq's symbiotic, financial and mercenary relationships with the two Palestinian militants, however, were significantly different from any type of coalition he could have formed with al-Qaeda.
I met Abu Abbas in Baghdad shortly before the war at the headquarters of his group, the Palestinian Liberation Front (PLF). The office was a spacious villa guarded by three men with assault rifles and surrounded by a high cement wall. Parked in the villa's courtyard was a high-end BMW and a Land Rover, evidence that Abu Abbas—in Iraq since 1994—had grown rich in his new home, mainly from the oil smuggling business he was involved in with Saddam's son Uday.
Abu Abbas, a strong man with broad shoulders, a thick mustache and a deep voice, greeted me in his office with a firm handshake. After a coffee and chitchat about the impending war—which he thought was unavoidable—Abu Abbas proudly told me that he was mainly responsible for channeling money from Iraq to the families of Palestinian suicide bombers in the West Bank and Gaza Strip. The money came from Saddam. It was his way of supporting the intifada. Relatives of suicide bombers were given checks for between $10,000 and $25,000, according to Abu Abbas's representative in the Palestinian territories, Rakad Salim, whom I'd interviewed in Ramallah shortly before he was arrested by Israeli forces in October 2002.
In Baghdad, Abu Abbas seemed somewhat nervous about the approaching war despite his calm, sturdy demeanor. He asked me several times if I thought the war was really coming and how far I thought the United States was prepared to go. Abu Abbas had good reason to worry. He was wanted by Italian authorities for the 1985 hijacking of the Italian cruise ship the _Achille Lauro_ and the murder of Leon Klinghoffer, a sixty-nine-year-old wheelchair-bound Jewish-American passenger. Abu Abbas told me his men had never intended to hijack the _Achille Lauro,_ but planned to use weapons they'd smuggled on board to carry out an attack at the Israeli port of Haifa. Abu Abbas said his men had only commandeered the cruise ship after they were discovered by the ship's security while at sea.
Abu Abbas was ultimately arrested shortly after the fall of Baghdad. He'd tried to flee to Syria, but was turned away at the border and later picked up near Baghdad by US special forces.
The fact that Abu Abbas had operated so openly in a society as controlled as Iraq's is evidence that Saddam Hussein didn't consider him a threat. Saddam's relationship with Abu Nidal, a man whom British Middle East expert and author Patrick Seale described as "a gun for hire," was significantly different.
Abu Nidal had a long history with Iraq. He was based in Baghdad in the mid-1970s when Yasser Arafat's _Fatah_ movement expelled him for being too radical and for allegedly plotting to murder his Palestinian opponents. Saddam Hussein found the then stranded and enraged Abu Nidal (an Arabic _nom de guerre_ that means "father of resistance") to be a useful operative to settle scores with Iraq's longtime rival Syria. Saddam, however, expelled Abu Nidal from the country in 1983 to win US support for Iraq's war with Iran. Abu Nidal moved to Syria and then to Libya, offering his services as a world-class hit man. Before bin Laden, Abu Nidal had been the world's most wanted man, credited with carrying out more than ninety terrorist attacks that killed more than three hundred people. He specialized in highly organized assaults, which he carried out in twenty foreign nations, including attacks at the Rome and Vienna airports in 1985. Abu Nidal was known for his extensive planning, and he was known to have buried weapons in public parks in foreign capitals so they'd be available at a moment's notice.
By the 1990s, however, Abu Nidal had dropped out of the international scene. He was suffering from leukemia and, after allegedly receiving treatment in Cairo in 1997, settled back in Baghdad. His interests are said to have shifted to the arms trade—a longtime source of income—and extorting protection money from Gulf nations. It's unclear why Saddam allowed Abu Nidal to return to Iraq. It's speculated that it was because of business ties with Saddam's son Uday, although I haven't seen convincing evidence. Saddam's loyalties to Abu Nidal, however, were obviously not too deep, because he had the Palestinian militant killed in August 2002.
A Palestinian journalist first reported in Ramallah that Abu Nidal had been shot dead in a Baghdad apartment by Saddam's security forces. Iraqi officials initially said Abu Nidal had barricaded himself in the bathroom and shot himself rather than be arrested. Witnesses who saw Abu Nidal's body, however, said he'd been shot several times, ruling out suicide.
Abu Abbas told me he believed Saddam had Abu Nidal killed because the Palestinian militant had formed an alliance with Iraq's enemy Kuwait. The exact reason may never be known. I believe Saddam had Abu Nidal eliminated because he'd become too much of a liability. During the buildup to the war, officials in Washington had pointed to Abu Nidal's presence in Iraq as evidence that Saddam was harboring terrorists. Just as Saddam expelled Abu Nidal in the 1980s to win the United States' favor, I think he hoped to score points this time by removing Abu Nidal once and for all; it was his way of avoiding the war, the opposite impulse of striking up a relationship with someone as provocative as America's number-one enemy, Osama bin Laden.
The fact remains, however, that bin Laden did call for a jihad in defense of Saddam Hussein's Iraq. I believe it was bin Laden's way of maintaining relevance after the attacks against the World Trade Center and the Pentagon. By associating his name with the conflict in Iraq, bin Laden was trying to latch on to the next hot thing. If Americans were going to be killed in large numbers in Iraq, bin Laden wanted to be part of it. Bin Laden would also try to get in on the act after the war.
I met several Arab mujahideen at the Palestine Hotel during the final days of the war, and I found them to be like other respondents to calls for jihad I'd met in Yemen and Egypt. The men were young, idealistic, disgruntled religious zealots who'd answered the call to jihad, only to be disillusioned by what they found.
In Yemen in 2002, I met about a dozen men who'd fought in Afghanistan alongside the Taliban. They were from the city of Ta'izz, a stronghold of the Islamic Islah (reform) party, and the remote Hadramout region, bin Laden's ancestral homeland along Yemen's largely unregulated border with Saudi Arabia. The Yemeni mujahideen were rugged, straight-talking, rural villagers with hard worker's hands, profound Islamic convictions and a firm belief that their religion was under attack by the United States and Jews and that it was their duty to put their terrestrial lives on hold to defend their Muslim brethren wherever they were in danger. These men thought of themselves as reservists in a world Muslim army, willing to be called up at a moment's notice. The men seemed very proud of their sacrifices and repeatedly told me what a hardship it had been to leave their businesses and families behind while | redpajama | [
7108,
15,
28494,
40858,
753,
352,
369,
247,
8797,
7143,
281,
2342,
9256,
432,
253,
7108,
285,
29452,
1346,
13,
1014,
2167,
344,
2529,
9256,
347,
12969,
407,
346,
21637,
1346,
937,
665,
323,
10269,
40858,
497,
22602,
19581,
281,
7122,
1417,
2192,
301,
1241,
15,
187,
187,
38601,
40858,
7560,
1078,
253,
2137,
751,
247,
43235,
2087,
13,
4933,
9256,
261,
31532,
7535,
846,
1907,
11750,
1070,
253,
7108,
275,
16111,
285,
6940,
281,
3819,
1529,
1388,
15,
187,
187,
3,
1231,
403,
342,
368,
285,
359,
588,
3819,
275,
253,
1416,
273,
2656,
937,
10269,
40858,
753,
13,
15974,
253,
24923,
952,
15,
346,
6067,
13189,
13,
253,
278,
48120,
504,
257,
275,
9256,
13,
1053,
626,
320,
9202,
273,
3968,
434,
8696,
670,
616,
9136,
285,
616,
4668,
1537,
15,
844,
22276,
368,
281,
9310,
253,
5621,
715,
6406,
8615,
15,
11668,
731,
715,
21976,
13,
715,
8238,
13,
285,
3819,
731,
627,
449,
187,
187,
8430,
253,
6519,
19539,
42795,
285,
14183,
2902,
497,
3033,
407,
247,
6096,
24307,
273,
253,
1986,
2077,
13,
309,
1053,
626,
2868,
352,
369,
1941,
273,
247,
1480,
4602,
875,
253,
767,
1821,
15,
42795,
42376,
3365,
1904,
626,
452,
2712,
281,
6351,
407,
323,
3390,
271,
23158,
342,
10269,
40858,
28,
352,
3589,
626,
4409,
253,
2495,
15,
42795,
369,
806,
285,
31971,
247,
48177,
13,
7514,
8558,
342,
11850,
521,
4086,
13,
417,
6890,
253,
1533,
15,
4129,
42795,
268,
554,
11712,
521,
31537,
342,
34067,
432,
253,
26096,
266,
285,
369,
275,
253,
1232,
273,
3652,
2067,
5699,
15039,
10999,
275,
39759,
672,
253,
2137,
3053,
13,
521,
8327,
323,
1612,
17402,
16533,
667,
9447,
390,
7231,
13379,
344,
574,
15,
42795,
24983,
7231,
7936,
1346,
275,
9256,
285,
651,
1620,
452,
6096,
1612,
342,
10269,
40858,
253,
1039,
253,
32625,
574,
2218,
275,
16111,
13,
4543,
651,
344,
452,
4136,
824,
247,
8312,
13,
22326,
285,
49317,
13155,
35996,
751,
355,
14,
46918,
281,
10196,
275,
521,
2586,
15,
733,
651,
452,
2668,
1453,
562,
273,
42795,
434,
3564,
15,
309,
671,
4122,
5545,
42795,
651,
452,
2455,
2783,
35865,
10269,
40858,
8914,
273,
2280,
12536,
281,
2983,
253,
1986,
2077,
390,
5143,
1128,
66,
4322,
5125,
407,
253,
11301,
5286,
1128,
12157,
352,
651,
452,
644,
22602,
19581,
281,
15428,
689,
9256,
434,
13742,
281,
10269,
40858,
15,
309,
1158,
10269,
40858,
434,
3959,
273,
1329,
13,
2299,
13,
3395,
1199,
625,
23176,
281,
253,
24923,
9550,
1309,
253,
2457,
1897,
273,
253,
2137,
285,
1309,
253,
2180,
273,
1501,
14,
7523,
5052,
15,
187,
187,
1552,
310,
417,
281,
1333,
326,
3918,
42795,
42376,
574,
667,
247,
4149,
281,
2403,
512,
18843,
342,
23689,
15,
42795,
13,
275,
958,
13,
9200,
3606,
285,
7091,
253,
19018,
23689,
36250,
355,
14,
34,
4482,
284,
313,
5039,
86,
355,
14,
34,
4482,
284,
10,
285,
253,
32566,
16336,
363,
355,
14,
35,
9045,
13,
1805,
1929,
347,
26957,
427,
11421,
15,
9256,
434,
5995,
12381,
13,
4832,
285,
14480,
35634,
7688,
342,
253,
767,
19018,
36917,
13,
2299,
13,
497,
3012,
1027,
432,
667,
1511,
273,
20706,
344,
812,
452,
4447,
342,
355,
14,
46918,
15,
187,
187,
42,
1313,
26957,
47979,
275,
39759,
13515,
1078,
253,
2137,
387,
253,
17929,
273,
521,
1387,
13,
253,
19018,
46478,
15808,
313,
3859,
39,
481,
380,
3906,
369,
247,
37039,
44760,
39824,
407,
1264,
1821,
342,
9222,
36064,
285,
13750,
407,
247,
1029,
19165,
3402,
15,
4913,
264,
275,
253,
44760,
434,
33924,
369,
247,
1029,
14,
423,
33399,
285,
247,
8565,
416,
1189,
13,
1941,
326,
26957,
47979,
1128,
249,
9256,
1580,
9354,
1128,
10178,
8228,
6793,
275,
521,
747,
1728,
13,
7194,
432,
253,
4166,
924,
37706,
2136,
344,
369,
3206,
275,
342,
42795,
434,
3347,
530,
1201,
15,
187,
187,
5039,
86,
47979,
13,
247,
2266,
637,
342,
3862,
13574,
13,
247,
5026,
1364,
2679,
285,
247,
3676,
4318,
13,
29919,
479,
275,
521,
3906,
342,
247,
5882,
1133,
35350,
15,
2732,
247,
8574,
285,
448,
2682,
255,
670,
253,
40911,
2137,
1128,
4609,
344,
1869,
369,
46133,
1128,
5039,
86,
47979,
35731,
2183,
479,
326,
344,
369,
7194,
5506,
323,
5048,
272,
2583,
432,
9256,
281,
253,
5870,
273,
19018,
13184,
42504,
275,
253,
4255,
6022,
285,
24076,
34982,
15,
380,
2583,
2210,
432,
42795,
15,
733,
369,
521,
1039,
273,
8109,
253,
540,
338,
2960,
15,
5712,
3993,
273,
13184,
42504,
497,
1677,
12255,
323,
875,
370,
740,
13,
933,
285,
370,
1099,
13,
933,
13,
2556,
281,
26957,
47979,
434,
8612,
275,
253,
19018,
26949,
13,
416,
518,
324,
6470,
303,
13,
5207,
309,
1871,
20114,
275,
9752,
455,
1240,
13515,
1078,
344,
369,
9833,
407,
13389,
5621,
275,
4437,
6752,
15,
187,
187,
688,
39759,
13,
26957,
47979,
4455,
8489,
11219,
670,
253,
17682,
2137,
5747,
521,
11874,
13,
41789,
1471,
28062,
15,
754,
2546,
479,
2067,
2069,
604,
309,
1869,
253,
2137,
369,
1663,
3551,
285,
849,
2080,
309,
1869,
253,
1986,
2077,
369,
5480,
281,
564,
15,
26957,
47979,
574,
1175,
1921,
281,
7664,
15,
754,
369,
3078,
407,
9890,
9061,
323,
253,
12210,
22082,
10892,
273,
253,
9890,
26603,
6215,
253,
795,
34,
348,
4002,
3905,
1822,
64,
285,
253,
7701,
273,
14765,
611,
1981,
1689,
4424,
13,
247,
21116,
14,
27248,
14,
2913,
14,
744,
37962,
14,
9458,
9556,
14,
7878,
15828,
15,
26957,
47979,
2183,
479,
521,
1821,
574,
1620,
6034,
281,
22082,
471,
253,
795,
34,
348,
4002,
3905,
1822,
8291,
533,
9355,
281,
897,
8914,
597,
1871,
924,
18050,
1070,
327,
4450,
281,
4459,
562,
271,
2983,
387,
253,
13389,
2245,
273,
10664,
38139,
15,
26957,
47979,
753,
521,
1821,
574,
760,
3923,
35842,
253,
26603,
6215,
846,
597,
497,
6888,
407,
253,
6215,
434,
3988,
1223,
387,
6150,
15,
187,
187,
5039,
86,
47979,
369,
9142,
9833,
13515,
846,
253,
2965,
273,
39759,
15,
754,
1871,
3597,
281,
32645,
281,
12728,
13,
533,
369,
3531,
1977,
387,
253,
5680,
285,
1996,
5055,
598,
2822,
39759,
407,
1982,
2714,
5621,
15,
187,
187,
510,
958,
326,
26957,
47979,
574,
11658,
594,
22134,
275,
247,
5948,
347,
6537,
347,
9256,
434,
310,
1941,
326,
42795,
42376,
1904,
626,
1908,
779,
247,
4322,
15,
42795,
434,
2954,
342,
26957,
427,
11421,
13,
247,
637,
5207,
4782,
10515,
5791,
6485,
285,
2488,
15435,
1023,
1079,
2529,
347,
346,
66,
5654,
323,
16263,
937,
369,
3012,
1027,
15,
187,
187,
5039,
86,
427,
11421,
574,
247,
1048,
2892,
342,
9256,
15,
754,
369,
1754,
275,
39759,
275,
253,
4260,
14,
20686,
84,
672,
714,
30666,
39319,
19397,
434,
795,
39,
682,
73,
64,
4866,
39372,
779,
323,
1146,
1512,
9329,
285,
323,
14163,
38542,
281,
7701,
521,
19018,
18062,
15,
42795,
42376,
1119,
253,
840,
42194,
285,
546,
34785,
26957,
427,
11421,
313,
266,
26503,
795,
25009,
372,
1149,
32987,
64,
326,
2097,
346,
13453,
273,
5052,
2807,
281,
320,
247,
4217,
24685,
281,
16359,
7363,
342,
9256,
434,
31156,
16136,
12728,
15,
42795,
13,
2299,
13,
39372,
26957,
427,
11421,
432,
253,
2586,
275,
11299,
281,
3330,
1982,
1329,
323,
9256,
434,
2137,
342,
7751,
15,
26957,
427,
11421,
4395,
281,
12728,
285,
840,
281,
30174,
13,
9159,
521,
3238,
347,
247,
1533,
14,
2437,
4352,
637,
15,
9613,
10269,
40858,
13,
26957,
427,
11421,
574,
644,
253,
1533,
434,
954,
3078,
637,
13,
26873,
342,
8785,
562,
625,
685,
32700,
17150,
8104,
326,
5339,
625,
685,
1264,
4289,
952,
15,
754,
18052,
275,
4122,
10932,
44848,
13,
534,
344,
4824,
562,
275,
6818,
5639,
12390,
13,
1690,
8104,
387,
253,
12300,
285,
26229,
38042,
275,
12210,
15,
26957,
427,
11421,
369,
1929,
323,
521,
9470,
7219,
13,
285,
344,
369,
1929,
281,
452,
14205,
8914,
275,
1345,
21952,
275,
5639,
1729,
32421,
594,
597,
1871,
320,
2130,
387,
247,
2774,
434,
4366,
15,
187,
187,
3463,
253,
7901,
84,
13,
2299,
13,
26957,
427,
11421,
574,
8231,
562,
273,
253,
5213,
6200,
15,
754,
369,
9958,
432,
23299,
285,
13,
846,
14163,
6883,
1971,
275,
37068,
275,
8210,
13,
11371,
896,
275,
39759,
15,
3032,
6284,
403,
753,
281,
452,
14728,
281,
253,
6174,
5454,
1128,
66,
31156,
2603,
273,
6021,
1128,
395,
1021,
12655,
6055,
2583,
432,
18351,
12390,
15,
733,
434,
12744,
2139,
42795,
4136,
26957,
427,
11421,
281,
1091,
281,
9256,
15,
733,
434,
39377,
326,
352,
369,
984,
273,
2136,
16027,
342,
42795,
434,
3347,
530,
1201,
13,
3738,
309,
6468,
626,
2326,
21414,
1941,
15,
42795,
434,
298,
899,
17511,
281,
26957,
427,
11421,
13,
2299,
13,
497,
9090,
417,
1512,
3676,
13,
984,
344,
574,
253,
19018,
41515,
5339,
275,
4223,
6752,
15,
187,
187,
34,
19018,
17264,
806,
2361,
275,
9752,
455,
1240,
326,
26957,
427,
11421,
574,
644,
5103,
3846,
275,
247,
39759,
10230,
407,
42795,
434,
3988,
5621,
15,
24923,
6338,
8523,
753,
26957,
427,
11421,
574,
2534,
695,
7917,
2994,
275,
253,
15336,
285,
5103,
2994,
2581,
685,
320,
9833,
15,
40177,
265,
665,
3047,
26957,
427,
11421,
434,
2133,
13,
2299,
13,
753,
344,
1871,
644,
5103,
2067,
2069,
13,
10362,
562,
13184,
15,
187,
187,
5039,
86,
47979,
2183,
479,
344,
6566,
42795,
574,
26957,
427,
11421,
5339,
984,
253,
19018,
41515,
574,
4447,
271,
23158,
342,
9256,
434,
9054,
46614,
15,
380,
3242,
1921,
778,
1620,
320,
1929,
15,
309,
2868,
42795,
574,
26957,
427,
11421,
17527,
984,
344,
1871,
2489,
1512,
1199,
273,
247,
9781,
15,
6408,
253,
1973,
484,
281,
253,
2137,
13,
6338,
275,
5041,
574,
8042,
281,
26957,
427,
11421,
434,
3361,
275,
9256,
347,
1941,
326,
42795,
369,
48263,
23689,
15,
3771,
347,
42795,
39372,
26957,
427,
11421,
275,
253,
9178,
84,
281,
3330,
253,
1986,
2077,
8,
3718,
13,
309,
1158,
344,
13937,
281,
4868,
2792,
436,
673,
407,
11922,
26957,
427,
11421,
2378,
285,
323,
512,
28,
352,
369,
521,
1039,
273,
17816,
253,
2137,
13,
253,
7285,
27354,
273,
13631,
598,
247,
2954,
342,
3095,
347,
49317,
347,
3968,
434,
1180,
14,
531,
9054,
13,
14183,
2902,
10269,
40858,
15,
187,
187,
510,
958,
4558,
13,
2299,
13,
326,
10269,
40858,
858,
1067,
323,
247,
37291,
275,
5684,
273,
42795,
42376,
434,
9256,
15,
309,
2868,
352,
369,
10269,
40858,
434,
1039,
273,
11850,
17200,
846,
253,
8104,
1411,
253,
3645,
17061,
5197,
285,
253,
30186,
15,
2896,
1709,
839,
521,
1416,
342,
253,
7344,
275,
9256,
13,
10269,
40858,
369,
2820,
281,
36260,
327,
281,
253,
1735,
3511,
2181,
15,
1310,
7108,
497,
1469,
281,
320,
5339,
275,
1781,
3904,
275,
9256,
13,
10269,
40858,
3078,
281,
320,
629,
273,
352,
15,
28494,
40858,
651,
671,
1611,
281,
755,
275,
327,
253,
769,
846,
253,
2137,
15,
187,
187,
42,
1313,
2067,
8365,
278,
48120,
504,
257,
387,
253,
29313,
14469,
1309,
253,
2457,
1897,
273,
253,
2137,
13,
285,
309,
1119,
731,
281,
320,
751,
643,
15102,
281,
5841,
323,
37291,
309,
1871,
1313,
275,
27412,
285,
10253,
15,
380,
1821,
497,
2872,
13,
7445,
2531,
13,
30190,
2084,
1070,
7231,
42939,
1502,
665,
1871,
9577,
253,
1067,
281,
37291,
13,
760,
281,
320,
557,
408,
2035,
264,
407,
752,
597,
1119,
15,
187,
187,
688,
27412,
275,
6752,
13,
309,
1313,
670,
247,
13365,
1821,
665,
1871,
13465,
275,
16111,
12936,
253,
32625,
15,
1583,
497,
432,
253,
2846,
273,
15543,
8,
11114,
13,
247,
2266,
4949,
273,
253,
13281,
1680,
77,
1240,
313,
250,
630,
10,
3128,
13,
285,
253,
8905,
14136,
3358,
483,
2919,
13,
10269,
40858,
434,
37147,
40640,
2112,
27412,
434,
8127,
440,
10088,
5680,
342,
16158,
20498,
15,
380,
27412,
74,
278,
48120,
504,
257,
497,
41261,
13,
4951,
14,
85,
21489,
13,
11393,
41182,
342,
1892,
12954,
434,
3564,
13,
15585,
13281,
19130,
285,
247,
5882,
9927,
326,
616,
9596,
369,
762,
2983,
407,
253,
1986,
2077,
285,
11563,
285,
326,
352,
369,
616,
7143,
281,
1691,
616,
36680,
4852,
327,
2186,
281,
2342,
616,
8797,
49829,
20312,
597,
497,
275,
5434,
15,
2053,
1821,
1869,
273,
3746,
347,
9298,
1346,
275,
247,
1533,
8797,
8544,
13,
7378,
281,
320,
1925,
598,
387,
247,
2774,
434,
4366,
15,
380,
1821,
4455,
1077,
9979,
273,
616,
38558,
285,
12889,
2183,
479,
752,
247,
38302,
352,
574,
644,
281,
3553,
616,
9341,
285,
5870,
3212,
1223
] |
Al-Basri was only issued one pajama suit by the prison and was constantly covered in lice, which he said he would pick off his body and crush against the wall to write messages of hope and leave a record of his existence, knowing that any day he could be killed or die from disease.
I saw the sad testimonies "We all die" and "God help me" written on the walls.
When the toilet in the cell was full, Al-Basri said his cellmates would urinate in the one plastic bowl they were given to eat from collectively, and then throw the piss into the hall through a mailbox-slot-size ventilation slit in the cell's metal door. Al-Basri said the conditions in the cell were so unsanitary, stuffy and cramped that the flesh in his underarms and groin rotted away. He said the worst experience, however, was when prisoners were taken out of the cell for interrogation and beaten for hours before being thrown back into the cell.
"What are we to do with him?" al-Basri had asked a guard after he'd tossed an unconscious prisoner back into the cell following an interrogation.
"Fuck him," the guard yelled back.
Al-Basri described how the guards would sexually humiliate the prisoners, forcing them to strip naked, tying two of them together face-to-face and making them dance.
As we were leaving the prison, I was surprised that al-Basri ran into two former inmates lingering in the hallway. Ironically, they were now working at the jail, which had become a makeshift headquarters of the Supreme Council for Islamic Revolution in Iraq, an Iranian-backed Shiite Muslim party led by Ayatollah Mohammed Bakr al-Hakim, who was soon to be assassinated. The Shiite group—forbidden under Saddam and responsible for bomb attacks in Baghdad—had simply taken over the empty building. I remember thinking that it must not have been particularly healthy for the sanity of the former prisoners to be working in the dungeon where they'd been so abused.
After the war, al-Basri founded a human rights group for victims of Saddam's regime. The man who had once cared for Saddam was now caring for those whose lives Saddam had destroyed.
Others close to Saddam, including his cook, maid and fortuneteller, were also now free to talk. A maid who'd worked at Baghdad's main Republican Palace (which after the war became the seat of the US administration in Iraq) described her boss as a hypochondriac, obsessed with cleanliness. Like all of the palace's staff, she underwent a complete physical examination—including tests of her blood, urine and stool—every two months. She said anyone with the slightest malady was immediately fired, and that Saddam preferred to hire Iraqi Christians and older women, saying they were cleaner and more reliable. She described how she was required to step on a mat impregnated with a disinfectant before entering Saddam's bedroom, and to polish his fruit and dinner plates with single-use sterilized cloths before serving his food on them.
One of Saddam's cooks said the former Iraqi dictator didn't like too much salt on his food and that he was concerned about his weight, forbidding the cook from using butter or ghee, preferring vegetable oil. The cook, a short jolly man with thick strong hands, said Saddam had simple tastes and enjoyed eating grilled meats and fish, stewed vegetables and rice, and dates for dessert. The cook said Saddam developed an incentive system to ensure quality meals, fining him roughly five to ten dollars if he was unsatisfied with the food, and rewarding him anywhere from five to a hundred dollars if the meal was to his liking. The cook said he was only scared once during six years of service at the Republican Palace, when Saddam became ill after one of his meals. Luckily, he was cleared of charges of trying to poison Saddam.
People close to Saddam also said the former Iraqi dictator was deeply interested in the occult and regularly consulted fortune-tellers and clairvoyants, including a thirteen-year-old boy who Saddam believed could see through walls and read minds. His job was to make sure no one close to Saddam was plotting against him. Saddam was also said to have worn a stone around his left arm to make him bulletproof, according to the members of Iraq's Mandean community—a small religious group who believe that Adam was the first prophet—who sold him the rock.
Iraq's _infitah_ was also a political awakening, and during the weeks I'd been out of the country, two hundred new political parties had sprung up. Before Saddam's fall, there had only been the Baath party, and Iraqis had obviously been thirsting for more. With no registration process, all any Iraqi needed to do to start a party was put up a sign and, evidently, open a newspaper. I saw hand-painted signs plastered on buildings across Baghdad, spray-painted hastily on walls (the names painted so haphazardly they sometimes looked like little more than graffiti) and written on bedsheets hanging outside the windows of apartment blocks, marking the headquarters of new parties, political unions, professional syndicates and human rights groups. Many of the parties seemed to be loyal to one of the main Shiite Muslim _merja_ —senior Shiite clerics—who exercise more control over their followers than most Sunni Muslim imams. The fear that the Shiite's merja, who have been tolerant of the US occupation, could turn has hung over the American administration since its arrival in Baghdad. Looking at the parties emerging in Iraq, it was clear that the strategic Shiite population was starting to spread its wings after decades of repression.
Other new political parties were communist, nationalist, royalist (supporting the return of the Hashemite monarchy to Iraq) and independent. The new political dynamism was palpable, and ideas were hotly debated at Baghdad cafes and on college campuses by people like history professor Ali al-Nashmi.
Al-Nashmi hadn't yet hung up his sign when I first met him at the empty building he was converting into his personal kingdom. A highly ambitious man, he gave me a tour of the new office space—stepping over a workman scraping droplets of paint off the stone floor—explaining the layout of the future headquarters of his new political party (the Union of Independent Intellectuals), socialist newspaper _(The Dawn of Baghdad),_ magazine for children (as yet unnamed) and, he hoped, local television station.
Like al-Hamdani—who'd always dreamed of a life beyond his honey-covered "women's upper arms"—al-Nashmi was bursting with pent-up political desires. Twenty years earlier, al-Nashmi had been arrested and tortured by Saddam's regime for starting a movie club in his home, where about a dozen of his friends would gather in secret every week to watch and discuss foreign films. Al-Nashmi was first accused of founding an illegal communist cell and later of being an Islamic militant, a charge that seemed especially ill-suited, considering his secular views, Western dress and polished English. Al-Nashmi languished behind bars for three years, a relatively short sentence by Iraqi standards. Once, he said, he was beaten so severely during an interrogation—hit with fists and batons—that his entire body was black and blue, preventing him from sleeping, or even moving, without pain for days. Al-Nashmi was determined that such abuses shouldn't be repeated and had gathered about 150 similarly minded intellectuals and professors to start his party.
The fact that al-Nashmi was building a headquarters was something of an anomaly in post-war Iraq. Other parties had simply taken over former government buildings the way al-Hakim's Supreme Council for Islamic Revolution in Iraq had set up shop in the intelligence services' jail and at Tareq Aziz's palatial home along the Tigris, which Aziz no longer needed because he was in US custody at the airport, terrified that the Americans would turn him over to an Iraqi court. Ahmed Chalabi—the leader of the previously exiled Iraqi National Congress—moved into the house of Saddam's advisor Ezzat Ibrahim, a swank villa designed to look like a Japanese palace complete with a footbridge. Ibrahim didn't need it; the man who'd compared Saddam to the Prophet Mohammed was on the run. The Iraqi people considered him Saddam's most loyal cadre, a man who'd been so eager to please his boss as to be laughable. He'd long been the butt of Iraqi jokes, which people were now able to tell openly for the first time.
> One day Saddam Hussein decides to go to a poor market disguised as a woman to find out what ordinary people really think about him. He goes up to an old woman selling cream and says, "Kind old woman, how much for your cream?"
>
> The old woman answers, "For you, my lord, it's free!"
>
> "What?" Saddam says, completely surprised. "Why do you call me'my lord'? Please just tell me how much for your cream?"
>
> But the old woman insists, "I could never take money from you, my lord!"
>
> Saddam gets annoyed and asks, "How do you know who I am?"
>
> Then the old woman pulls off her wig and says, "It's me—Ezzat! Don't you recognize me?"
There were new jokes about Saddam too.
> God sends an angel to earth to collect Saddam's soul. Normally, angels are quick | redpajama | [
1219,
14,
13316,
363,
369,
760,
6808,
581,
1349,
75,
2902,
4176,
407,
253,
5754,
285,
369,
11485,
6107,
275,
298,
547,
13,
534,
344,
753,
344,
651,
2619,
745,
521,
2133,
285,
30582,
1411,
253,
3402,
281,
3630,
8169,
273,
3524,
285,
3553,
247,
1924,
273,
521,
6242,
13,
8958,
326,
667,
1388,
344,
812,
320,
5339,
390,
3150,
432,
2728,
15,
187,
187,
42,
3047,
253,
8872,
40572,
447,
346,
1231,
512,
3150,
3,
285,
346,
13618,
1361,
479,
3,
3542,
327,
253,
8099,
15,
187,
187,
3039,
253,
21487,
275,
253,
894,
369,
2120,
13,
1219,
14,
13316,
363,
753,
521,
894,
13239,
651,
2936,
4024,
275,
253,
581,
8013,
11636,
597,
497,
1677,
281,
6008,
432,
26708,
13,
285,
840,
4710,
253,
24329,
715,
253,
7423,
949,
247,
8888,
3364,
14,
31873,
14,
3281,
23815,
31688,
275,
253,
894,
434,
5148,
3369,
15,
1219,
14,
13316,
363,
753,
253,
2515,
275,
253,
894,
497,
594,
5061,
266,
3516,
13,
5017,
90,
285,
1531,
17263,
326,
253,
15447,
275,
521,
762,
15326,
285,
7753,
249,
687,
1440,
264,
1977,
15,
754,
753,
253,
9065,
2793,
13,
2299,
13,
369,
672,
16154,
497,
2668,
562,
273,
253,
894,
323,
31197,
285,
20698,
323,
3038,
1078,
1146,
13044,
896,
715,
253,
894,
15,
187,
187,
3,
1276,
403,
359,
281,
513,
342,
779,
865,
355,
14,
13316,
363,
574,
2546,
247,
7496,
846,
344,
1871,
27352,
271,
22382,
18897,
896,
715,
253,
894,
1563,
271,
31197,
15,
187,
187,
3,
30368,
779,
937,
253,
7496,
28435,
896,
15,
187,
187,
2422,
14,
13316,
363,
2529,
849,
253,
17269,
651,
20512,
45543,
366,
253,
16154,
13,
17190,
731,
281,
11705,
16867,
13,
42068,
767,
273,
731,
2366,
2454,
14,
936,
14,
1664,
285,
2403,
731,
11012,
15,
187,
187,
1909,
359,
497,
6108,
253,
5754,
13,
309,
369,
9861,
326,
355,
14,
13316,
363,
6337,
715,
767,
3438,
26538,
42578,
275,
253,
29329,
15,
17826,
1037,
13,
597,
497,
1024,
2444,
387,
253,
12907,
13,
534,
574,
2489,
247,
2789,
32190,
17929,
273,
253,
6413,
6456,
323,
13281,
15033,
275,
9256,
13,
271,
20533,
14,
32797,
31645,
614,
8797,
3128,
3977,
407,
22587,
255,
37740,
36250,
25958,
83,
355,
14,
41,
518,
303,
13,
665,
369,
3517,
281,
320,
18111,
3901,
15,
380,
31645,
614,
1387,
1128,
1542,
67,
5394,
762,
42795,
285,
5506,
323,
10110,
8104,
275,
39759,
1128,
10178,
3365,
2668,
689,
253,
6325,
3652,
15,
309,
4456,
4680,
326,
352,
1364,
417,
452,
644,
3782,
5875,
323,
253,
45985,
273,
253,
3438,
16154,
281,
320,
2444,
275,
253,
42034,
251,
835,
597,
1871,
644,
594,
19848,
15,
187,
187,
4553,
253,
2137,
13,
355,
14,
13316,
363,
11420,
247,
1966,
3570,
1387,
323,
10349,
273,
42795,
434,
9459,
15,
380,
637,
665,
574,
2378,
24782,
323,
42795,
369,
1024,
23374,
323,
1110,
3692,
4852,
42795,
574,
11069,
15,
187,
187,
41255,
2810,
281,
42795,
13,
1690,
521,
4417,
13,
30302,
285,
22972,
292,
7707,
13,
497,
671,
1024,
1959,
281,
2312,
15,
329,
30302,
665,
1871,
4307,
387,
39759,
434,
2022,
8786,
21632,
313,
4609,
846,
253,
2137,
3395,
253,
7319,
273,
253,
1982,
5286,
275,
9256,
10,
2529,
617,
12145,
347,
247,
3500,
9217,
363,
317,
13,
35524,
342,
4076,
28399,
15,
6975,
512,
273,
253,
21131,
434,
4750,
13,
703,
13368,
247,
3426,
3520,
8368,
1128,
10387,
5216,
273,
617,
2614,
13,
16327,
285,
32217,
1128,
15160,
767,
2607,
15,
1500,
753,
3780,
342,
253,
33456,
4691,
5102,
369,
4745,
11226,
13,
285,
326,
42795,
9013,
281,
16263,
24923,
15600,
285,
5662,
2255,
13,
3981,
597,
497,
28452,
285,
625,
9630,
15,
1500,
2529,
849,
703,
369,
2424,
281,
3213,
327,
247,
1111,
45286,
456,
342,
247,
557,
39367,
386,
1078,
11734,
42795,
434,
14098,
13,
285,
281,
40167,
521,
9279,
285,
8955,
10855,
342,
2014,
14,
2327,
10335,
19944,
17848,
84,
1078,
9417,
521,
2739,
327,
731,
15,
187,
187,
4041,
273,
42795,
434,
48972,
753,
253,
3438,
24923,
48177,
1904,
626,
751,
1512,
1199,
7043,
327,
521,
2739,
285,
326,
344,
369,
7514,
670,
521,
2801,
13,
17163,
17270,
253,
4417,
432,
970,
10379,
390,
305,
31622,
13,
4510,
804,
21436,
4166,
15,
380,
4417,
13,
247,
2159,
480,
10378,
637,
342,
5026,
2266,
3564,
13,
753,
42795,
574,
2969,
27491,
285,
11346,
9123,
46342,
47098,
285,
6773,
13,
22855,
264,
15737,
285,
11789,
13,
285,
12282,
323,
27519,
15,
380,
4417,
753,
42795,
3715,
271,
25275,
985,
281,
5416,
3290,
16961,
13,
1442,
272,
779,
11467,
2620,
281,
3578,
8918,
604,
344,
369,
5061,
33496,
342,
253,
2739,
13,
285,
34975,
779,
9825,
432,
2620,
281,
247,
4289,
8918,
604,
253,
11484,
369,
281,
521,
35908,
15,
380,
4417,
753,
344,
369,
760,
16060,
2378,
1309,
2800,
1107,
273,
2579,
387,
253,
8786,
21632,
13,
672,
42795,
3395,
2853,
846,
581,
273,
521,
16961,
15,
41624,
13,
344,
369,
16481,
273,
7260,
273,
2820,
281,
14537,
42795,
15,
187,
187,
8836,
2810,
281,
42795,
671,
753,
253,
3438,
24923,
48177,
369,
11617,
6110,
275,
253,
42003,
285,
11719,
33444,
19994,
14,
85,
20945,
285,
502,
1094,
87,
899,
1103,
13,
1690,
247,
27291,
14,
2913,
14,
744,
5006,
665,
42795,
6566,
812,
923,
949,
8099,
285,
1239,
13846,
15,
3032,
2628,
369,
281,
1056,
2119,
642,
581,
2810,
281,
42795,
369,
38542,
1411,
779,
15,
42795,
369,
671,
753,
281,
452,
16332,
247,
8805,
1475,
521,
1669,
4430,
281,
1056,
779,
16950,
16314,
13,
2556,
281,
253,
2758,
273,
9256,
434,
353,
10273,
266,
3114,
1128,
66,
1355,
7231,
1387,
665,
2868,
326,
13187,
369,
253,
806,
33494,
1128,
10002,
4211,
779,
253,
5561,
15,
187,
187,
42,
376,
82,
434,
795,
2050,
262,
1240,
64,
369,
671,
247,
3569,
47158,
13,
285,
1309,
253,
3618,
309,
1871,
644,
562,
273,
253,
2586,
13,
767,
4289,
747,
3569,
4676,
574,
8689,
1947,
598,
15,
9613,
42795,
434,
2965,
13,
627,
574,
760,
644,
253,
11086,
506,
3128,
13,
285,
9256,
261,
574,
9090,
644,
31391,
272,
323,
625,
15,
2726,
642,
12960,
1232,
13,
512,
667,
24923,
3058,
281,
513,
281,
1265,
247,
3128,
369,
1691,
598,
247,
861,
285,
13,
28668,
13,
1527,
247,
11547,
15,
309,
3047,
1133,
14,
81,
20354,
7871,
26507,
3606,
327,
9195,
2439,
39759,
13,
14097,
14,
81,
20354,
44753,
327,
8099,
313,
783,
4454,
16264,
594,
419,
545,
38364,
314,
597,
4536,
3261,
751,
1652,
625,
685,
7098,
47525,
10,
285,
3542,
327,
3722,
6689,
1507,
14203,
3345,
253,
8323,
273,
10230,
8336,
13,
26099,
253,
17929,
273,
747,
4676,
13,
3569,
21324,
13,
5702,
7979,
31290,
285,
1966,
3570,
2390,
15,
6676,
273,
253,
4676,
4455,
281,
320,
14211,
281,
581,
273,
253,
2022,
31645,
614,
8797,
795,
961,
6362,
64,
1905,
8243,
1528,
31645,
614,
31557,
982,
1128,
10002,
5763,
625,
1453,
689,
616,
18409,
685,
954,
45409,
8797,
516,
1317,
15,
380,
4709,
326,
253,
31645,
614,
434,
4285,
6362,
13,
665,
452,
644,
41842,
273,
253,
1982,
17238,
13,
812,
1614,
556,
10416,
689,
253,
2448,
5286,
1580,
697,
13024,
275,
39759,
15,
23359,
387,
253,
4676,
14149,
275,
9256,
13,
352,
369,
2590,
326,
253,
15285,
31645,
614,
3072,
369,
4983,
281,
5195,
697,
15926,
846,
8007,
273,
32070,
15,
187,
187,
8665,
747,
3569,
4676,
497,
33823,
13,
38204,
13,
17292,
382,
313,
4032,
12655,
253,
1091,
273,
253,
14026,
3296,
614,
1114,
12638,
281,
9256,
10,
285,
3907,
15,
380,
747,
3569,
3970,
1204,
369,
36385,
494,
13,
285,
5697,
497,
3511,
314,
37730,
387,
39759,
15660,
265,
285,
327,
6831,
46794,
407,
952,
751,
2892,
11652,
14355,
355,
14,
47,
1225,
7373,
15,
187,
187,
2422,
14,
47,
1225,
7373,
8715,
626,
2568,
10416,
598,
521,
861,
672,
309,
806,
1313,
779,
387,
253,
6325,
3652,
344,
369,
22022,
715,
521,
3367,
18794,
15,
329,
4122,
24683,
637,
13,
344,
3534,
479,
247,
4892,
273,
253,
747,
3906,
2317,
1128,
3241,
2784,
689,
247,
789,
1342,
47232,
30244,
273,
6848,
745,
253,
8805,
5254,
1128,
15083,
1776,
253,
12806,
273,
253,
2852,
17929,
273,
521,
747,
3569,
3128,
313,
783,
6398,
273,
20911,
17545,
37246,
84,
582,
30177,
11547,
31670,
510,
32962,
273,
39759,
582,
64,
11338,
323,
2151,
313,
284,
2568,
42540,
10,
285,
13,
344,
13937,
13,
1980,
7315,
4660,
15,
187,
187,
9817,
355,
14,
22176,
69,
6451,
1128,
10002,
1871,
1900,
33305,
273,
247,
1495,
4457,
521,
14795,
14,
32916,
346,
31450,
434,
5170,
6174,
23887,
267,
14,
47,
1225,
7373,
369,
43452,
342,
15482,
14,
484,
3569,
21044,
15,
19388,
1107,
4321,
13,
355,
14,
47,
1225,
7373,
574,
644,
9833,
285,
37274,
407,
42795,
434,
9459,
323,
4983,
247,
6440,
5453,
275,
521,
1728,
13,
835,
670,
247,
13365,
273,
521,
3858,
651,
9580,
275,
4279,
1046,
2129,
281,
3698,
285,
2319,
5639,
6590,
15,
1219,
14,
47,
1225,
7373,
369,
806,
10145,
273,
23569,
271,
9676,
33823,
894,
285,
1996,
273,
1146,
271,
13281,
41515,
13,
247,
4179,
326,
4455,
3340,
2853,
14,
3467,
959,
13,
7296,
521,
22884,
6849,
13,
6359,
7619,
285,
29422,
4383,
15,
1219,
14,
47,
1225,
7373,
298,
2435,
1428,
3212,
8965,
323,
1264,
1107,
13,
247,
4942,
2159,
6197,
407,
24923,
7465,
15,
7243,
13,
344,
753,
13,
344,
369,
20698,
594,
18270,
1309,
271,
31197,
1128,
26824,
342,
42109,
285,
10464,
790,
1128,
3529,
521,
2862,
2133,
369,
2806,
285,
4797,
13,
13538,
779,
432,
14343,
13,
390,
1014,
4886,
13,
1293,
3075,
323,
1897,
15,
1219,
14,
47,
1225,
7373,
369,
3413,
326,
824,
35703,
10095,
626,
320,
6015,
285,
574,
13037,
670,
7783,
12014,
48163,
48970,
285,
33108,
281,
1265,
521,
3128,
15,
187,
187,
510,
958,
326,
355,
14,
47,
1225,
7373,
369,
3652,
247,
17929,
369,
1633,
273,
271,
30207,
275,
1501,
14,
7523,
9256,
15,
5131,
4676,
574,
3365,
2668,
689,
3438,
2208,
9195,
253,
1039,
355,
14,
41,
518,
303,
434,
6413,
6456,
323,
13281,
15033,
275,
9256,
574,
873,
598,
8979,
275,
253,
9260,
3238,
8,
12907,
285,
387,
308,
609,
82,
13063,
478,
434,
5796,
29445,
1728,
2112,
253,
25631,
4448,
13,
534,
13063,
478,
642,
3356,
3058,
984,
344,
369,
275,
1982,
13555,
387,
253,
13952,
13,
32052,
326,
253,
7108,
651,
1614,
779,
689,
281,
271,
24923,
1302,
15,
32787,
39293,
18754,
1128,
783,
6657,
273,
253,
3786,
385,
4206,
24923,
3313,
5759,
1128,
78,
3149,
715,
253,
2419,
273,
42795,
434,
31149,
444,
4396,
255,
309,
44147,
13,
247,
1863,
1164,
44760,
4158,
281,
1007,
751,
247,
6692,
21131,
3426,
342,
247,
3174,
8298,
15,
309,
44147,
1904,
626,
878,
352,
28,
253,
637,
665,
1871,
2429,
42795,
281,
253,
32550,
36250,
369,
327,
253,
1408,
15,
380,
24923,
952,
2783,
779,
42795,
434,
954,
14211,
18072,
250,
13,
247,
637,
665,
1871,
644,
594,
15211,
281,
4496,
521,
12145,
347,
281,
320,
9012,
494,
15,
754,
1871,
1048,
644,
253,
11566,
273,
24923,
26984,
13,
534,
952,
497,
1024,
2104,
281,
2028,
22134,
323,
253,
806,
673,
15,
187,
187,
31,
2596,
1388,
42795,
42376,
21936,
281,
564,
281,
247,
4105,
2791,
49932,
347,
247,
3416,
281,
1089,
562,
752,
9826,
952,
1663,
1158,
670,
779,
15,
754,
4566,
598,
281,
271,
1711,
3416,
10156,
10777,
285,
2296,
13,
346,
18808,
1711,
3416,
13,
849,
1199,
323,
634,
10777,
865,
187,
31,
209,
187,
31,
380,
1711,
3416,
9172,
13,
346,
2214,
368,
13,
619,
17991,
13,
352,
434,
1959,
1476,
187,
31,
209,
187,
31,
346,
1276,
865,
42795,
2296,
13,
4336,
9861,
15,
346,
4967,
513,
368,
1067,
479,
686,
2577,
17991,
46146,
7764,
816,
2028,
479,
849,
1199,
323,
634,
10777,
865,
187,
31,
209,
187,
31,
1292,
253,
1711,
3416,
31533,
13,
346,
42,
812,
1620,
1379,
2583,
432,
368,
13,
619,
17991,
1476,
187,
31,
209,
187,
31,
42795,
4850,
34639,
285,
12325,
13,
346,
2347,
513,
368,
871,
665,
309,
717,
865,
187,
31,
209,
187,
31,
2635,
253,
1711,
3416,
25612,
745,
617,
43610,
285,
2296,
13,
346,
1147,
434,
479,
1128,
38,
4396,
255,
2,
5037,
626,
368,
9446,
479,
865,
187,
187,
2512,
497,
747,
26984,
670,
42795,
1512,
15,
187,
187,
31,
2656,
16965,
271,
23087,
281,
6149,
281,
4822,
42795,
434,
7765,
15,
40474,
13,
29828,
403,
3158
] |
();
}
} else {
this.navigateToMonth(false, groupIndex, event);
}
event.preventDefault();
break;
}
//enter
case 13:
{
this.onDateSelect(event, date);
event.preventDefault();
break;
}
//escape
case 27:
{
this.hideOverlay(null, this.reFocusInputField);
event.preventDefault();
break;
}
//tab
case 9:
{
this.trapFocus(event);
break;
}
}
}
}, {
key: "navigateToMonth",
value: function navigateToMonth(prev, groupIndex, event) {
if (prev) {
if (this.props.numberOfMonths === 1 || groupIndex === 0) {
this.navigation = {
backward: true
};
this.navBackward(event);
} else {
var prevMonthContainer = this.overlayRef.current.children[groupIndex - 1];
var cells = core.DomHandler.find(prevMonthContainer, '.p-datepicker-calendar td span:not(.p-disabled)');
var focusCell = cells[cells.length - 1];
focusCell.tabIndex = '0';
focusCell.focus();
}
} else {
if (this.props.numberOfMonths === 1 || groupIndex === this.props.numberOfMonths - 1) {
this.navigation = {
backward: false
};
this.navForward(event);
} else {
var nextMonthContainer = this.overlayRef.current.children[groupIndex + 1];
var _focusCell4 = core.DomHandler.findSingle(nextMonthContainer, '.p-datepicker-calendar td span:not(.p-disabled)');
_focusCell4.tabIndex = '0';
_focusCell4.focus();
}
}
}
}, {
key: "onMonthCellKeydown",
value: function onMonthCellKeydown(event, index) {
var cell = event.currentTarget;
switch (event.which) {
//arrows
case 38:
case 40:
{
cell.tabIndex = '-1';
var cells = cell.parentElement.children;
var cellIndex = core.DomHandler.index(cell);
var nextCell = cells[event.which === 40? cellIndex + 3 : cellIndex - 3];
if (nextCell) {
nextCell.tabIndex = '0';
nextCell.focus();
}
event.preventDefault();
break;
}
//left arrow
case 37:
{
cell.tabIndex = '-1';
var prevCell = cell.previousElementSibling;
if (prevCell) {
prevCell.tabIndex = '0';
prevCell.focus();
}
event.preventDefault();
break;
}
//right arrow
case 39:
{
cell.tabIndex = '-1';
var _nextCell = cell.nextElementSibling;
if (_nextCell) {
_nextCell.tabIndex = '0';
_nextCell.focus();
}
event.preventDefault();
break;
}
//enter
case 13:
{
this.onMonthSelect(event, index);
event.preventDefault();
break;
}
//escape
case 27:
{
this.hideOverlay(null, this.reFocusInputField);
event.preventDefault();
break;
}
//tab
case 9:
{
this.trapFocus(event);
break;
}
}
}
}, {
key: "onDateSelect",
value: function onDateSelect(event, dateMeta, timeMeta) {
var _this9 = this;
if (this.props.disabled ||!dateMeta.selectable) {
event.preventDefault();
return;
}
core.DomHandler.find(this.overlayRef.current, '.p-datepicker-calendar td span:not(.p-disabled)').forEach(function (cell) {
return cell.tabIndex = -1;
});
event.currentTarget.focus();
if (this.isMultipleSelection()) {
if (this.isSelected(dateMeta)) {
var value = this.props.value.filter(function (date, i) {
return!_this9.isDateEquals(date, dateMeta);
});
this.updateModel(event, value);
this.updateInputfield(value);
} else if (!this.props.maxDateCount ||!this.props.value || this.props.maxDateCount > this.props.value.length) {
this.selectDate(event, dateMeta, timeMeta);
}
} else {
this.selectDate(event, dateMeta, timeMeta);
}
if (!this.props.inline && this.isSingleSelection() && (!this.props.showTime || this.props.hideOnDateTimeSelect)) {
setTimeout(function () {
_this9.hideOverlay('dateselect');
}, 100);
if (this.touchUIMask) {
this.disableModality();
}
}
event.preventDefault();
}
}, {
key: "selectTime",
value: function selectTime(date, timeMeta) {
if (this.props.showTime) {
var hours, minutes, seconds, milliseconds;
if (timeMeta) {
hours = timeMeta.hours;
minutes = timeMeta.minutes;
seconds = timeMeta.seconds;
milliseconds = timeMeta.milliseconds;
} else {
var time = this.getCurrentDateTime();
var _ref = [time.getHours(), time.getMinutes(), time.getSeconds(), time.getMilliseconds()];
hours = _ref[0];
minutes = _ref[1];
seconds = _ref[2];
milliseconds = _ref[3];
}
date.setHours(hours);
date.setMinutes(minutes);
date.setSeconds(seconds);
date.setMilliseconds(milliseconds);
}
}
}, {
key: "selectDate",
value: function selectDate(event, dateMeta, timeMeta) {
var date = new Date(dateMeta.year, dateMeta.month, dateMeta.day);
this.selectTime(date, timeMeta);
if (this.props.minDate && this.props.minDate > date) {
date = this.props.minDate;
}
if (this.props.maxDate && this.props.maxDate < date) {
date = this.props.maxDate;
}
var selectedValues = date;
if (this.isSingleSelection()) {
this.updateModel(event, date);
} else if (this.isMultipleSelection()) {
selectedValues = this.props.value? [].concat(_toConsumableArray(this.props.value), [date]) : [date];
this.updateModel(event, selectedValues);
} else if (this.isRangeSelection()) {
if (this.props.value && this.props.value.length) {
var startDate = this.props.value[0];
var endDate = this.props.value[1];
if (!endDate && date.getTime() >= startDate.getTime()) {
endDate = date;
} else {
startDate = date;
endDate = null;
}
selectedValues = [startDate, endDate];
this.updateModel(event, selectedValues);
} else {
selectedValues = [date, null];
this.updateModel(event, selectedValues);
}
}
if (this.props.onSelect) {
this.props.onSelect({
originalEvent: event,
value: date
});
}
this.updateInputfield(selectedValues);
}
}, {
key: "onMonthSelect",
value: function onMonthSelect(event, month) {
this.onDateSelect(event, {
year: this. | redpajama | [
1874,
187,
50262,
94,
187,
50264,
94,
2010,
551,
187,
50262,
2520,
15,
8002,
12894,
1992,
28907,
9,
7750,
13,
1387,
6060,
13,
2362,
558,
187,
50264,
94,
535,
50264,
8045,
15,
33898,
9671,
1874,
187,
50264,
7054,
28,
187,
50266,
94,
187,
50268,
605,
9553,
535,
50268,
5045,
2145,
27,
187,
50266,
92,
187,
50264,
2520,
15,
251,
6958,
10004,
9,
8045,
13,
3522,
558,
187,
50264,
8045,
15,
33898,
9671,
1874,
187,
50264,
7054,
28,
187,
50266,
94,
187,
50268,
605,
34189,
535,
50268,
5045,
3435,
27,
187,
50266,
92,
187,
50264,
2520,
15,
21179,
5279,
15328,
9,
8629,
13,
436,
15,
250,
26078,
8982,
6180,
558,
187,
50264,
8045,
15,
33898,
9671,
1874,
187,
50264,
7054,
28,
187,
50266,
94,
187,
50268,
605,
8476,
535,
50268,
5045,
898,
27,
187,
50266,
92,
187,
50264,
2520,
15,
85,
1761,
26078,
9,
8045,
558,
187,
50264,
7054,
28,
187,
50266,
94,
187,
50270,
94,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
8002,
12894,
1992,
28907,
995,
187,
50272,
2877,
27,
1159,
24171,
1992,
28907,
9,
22340,
13,
1387,
6060,
13,
2362,
10,
551,
187,
50270,
338,
313,
22340,
10,
551,
187,
50268,
338,
313,
2520,
15,
21390,
15,
9133,
4527,
9304,
20556,
11013,
337,
2785,
1387,
6060,
11013,
470,
10,
551,
187,
50266,
2520,
15,
37336,
426,
551,
187,
50264,
2135,
1034,
27,
2032,
187,
50266,
4718,
187,
50266,
2520,
15,
8002,
8116,
1034,
9,
8045,
558,
187,
50268,
94,
2010,
551,
187,
50266,
2044,
1404,
28907,
15226,
426,
436,
15,
46732,
7676,
15,
6259,
15,
13863,
60,
4399,
6060,
428,
337,
2194,
187,
50266,
2044,
1341,
426,
5161,
15,
17004,
9294,
15,
8606,
9,
22340,
28907,
15226,
13,
29996,
81,
14,
43991,
14,
36913,
32989,
13905,
27,
1439,
29369,
81,
14,
25050,
10,
5137,
187,
50266,
2044,
2770,
10772,
426,
1341,
60,
13101,
15,
3985,
428,
337,
2194,
187,
50266,
16651,
10772,
15,
8476,
6060,
426,
686,
17,
5618,
187,
50266,
16651,
10772,
15,
16651,
1874,
187,
50268,
94,
187,
50270,
94,
2010,
551,
187,
50268,
338,
313,
2520,
15,
21390,
15,
9133,
4527,
9304,
20556,
11013,
337,
2785,
1387,
6060,
11013,
436,
15,
21390,
15,
9133,
4527,
9304,
20556,
428,
337,
10,
551,
187,
50266,
2520,
15,
37336,
426,
551,
187,
50264,
2135,
1034,
27,
3221,
187,
50266,
4718,
187,
50266,
2520,
15,
8002,
31696,
9,
8045,
558,
187,
50268,
94,
2010,
551,
187,
50266,
2044,
1735,
28907,
15226,
426,
436,
15,
46732,
7676,
15,
6259,
15,
13863,
60,
4399,
6060,
559,
337,
2194,
535,
50266,
2044,
795,
16651,
10772,
21,
426,
5161,
15,
17004,
9294,
15,
8606,
21822,
9,
8384,
28907,
15226,
13,
29996,
81,
14,
43991,
14,
36913,
32989,
13905,
27,
1439,
29369,
81,
14,
25050,
10,
5137,
535,
50266,
64,
16651,
10772,
21,
15,
8476,
6060,
426,
686,
17,
5618,
535,
50266,
64,
16651,
10772,
21,
15,
16651,
1874,
187,
50268,
94,
187,
50270,
94,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
251,
28907,
10772,
4814,
3487,
995,
187,
50272,
2877,
27,
1159,
327,
28907,
10772,
4814,
3487,
9,
8045,
13,
3605,
10,
551,
187,
50270,
2044,
894,
426,
2362,
15,
6259,
12168,
28,
535,
50270,
16065,
313,
8045,
15,
4609,
10,
551,
187,
50268,
605,
37672,
187,
50268,
5045,
6480,
27,
187,
50268,
5045,
3387,
27,
187,
50266,
92,
187,
50264,
3992,
15,
8476,
6060,
426,
30225,
18,
5618,
187,
50264,
2044,
1341,
426,
894,
15,
5598,
7050,
15,
13863,
28,
187,
50264,
2044,
894,
6060,
426,
5161,
15,
17004,
9294,
15,
4663,
9,
3992,
558,
187,
50264,
2044,
1735,
10772,
426,
1341,
60,
8045,
15,
4609,
11013,
3387,
3736,
894,
6060,
559,
495,
1163,
894,
6060,
428,
495,
2194,
535,
50264,
338,
313,
8384,
10772,
10,
551,
187,
50262,
8384,
10772,
15,
8476,
6060,
426,
686,
17,
5618,
187,
50262,
8384,
10772,
15,
16651,
1874,
187,
50264,
94,
535,
50264,
8045,
15,
33898,
9671,
1874,
187,
50264,
7054,
28,
187,
50266,
94,
187,
50268,
605,
1274,
14150,
535,
50268,
5045,
5345,
27,
187,
50266,
92,
187,
50264,
3992,
15,
8476,
6060,
426,
30225,
18,
5618,
187,
50264,
2044,
1404,
10772,
426,
894,
15,
35065,
7050,
52,
487,
1981,
28,
535,
50264,
338,
313,
22340,
10772,
10,
551,
187,
50262,
22340,
10772,
15,
8476,
6060,
426,
686,
17,
5618,
187,
50262,
22340,
10772,
15,
16651,
1874,
187,
50264,
94,
535,
50264,
8045,
15,
33898,
9671,
1874,
187,
50264,
7054,
28,
187,
50266,
94,
187,
50268,
605,
918,
14150,
535,
50268,
5045,
6931,
27,
187,
50266,
92,
187,
50264,
3992,
15,
8476,
6060,
426,
30225,
18,
5618,
187,
50264,
2044,
795,
8384,
10772,
426,
894,
15,
8384,
7050,
52,
487,
1981,
28,
535,
50264,
338,
18339,
8384,
10772,
10,
551,
187,
50262,
64,
8384,
10772,
15,
8476,
6060,
426,
686,
17,
5618,
535,
50262,
64,
8384,
10772,
15,
16651,
1874,
187,
50264,
94,
535,
50264,
8045,
15,
33898,
9671,
1874,
187,
50264,
7054,
28,
187,
50266,
94,
187,
50268,
605,
9553,
535,
50268,
5045,
2145,
27,
187,
50266,
92,
187,
50264,
2520,
15,
251,
28907,
10004,
9,
8045,
13,
3605,
558,
187,
50264,
8045,
15,
33898,
9671,
1874,
187,
50264,
7054,
28,
187,
50266,
94,
187,
50268,
605,
34189,
535,
50268,
5045,
3435,
27,
187,
50266,
92,
187,
50264,
2520,
15,
21179,
5279,
15328,
9,
8629,
13,
436,
15,
250,
26078,
8982,
6180,
558,
187,
50264,
8045,
15,
33898,
9671,
1874,
187,
50264,
7054,
28,
187,
50266,
94,
187,
50268,
605,
8476,
535,
50268,
5045,
898,
27,
187,
50266,
92,
187,
50264,
2520,
15,
85,
1761,
26078,
9,
8045,
558,
187,
50264,
7054,
28,
187,
50266,
94,
187,
50270,
94,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
251,
6958,
10004,
995,
187,
50272,
2877,
27,
1159,
327,
6958,
10004,
9,
8045,
13,
3522,
23062,
13,
673,
23062,
10,
551,
187,
50270,
2044,
795,
2520,
26,
426,
436,
28,
535,
50270,
338,
313,
2520,
15,
21390,
15,
25050,
2785,
2195,
2754,
23062,
15,
7135,
494,
10,
551,
187,
50268,
8045,
15,
33898,
9671,
1874,
187,
50268,
2309,
28,
187,
50270,
94,
535,
50270,
6443,
15,
17004,
9294,
15,
8606,
9,
2520,
15,
46732,
7676,
15,
6259,
13,
29996,
81,
14,
43991,
14,
36913,
32989,
13905,
27,
1439,
29369,
81,
14,
25050,
10,
8539,
34176,
9,
3701,
313,
3992,
10,
551,
187,
50268,
2309,
894,
15,
8476,
6060,
426,
428,
18,
28,
187,
50270,
9897,
187,
50270,
8045,
15,
6259,
12168,
15,
16651,
1874,
535,
50270,
338,
313,
2520,
15,
261,
29454,
23474,
6649,
551,
187,
50268,
338,
313,
2520,
15,
261,
19030,
9,
2754,
23062,
1228,
551,
187,
50266,
2044,
1318,
426,
436,
15,
21390,
15,
2877,
15,
10978,
9,
3701,
313,
2754,
13,
891,
10,
551,
187,
50264,
2309,
2195,
64,
2520,
26,
15,
261,
6958,
16911,
9,
2754,
13,
3522,
23062,
558,
187,
50266,
9897,
187,
50266,
2520,
15,
11183,
7104,
9,
8045,
13,
1318,
558,
187,
50266,
2520,
15,
11183,
8982,
3423,
9,
2877,
558,
187,
50268,
94,
2010,
604,
6522,
2520,
15,
21390,
15,
4090,
6958,
6878,
2785,
2195,
2520,
15,
21390,
15,
2877,
2785,
436,
15,
21390,
15,
4090,
6958,
6878,
2239,
436,
15,
21390,
15,
2877,
15,
3985,
10,
551,
187,
50266,
2520,
15,
7135,
6958,
9,
8045,
13,
3522,
23062,
13,
673,
23062,
558,
187,
50268,
94,
187,
50270,
94,
2010,
551,
187,
50268,
2520,
15,
7135,
6958,
9,
8045,
13,
3522,
23062,
13,
673,
23062,
558,
187,
50270,
94,
535,
50270,
338,
6522,
2520,
15,
21390,
15,
17243,
3857,
436,
15,
261,
21822,
23474,
1082,
3857,
6522,
2520,
15,
21390,
15,
9029,
4769,
2785,
436,
15,
21390,
15,
21179,
2374,
24151,
10004,
1228,
551,
187,
50268,
1178,
20780,
9,
3701,
6734,
551,
187,
50266,
64,
2520,
26,
15,
21179,
5279,
15328,
2073,
24275,
13467,
5137,
187,
50268,
2023,
2233,
558,
535,
50268,
338,
313,
2520,
15,
30713,
54,
2894,
1945,
10,
551,
187,
50266,
2520,
15,
25902,
4120,
1319,
1874,
187,
50268,
94,
187,
50270,
94,
535,
50270,
8045,
15,
33898,
9671,
1874,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
7135,
4769,
995,
187,
50272,
2877,
27,
1159,
3609,
4769,
9,
2754,
13,
673,
23062,
10,
551,
187,
50270,
338,
313,
2520,
15,
21390,
15,
9029,
4769,
10,
551,
187,
50268,
2044,
3038,
13,
2909,
13,
7253,
13,
38178,
28,
535,
50268,
338,
313,
2606,
23062,
10,
551,
187,
50266,
22724,
426,
673,
23062,
15,
22724,
28,
187,
50266,
32117,
426,
673,
23062,
15,
32117,
28,
187,
50266,
30544,
426,
673,
23062,
15,
30544,
28,
187,
50266,
17993,
31439,
426,
673,
23062,
15,
17993,
31439,
28,
187,
50268,
94,
2010,
551,
187,
50266,
2044,
673,
426,
436,
15,
788,
10605,
24151,
1874,
187,
50266,
2044,
795,
709,
426,
544,
2606,
15,
788,
41,
2108,
5715,
673,
15,
788,
10292,
2279,
5715,
673,
15,
788,
41989,
5715,
673,
15,
788,
21173,
31439,
1082,
2194,
187,
50266,
22724,
426,
795,
709,
60,
17,
2194,
187,
50266,
32117,
426,
795,
709,
60,
18,
2194,
187,
50266,
30544,
426,
795,
709,
60,
19,
2194,
187,
50266,
17993,
31439,
426,
795,
709,
60,
20,
2194,
187,
50268,
94,
535,
50268,
2754,
15,
1178,
41,
2108,
9,
22724,
558,
187,
50268,
2754,
15,
1178,
10292,
2279,
9,
32117,
558,
187,
50268,
2754,
15,
1178,
41989,
9,
30544,
558,
187,
50268,
2754,
15,
1178,
21173,
31439,
9,
17993,
31439,
558,
187,
50270,
94,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
7135,
6958,
995,
187,
50272,
2877,
27,
1159,
3609,
6958,
9,
8045,
13,
3522,
23062,
13,
673,
23062,
10,
551,
187,
50270,
2044,
3522,
426,
747,
10421,
9,
2754,
23062,
15,
2913,
13,
3522,
23062,
15,
7791,
13,
3522,
23062,
15,
1201,
558,
187,
50270,
2520,
15,
7135,
4769,
9,
2754,
13,
673,
23062,
558,
535,
50270,
338,
313,
2520,
15,
21390,
15,
1222,
6958,
3857,
436,
15,
21390,
15,
1222,
6958,
2239,
3522,
10,
551,
187,
50268,
2754,
426,
436,
15,
21390,
15,
1222,
6958,
28,
187,
50270,
94,
535,
50270,
338,
313,
2520,
15,
21390,
15,
4090,
6958,
3857,
436,
15,
21390,
15,
4090,
6958,
654,
3522,
10,
551,
187,
50268,
2754,
426,
436,
15,
21390,
15,
4090,
6958,
28,
187,
50270,
94,
535,
50270,
2044,
4236,
15888,
426,
3522,
28,
535,
50270,
338,
313,
2520,
15,
261,
21822,
23474,
6649,
551,
187,
50268,
2520,
15,
11183,
7104,
9,
8045,
13,
3522,
558,
187,
50270,
94,
2010,
604,
313,
2520,
15,
261,
29454,
23474,
6649,
551,
187,
50268,
16191,
15888,
426,
436,
15,
21390,
15,
2877,
3736,
544,
1570,
35707,
10107,
936,
9323,
360,
494,
6542,
9,
2520,
15,
21390,
15,
2877,
582,
544,
2754,
3291,
1163,
544,
2754,
2194,
187,
50268,
2520,
15,
11183,
7104,
9,
8045,
13,
4236,
15888,
558,
187,
50270,
94,
2010,
604,
313,
2520,
15,
261,
12519,
23474,
6649,
551,
187,
50268,
338,
313,
2520,
15,
21390,
15,
2877,
3857,
436,
15,
21390,
15,
2877,
15,
3985,
10,
551,
187,
50266,
2044,
1265,
6958,
426,
436,
15,
21390,
15,
2877,
60,
17,
2194,
187,
50266,
2044,
990,
6958,
426,
436,
15,
21390,
15,
2877,
60,
18,
2194,
535,
50266,
338,
6522,
423,
6958,
3857,
3522,
15,
788,
4769,
1082,
10122,
1265,
6958,
15,
788,
4769,
6649,
551,
187,
50264,
423,
6958,
426,
3522,
28,
187,
50266,
94,
2010,
551,
187,
50264,
5478,
6958,
426,
3522,
28,
187,
50264,
423,
6958,
426,
3635,
28,
187,
50266,
94,
535,
50266,
16191,
15888,
426,
544,
5478,
6958,
13,
990,
6958,
2194,
187,
50266,
2520,
15,
11183,
7104,
9,
8045,
13,
4236,
15888,
558,
187,
50268,
94,
2010,
551,
187,
50266,
16191,
15888,
426,
544,
2754,
13,
3635,
2194,
187,
50266,
2520,
15,
11183,
7104,
9,
8045,
13,
4236,
15888,
558,
187,
50268,
94,
187,
50270,
94,
535,
50270,
338,
313,
2520,
15,
21390,
15,
251,
10004,
10,
551,
187,
50268,
2520,
15,
21390,
15,
251,
10004,
7506,
187,
50266,
19164,
5949,
27,
2362,
13,
187,
50266,
2877,
27,
3522,
187,
50268,
9897,
187,
50270,
94,
535,
50270,
2520,
15,
11183,
8982,
3423,
9,
16191,
15888,
558,
187,
50272,
94,
187,
50274,
2023,
551,
187,
50272,
2364,
27,
346,
251,
28907,
10004,
995,
187,
50272,
2877,
27,
1159,
327,
28907,
10004,
9,
8045,
13,
1770,
10,
551,
187,
50270,
2520,
15,
251,
6958,
10004,
9,
8045,
13,
551,
187,
50268,
2913,
27,
436,
15
] |
reported, using solution-phase extraction of inner tubes from large-diameter multi-wall tubes.\cite{Choi_et_al_2013a}
\par
Actually, it is shown theoretically by first-principles energy minimization that both flattened and cylindrical nanotubes are stable or meta-stable and the energy of flattened tube is lower than cylindrical tubes with large diameter.\cite{Tang_et_al_2005a,Zhang_et_al_2006b,Hasegawa_and_Nishidate_2006a,Xiao_et_al_2007a,Lu_et_al_2011a}
The cylindrical nanotubes collapse into flattened tubes with a barbell-like cross section under hydrostatic pressure or in the presence of injected charge shown by molecular dynamics simulations.\cite{Liu_and_Cho_2004a,Tangney_et_al_2005a}
Electronic states were studied for collapsed armchair tubes in a tight-binding model\cite{Lammert_et_al_2000a} and for collapsed zigzag tubes by density-functional calculations,\cite{Kim_et_al_2001e,Nishidate_and_Hasegawa_2008a} which demonstrated drastic modification in the energy region close to the Fermi level due to inter-wall interaction.
\par
Transport of crossed nanotube junctions results from interacting individual tubes and has been studied both experimentally\cite{Postma_et_al_2000a,Fuhrer_et_al_2000b,Yoneya_et_al_2002a,Gao_et_al_2004a,Znidarsic_et_al_2013a} and theoretically.\cite{Nakanishi_and_Ando_2001a,Maarouf_and_Mele_2011a,Yoon_et_al_2001a,Komnik_and_Egger_2001a}
The conductance is found to depend strongly on the crossing angle with large maxima at commensurate stacking of lattices of two nanotubes.\cite{Nakanishi_and_Ando_2001a,Maarouf_and_Mele_2011a}
A deformation of crossed carbon nanotubes, which may significantly affect the tunneling conductance between nanotubes, has been calculated.\cite{Fuhrer_et_al_2000b,Hertel_et_al_1998a,Yoon_et_al_2001a}
Furthermore, a pseudogap has been predicted to appear for an orientationally ordered crystal of nanotubes due to inter-tube transfer.\cite{Delaney_et_al_1998a,Kwon_et_al_1998a,Maarouf_et_al_2000a,Kwon_and_Tomanek_1998a}
\par
Effects of inter-wall interactions in multi-wall nanotubes were also studied.
In general, the lattice structure of each nanotube is incommensurate with that of adjacent walls.\cite{Kociak_et_al_2002a,Zuo_et_al_2003a}
This makes inter-wall electron hopping negligibly small as a result of the cancellation of inter-wall coupling in the absence of disorder.\cite{Yoon_et_al_2002a,Triozon_et_al_2004a,Uryu_and_Ando_2005c,Charlier_et_al_2007a,Uryu_and_Ando_2007e}
In fact, inter-wall hopping integrals vary quasi-periodically from site to site and their average over the distance of the order of the circumference vanishes.
This property was extensively used for theoretical calculations of excitons in double-wall nanotubes.\cite{Tomio_et_al_2012a,Tomio_et_al_2012c}
Further, it is closely related to very weak interlayer interactions in twisted bi- and/or multi-layer graphenes.
\par
Experimentally, each layer of some of epitaxially fabricated graphenes having many layers is known to behave almost as a monolayer.\cite{de_Heer_et_al_2007a,Sadowski_et_al_2006a,Sadowski_et_al_2007a,Wu_et_al_2007b,Hass_et_al_2007a,Hass_et_al_2008a,Sprinkle_et_al_2009a,de_Heer_et_al_2010a,de_Heer_et_al_2011a,Orlita_et_al_2008n,Miller_et_al_2009a}
Further, the electronic structure of twisted bilayer graphene with nearly incommensurate lattice structure, both theoretically calculated\cite{Lopes_dos_Santos_et_al_2007a,Latil_et_al_2007a,Hass_et_al_2008a,Shallcross_et_al_2008a,Bistritzer_and_MacDonald_2011a,Bistritzer_and_MacDonald_2011b,Lopes_dos_Santos_et_al_2012a,Moon_and_Koshino_2012a,Moon_and_Koshino_2013a,Lu_and_Fertig_2014a,Mele_2010a,Mele_2011a} and experimentally observed,\cite{Sprinkle_et_al_2009a,Ni_et_al_2008c,Schmidt_et_al_2010a,Luican_et_al_2011a,Brihuega_et_al_2012a,Li_et_al_2010a} shows a linear band dispersion near the charge neutrality point, suggesting weak interlayer interaction.
On the contrary, the interlayer interaction drastically changes electronic states in displaced bilayer graphene having a commensurate lattice structure.\cite{Son_et_al_2011a}
The end of bilayer graphene can be closed and was observed experimentally after thermal treatment.\cite{Liu_et_al_2009c}
Geometry and electronic structure of bilayer graphene with a closed edge were studied by a density functional calculation.\cite{Feng_et_al_2009a}
\par
\begin{figure*}
\begin{center}
\begin{minipage}[t]{7.50cm}
\begin{center}
\includegraphics[width=7.50cm]{eps/fig1a_FlattenedCN2a.eps}
(a)
\end{center}
\end{minipage}
\begin{minipage}[t]{9.50cm}
\begin{center}
\includegraphics[width=9.50cm]{eps/fig1b_FlattenedCN1.eps}
(b)
\end{center}
\end{minipage}
\caption
\label{Fig:Flattened_CN}
(a) A schematic illustration of a collapsed carbon nanotubes and (b) its development map on graphene sheet.
In (b), the coordinates system $(x',y')$ and origin O' are fixed onto the graphene sheet and the coordinates system $(x,y)$ and origin O vary depending on the structure of a nanotube.
The flattened region is denoted by the shaded area.
}
\end{center}
\vspace{-0.250cm}
\end{figure*}
This paper is organized as follows:
In Sect.\ \ref{Sec:Collapsed_Carbon_Nanotubes}, an effective potential of inter-wall interaction is derived in an effective-mass scheme.
In Sect.\ \ref{Sec:Weak_Inter-Wall_Coupling}, modification of band structure due to collapse is analyzed by perturbation of inter-wall interaction first for armchair and zigzag nanotube and its dependence on nanotube chirality and stacking in flattened region are discussed based on dominant terms.
Numerical results are shown in Sect.\ \ref{Sec:Numerical_Results} and a short summary is given in Sect.\ \ref{Sec:Summary_and_Conclusion}.
\par
\section{Collapsed Carbon Nanotubes} \label{Sec:Collapsed_Carbon_Nanotubes}
We consider a nanotube partially flattened as illustrated in Fig.\ \ref{Fig:Flattened_CN} (a).
The width of the flattened region is denoted by $L_F/2$ and that of the curved region by $L_C/2$.
We have
\begin{equation}
L_F + L_C = L,
\end{equation}
where $L$ is the circumference.
Figure \ref{Fig:Flattened_CN} (b) shows the development map.
The tube is usually specified by chiral vector ${\bf L}$, corresponding to the circumference, i.e., $L=|{\bf L}|$.
The direction of ${\bf L}$ measured from the horizontal direction is called the chiral angle and denoted by $\eta$.
\par
In Fig.\ \ref{Fig:Flattened_CN} (b), the right hand side of the line passing through the point O at $(\zeta\ | redpajama | [
2361,
13,
970,
2900,
14,
14213,
11998,
273,
6703,
17080,
432,
1781,
14,
5168,
6245,
4471,
14,
12081,
17080,
4880,
41766,
92,
18697,
74,
64,
292,
64,
267,
64,
6622,
66,
94,
190,
187,
61,
1148,
190,
187,
25179,
13,
352,
310,
2011,
28055,
407,
806,
14,
26985,
7540,
2341,
41458,
326,
1097,
42394,
285,
23990,
38587,
31571,
403,
6474,
390,
11419,
14,
11351,
285,
253,
2341,
273,
42394,
9402,
310,
2406,
685,
23990,
17080,
342,
1781,
9080,
4880,
41766,
92,
53,
606,
64,
292,
64,
267,
64,
9204,
66,
13,
36378,
64,
292,
64,
267,
64,
8603,
67,
13,
41,
511,
72,
11415,
64,
395,
64,
47,
763,
301,
366,
64,
8603,
66,
13,
57,
22728,
64,
292,
64,
267,
64,
8602,
66,
13,
22653,
64,
292,
64,
267,
64,
7330,
66,
94,
190,
187,
510,
23990,
38587,
31571,
13551,
715,
42394,
17080,
342,
247,
2534,
10910,
14,
3022,
2831,
2593,
762,
4101,
4659,
3473,
390,
275,
253,
3361,
273,
13945,
4179,
2011,
407,
5787,
8062,
9938,
4880,
41766,
92,
41392,
64,
395,
64,
18697,
64,
9430,
66,
13,
53,
606,
2191,
64,
292,
64,
267,
64,
9204,
66,
94,
190,
187,
42621,
3054,
497,
5421,
323,
21900,
4430,
21689,
17080,
275,
247,
6863,
14,
13018,
1566,
61,
41766,
92,
45,
3681,
797,
64,
292,
64,
267,
64,
6914,
66,
94,
285,
323,
21900,
48567,
47482,
17080,
407,
4038,
14,
28445,
10426,
1337,
41766,
92,
27682,
64,
292,
64,
267,
64,
8971,
70,
13,
47,
763,
301,
366,
64,
395,
64,
41,
511,
72,
11415,
64,
8012,
66,
94,
534,
5183,
36927,
11237,
275,
253,
2341,
2919,
2810,
281,
253,
22499,
1268,
1955,
281,
734,
14,
12081,
5016,
15,
190,
187,
61,
1148,
190,
187,
33495,
273,
13405,
38587,
4338,
33138,
1543,
432,
18745,
2060,
17080,
285,
556,
644,
5421,
1097,
21657,
61,
41766,
92,
8983,
785,
64,
292,
64,
267,
64,
6914,
66,
13,
39,
6968,
6554,
64,
292,
64,
267,
64,
6914,
67,
13,
58,
2153,
66,
64,
292,
64,
267,
64,
10016,
66,
13,
40,
8500,
64,
292,
64,
267,
64,
9430,
66,
13,
30785,
301,
1032,
280,
64,
292,
64,
267,
64,
6622,
66,
94,
285,
28055,
4880,
41766,
92,
47,
518,
9289,
74,
64,
395,
64,
1898,
80,
64,
8971,
66,
13,
16490,
274,
276,
71,
64,
395,
64,
5072,
282,
64,
7330,
66,
13,
58,
3508,
64,
292,
64,
267,
64,
8971,
66,
13,
44,
297,
16825,
64,
395,
64,
38,
34362,
64,
8971,
66,
94,
190,
187,
510,
29738,
310,
1119,
281,
3469,
7052,
327,
253,
14270,
6907,
342,
1781,
49313,
387,
42482,
33559,
37444,
273,
40940,
273,
767,
38587,
31571,
4880,
41766,
92,
47,
518,
9289,
74,
64,
395,
64,
1898,
80,
64,
8971,
66,
13,
16490,
274,
276,
71,
64,
395,
64,
5072,
282,
64,
7330,
66,
94,
190,
187,
34,
19972,
273,
13405,
6315,
38587,
31571,
13,
534,
778,
3012,
2818,
253,
33344,
29738,
875,
38587,
31571,
13,
556,
644,
5118,
4880,
41766,
92,
39,
6968,
6554,
64,
292,
64,
267,
64,
6914,
67,
13,
41,
797,
293,
64,
292,
64,
267,
64,
11496,
66,
13,
58,
3508,
64,
292,
64,
267,
64,
8971,
66,
94,
190,
187,
20964,
13,
247,
10585,
462,
522,
556,
644,
8131,
281,
3176,
323,
271,
11259,
595,
6960,
9266,
273,
38587,
31571,
1955,
281,
734,
14,
34995,
3700,
4880,
41766,
92,
13569,
27674,
64,
292,
64,
267,
64,
11496,
66,
13,
44,
33382,
64,
292,
64,
267,
64,
11496,
66,
13,
16490,
274,
276,
71,
64,
292,
64,
267,
64,
6914,
66,
13,
44,
33382,
64,
395,
64,
15883,
1351,
76,
64,
11496,
66,
94,
190,
187,
61,
1148,
190,
187,
34721,
273,
734,
14,
12081,
6355,
275,
4471,
14,
12081,
38587,
31571,
497,
671,
5421,
15,
190,
187,
688,
2087,
13,
253,
10979,
2605,
273,
1016,
38587,
4338,
310,
275,
2823,
561,
33559,
342,
326,
273,
9701,
8099,
4880,
41766,
92,
44,
1118,
518,
64,
292,
64,
267,
64,
10016,
66,
13,
59,
26826,
64,
292,
64,
267,
64,
9755,
66,
94,
190,
187,
1552,
2789,
734,
14,
12081,
6488,
36939,
9768,
4360,
1355,
347,
247,
906,
273,
253,
26667,
273,
734,
14,
12081,
8789,
275,
253,
5928,
273,
8984,
4880,
41766,
92,
58,
3508,
64,
292,
64,
267,
64,
10016,
66,
13,
53,
14319,
5894,
64,
292,
64,
267,
64,
9430,
66,
13,
54,
610,
86,
64,
395,
64,
1898,
80,
64,
9204,
68,
13,
8662,
3623,
64,
292,
64,
267,
64,
8602,
66,
13,
54,
610,
86,
64,
395,
64,
1898,
80,
64,
8602,
70,
94,
190,
187,
688,
958,
13,
734,
14,
12081,
36939,
28676,
6889,
15539,
14,
17911,
1037,
432,
2670,
281,
2670,
285,
616,
3388,
689,
253,
4181,
273,
253,
1340,
273,
253,
30341,
27309,
15,
190,
187,
1552,
2867,
369,
18171,
908,
323,
10527,
10426,
273,
10964,
790,
275,
4021,
14,
12081,
38587,
31571,
4880,
41766,
92,
15883,
900,
64,
292,
64,
267,
64,
6755,
66,
13,
15883,
900,
64,
292,
64,
267,
64,
6755,
68,
94,
190,
187,
11389,
13,
352,
310,
8244,
2905,
281,
1077,
5075,
734,
12026,
6355,
275,
18935,
1794,
14,
285,
16,
263,
4471,
14,
12026,
17309,
864,
265,
15,
190,
187,
61,
1148,
190,
187,
18139,
2092,
595,
13,
1016,
3828,
273,
690,
273,
8198,
991,
1365,
26493,
17309,
864,
265,
1907,
1142,
8090,
310,
1929,
281,
21319,
2761,
347,
247,
39613,
4880,
41766,
92,
615,
64,
1328,
254,
64,
292,
64,
267,
64,
8602,
66,
13,
52,
7240,
9327,
64,
292,
64,
267,
64,
8603,
66,
13,
52,
7240,
9327,
64,
292,
64,
267,
64,
8602,
66,
13,
45055,
64,
292,
64,
267,
64,
8602,
67,
13,
41,
515,
64,
292,
64,
267,
64,
8602,
66,
13,
41,
515,
64,
292,
64,
267,
64,
8012,
66,
13,
39023,
22064,
64,
292,
64,
267,
64,
7857,
66,
13,
615,
64,
1328,
254,
64,
292,
64,
267,
64,
7199,
66,
13,
615,
64,
1328,
254,
64,
292,
64,
267,
64,
7330,
66,
13,
3980,
77,
5741,
64,
292,
64,
267,
64,
8012,
79,
13,
42038,
64,
292,
64,
267,
64,
7857,
66,
94,
190,
187,
11389,
13,
253,
7051,
2605,
273,
18935,
47309,
23076,
342,
4829,
275,
2823,
561,
33559,
10979,
2605,
13,
1097,
28055,
5118,
61,
41766,
92,
45,
11192,
64,
38755,
64,
52,
386,
375,
64,
292,
64,
267,
64,
8602,
66,
13,
23080,
300,
64,
292,
64,
267,
64,
8602,
66,
13,
41,
515,
64,
292,
64,
267,
64,
8012,
66,
13,
47600,
16599,
64,
292,
64,
267,
64,
8012,
66,
13,
35,
382,
902,
8260,
64,
395,
64,
13815,
16008,
64,
7330,
66,
13,
35,
382,
902,
8260,
64,
395,
64,
13815,
16008,
64,
7330,
67,
13,
45,
11192,
64,
38755,
64,
52,
386,
375,
64,
292,
64,
267,
64,
6755,
66,
13,
46,
3508,
64,
395,
64,
44,
6934,
2610,
64,
6755,
66,
13,
46,
3508,
64,
395,
64,
44,
6934,
2610,
64,
6622,
66,
13,
22653,
64,
395,
64,
39,
797,
304,
64,
6759,
66,
13,
5072,
282,
64,
7199,
66,
13,
5072,
282,
64,
7330,
66,
94,
285,
21657,
2540,
1337,
41766,
92,
39023,
22064,
64,
292,
64,
267,
64,
7857,
66,
13,
24534,
64,
292,
64,
267,
64,
8012,
68,
13,
10859,
23533,
64,
292,
64,
267,
64,
7199,
66,
13,
22653,
9593,
64,
292,
64,
267,
64,
7330,
66,
13,
35,
363,
73,
489,
2485,
64,
292,
64,
267,
64,
6755,
66,
13,
17448,
64,
292,
64,
267,
64,
7199,
66,
94,
2722,
247,
4872,
3961,
15641,
2822,
253,
4179,
41056,
1127,
13,
7738,
5075,
734,
12026,
5016,
15,
190,
187,
2374,
253,
10214,
13,
253,
734,
12026,
5016,
31063,
2544,
7051,
3054,
275,
26699,
47309,
23076,
1907,
247,
42482,
33559,
10979,
2605,
4880,
41766,
92,
30138,
64,
292,
64,
267,
64,
7330,
66,
94,
190,
187,
510,
990,
273,
47309,
23076,
476,
320,
4581,
285,
369,
2540,
21657,
846,
8609,
1971,
4880,
41766,
92,
41392,
64,
292,
64,
267,
64,
7857,
68,
94,
190,
187,
37130,
285,
7051,
2605,
273,
47309,
23076,
342,
247,
4581,
5024,
497,
5421,
407,
247,
4038,
5164,
10272,
4880,
41766,
92,
39,
1205,
64,
292,
64,
267,
64,
7857,
66,
94,
190,
187,
61,
1148,
190,
187,
61,
2043,
92,
13206,
33029,
190,
187,
61,
2043,
92,
9229,
94,
190,
187,
61,
2043,
92,
1222,
532,
486,
11326,
85,
1019,
24,
15,
1235,
3591,
94,
190,
187,
61,
2043,
92,
9229,
94,
190,
187,
61,
249,
741,
909,
1354,
982,
60,
3429,
30,
24,
15,
1235,
3591,
1019,
2265,
16,
926,
18,
66,
64,
6623,
1595,
2348,
14546,
19,
66,
15,
2265,
94,
190,
187,
9,
66,
10,
190,
187,
61,
423,
92,
9229,
94,
190,
187,
61,
423,
92,
1222,
532,
486,
94,
190,
187,
61,
2043,
92,
1222,
532,
486,
11326,
85,
1019,
26,
15,
1235,
3591,
94,
190,
187,
61,
2043,
92,
9229,
94,
190,
187,
61,
249,
741,
909,
1354,
982,
60,
3429,
30,
26,
15,
1235,
3591,
1019,
2265,
16,
926,
18,
67,
64,
6623,
1595,
2348,
14546,
18,
15,
2265,
94,
190,
187,
9,
67,
10,
190,
187,
61,
423,
92,
9229,
94,
190,
187,
61,
423,
92,
1222,
532,
486,
94,
190,
187,
61,
34480,
187,
61,
1968,
92,
1470,
27,
6623,
1595,
2348,
64,
14546,
94,
190,
187,
9,
66,
10,
329,
32467,
23356,
273,
247,
21900,
6315,
38587,
31571,
285,
313,
67,
10,
697,
2440,
3711,
327,
23076,
8335,
15,
190,
187,
688,
313,
67,
582,
253,
11627,
985,
3019,
89,
1383,
90,
31807,
285,
6510,
473,
8,
403,
4229,
4830,
253,
23076,
8335,
285,
253,
11627,
985,
3019,
89,
13,
90,
1009,
285,
6510,
473,
6889,
7293,
327,
253,
2605,
273,
247,
38587,
4338,
15,
190,
187,
510,
42394,
2919,
310,
17007,
407,
253,
37042,
2170,
15,
190,
187,
94,
190,
187,
61,
423,
92,
9229,
94,
190,
187,
61,
87,
5641,
10241,
17,
15,
9519,
3591,
94,
190,
187,
61,
423,
92,
13206,
33029,
190,
187,
1552,
2929,
310,
10932,
347,
3637,
27,
20434,
187,
688,
33743,
4880,
393,
709,
92,
4538,
27,
19013,
13395,
64,
10697,
4006,
64,
45787,
302,
31571,
2023,
271,
3576,
2442,
273,
734,
14,
12081,
5016,
310,
6012,
275,
271,
3576,
14,
14611,
6974,
15,
190,
187,
688,
33743,
4880,
393,
709,
92,
4538,
27,
49341,
64,
6504,
14,
24115,
64,
36,
276,
4906,
2023,
11237,
273,
3961,
2605,
1955,
281,
13551,
310,
5867,
407,
20452,
273,
734,
14,
12081,
5016,
806,
323,
4430,
21689,
285,
48567,
47482,
38587,
4338,
285,
697,
10096,
327,
38587,
4338,
36494,
1319,
285,
37444,
275,
42394,
2919,
403,
5469,
1754,
327,
11360,
2426,
15,
190,
187,
36442,
474,
1543,
403,
2011,
275,
33743,
4880,
393,
709,
92,
4538,
27,
36442,
474,
64,
9340,
94,
285,
247,
2159,
6010,
310,
1677,
275,
33743,
4880,
393,
709,
92,
4538,
27,
18548,
64,
395,
64,
18786,
7165,
190,
187,
61,
1148,
190,
187,
61,
4674,
92,
19013,
13395,
32676,
20877,
302,
31571,
94,
393,
1968,
92,
4538,
27,
19013,
13395,
64,
10697,
4006,
64,
45787,
302,
31571,
94,
190,
187,
1231,
1908,
247,
38587,
4338,
10571,
42394,
347,
12800,
275,
2667,
4880,
393,
709,
92,
1470,
27,
6623,
1595,
2348,
64,
14546,
94,
313,
66,
481,
190,
187,
510,
4871,
273,
253,
42394,
2919,
310,
17007,
407,
370,
45,
64,
39,
16,
19,
5,
285,
326,
273,
253,
22627,
2919,
407,
370,
45,
64,
36,
16,
19,
1352,
190,
187,
1231,
452,
190,
187,
61,
2043,
92,
29813,
94,
190,
187,
45,
64,
39,
559,
418,
64,
36,
426,
418,
13,
190,
187,
61,
423,
92,
29813,
94,
190,
187,
2811,
370,
45,
5,
310,
253,
30341,
15,
190,
187,
2841,
393,
709,
92,
1470,
27,
6623,
1595,
2348,
64,
14546,
94,
313,
67,
10,
2722,
253,
2440,
3711,
15,
190,
187,
510,
9402,
310,
3798,
7616,
407,
22926,
4972,
2367,
3342,
418,
3303,
3969,
281,
253,
30341,
13,
891,
15,
70,
904,
370,
45,
30,
21837,
3342,
418,
8589,
1352,
190,
187,
510,
3884,
273,
2367,
3342,
418,
724,
4080,
432,
253,
11593,
3884,
310,
1925,
253,
22926,
6907,
285,
17007,
407,
669,
1464,
1352,
190,
187,
61,
1148,
190,
187,
688,
2667,
4880,
393,
709,
92,
1470,
27,
6623,
1595,
2348,
64,
14546,
94,
313,
67,
582,
253,
987,
1133,
1930,
273,
253,
1386,
8136,
949,
253,
1127,
473,
387,
9722,
7597,
61
] |
TOAST specialises in the creation of tailored content for social media in the different formats these platforms require. By continually updating our knowledge in the audiovisual sphere and using an evolving approach to communication strategies, we have acquired the tools to appreciate and master the changes that have radically overhauled the way we consume information.
Today, as well as creating videos and photos, we also provide comprehensive project guidance to promote your content in line with your communication strategy, from ideas right through to publishing.
The pioneering and creative vision, energy, motivation and passion that have driven us from the start are still our greatest strength today.<|endoftext|>The stormy, dark and mysterious sky in this image reminds me of El Greco's view of Toledo. This astonishing full arc rainbow was captured up in Dove Mountain.
Regardless of how many times I see a rainbow, each one still thrills me!<|endoftext|>Q: reverse last and first name and remove comma Is there a way not to us the radio button but execute javascript automatically?
I see i'm using.click function, which command need to be used for execute it automatically?
Thank you for the advice.
$(document).ready(function () {
$("input[name='change_last_first']").click(function () {
$(".name").each(function() {
var revName = $(this).text().split(" ").reverse().join(" ");
$(this).text(revName);
});
});
});
function name(str) {
return(str.replace(/,/g,''));
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input name="change_last_first" value="first" type="radio" >First Last,
<table>
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name">Willis, James</td>
</tr>
<tr>
<td class="name">Handson Willis</td>
</tr>
<tr>
<td class="name">Anderson, Sarah</td>
</tr>
<tr>
<td class="name">Pandora, Jim</td>
</tr>
</tbody>
</table>
A: To make this work on load just remove the click() handler, and place your each() logic directly within the document.ready handler.
That being said, you can improve the logic by providing a function to text() which iterates over all elements in the collection. This function accepts the current text value of the element as an argument which you can amend and use to return the new value. Finally you can split() the text by comma or whitespace in order to remove the trailing comma which is left in some cases by your current code.
With all that said, try this
jQuery(function($) {
$(".name").text(function(i, t) {
return t.split(/,|\s/).reverse().join(" ");
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table>
<thead>
<tr><th>Name</th></tr>
</thead>
<tbody>
<tr><td class="name">Willis, James</td></tr>
<tr><td class="name">Handson Willis</td></tr>
<tr><td class="name">Anderson, Sarah</td></tr>
<tr><td class="name">Pandora, Jim</td></tr>
</tbody>
</table>
<|endoftext|>T_T!! I just switched back to my civic and went for an inspection today..
I am with belairdirect so I had to do it..
Anyways I have a 97 dx and the guy checked the engine and saw a b16..
He saids my insurance wont go up but do yoiu guys think it will go up?
if he said it wont go up.. maybe.. it wont??
but thats only the inspector telling me it wont go up..
Also he said I dont have to tell tell my insuranmce company about the swap..
but I guess I will see what happends..
But usually will a swap increase insurance since it increases the value of the car?
Insurance doesn't cover the engine "breaking".
If you decide not to disclose it to the insurance company and you get in an accident, they can either void your policy and give you nothing, or they can give you what the car is worth "stock".
If you tell them, and the insurance goes up $5/mth you're fully covered and have no issues if you are in an accident. BUT, if you tell them, they might decide NOT to cover you in the first place.
You can always call them and not tell them your name, then just ask if they would insure your type of car, and if so, what the raised price would be, if any.
By the way, the insurance would go up, not because it makes the car worth more, but because it's now a higher risk for theft and because it's faster, accidents. If you're under 25, there's more risk of you being immature and street racing with it, etc. Get it?
The car isn't worth more, but more risk is associated with insuring the car.
No, I don't think they know yet. He just got the inspection (not too much rust, no broken windows or existing damage, etc). The mechanic that did the report might have disclosed it, but he might not have.
I think he is doing you a favour and not disclosing the fact that you have swapped in a B16. Most likely you will be cancelled with Bel-Air judging by what has happened to other people that have ran into issues with them. If your lucky they might allow it as a B16 was available in your chassis.
the engine wont effect your ins, i have belair, and i have a zc vtec in my 95 cx and the inspector said the same thing "that isn't stock." my insurance never went up. i'm 19, g2 and still only pay 200 a month.<|endoftext|>Paraphrasing of copyrighted material may, under certain circumstances, constitute copyright infringement. In most countries that have national copyright laws, copyright applies to the original expression in a work rather than to the meanings or ideas being expressed. Whether a paraphrase is an infringement of expression, or a permissible restatement of an idea, is not a binary question but a matter of degree. Copyright law in common law countries tries to avoid theoretical discussion of the nature of ideas and expression such as this, taking a more pragmatic view of what is called the idea/expression dichotomy. The acceptable degree of difference between a prior work and a paraphrase depends on a variety of factors and ultimately depends on the judgement of the court in each individual case.
In Germany
An early example of the concept of paraphrasing as a copyright issue arose with Johann Heinrich Zedler's application in 1730 for copyright protection in Saxony for his Grosses vollständiges Universal-Lexicon, one of the first encyclopedias.
The publisher of a rival General Historical Lexicon said that Zedler's Universal Lexicon would not differ in content from this and other existing lexicons apart from paraphrasing.
On 16 October 1730, the Upper Consistory court in Dresden rejected Zedler's request, and warned that he would be subject to confiscation and a fine if he reproduced any material from the General Historical Lexicon in his Universal Lexicon.
In the Soviet Union
The Soviet Union's Copyright Act of 1925 in essence said that a work created by a minimal paraphrase of an existing text could be considered a new work eligible for copyright.
By 1991, the Copyright law of the Soviet Union had evolved to give much more protection to the author.
Free use, similar to the English common law concept of fair use, was only allowed if it did not infringe upon the normal exploitation of the work or the legitimate interests of the author.
In the United States
United States copyright law protects original expressions but not facts, methods, discoveries, or other ideas being expressed, a doctrine known as the idea–expression distinction. Despite making this distinction, verbatim copying is not always required for copyright infringement, as paraphrasing is also prohibited in certain circumstances.
US copyright law originates in the Copyright Clause (Article I, Section 8, Clause 8) of the Constitution, and has been the subject of several federal statutes, most recently the Copyright Act of 1976. The basic two-part test for copyright infringement under the 1976 Act, described by the US Supreme Court in Feist Publications, Inc., v. Rural Telephone Service Co., is (1) whether there is a valid copyright, and (2) whether there has been improper copying of the copyrighted work.
The second prong also has a two-part test, first articulated in the Second Circuit case Arnstein v. Porter: (a) whether copying occurred (as opposed to independent creation), and (b) whether the copying amounts to an " | redpajama | [
7058,
17643,
2714,
3013,
275,
253,
8869,
273,
27846,
2600,
323,
2675,
3420,
275,
253,
1027,
21453,
841,
13498,
2430,
15,
2896,
23265,
22753,
776,
3640,
275,
253,
41174,
729,
261,
780,
15269,
285,
970,
271,
25537,
2746,
281,
5511,
8130,
13,
359,
452,
9288,
253,
5657,
281,
11435,
285,
6303,
253,
2544,
326,
452,
39278,
689,
3227,
8263,
253,
1039,
359,
21409,
1491,
15,
187,
14569,
13,
347,
973,
347,
6153,
10556,
285,
7963,
13,
359,
671,
2085,
11088,
2199,
12925,
281,
8591,
634,
2600,
275,
1386,
342,
634,
5511,
5700,
13,
432,
5697,
987,
949,
281,
18051,
15,
187,
510,
45200,
285,
10995,
8113,
13,
2341,
13,
16038,
285,
9908,
326,
452,
8877,
441,
432,
253,
1265,
403,
1335,
776,
6459,
4757,
3063,
15,
50279,
510,
9902,
90,
13,
3644,
285,
19796,
8467,
275,
436,
2460,
25264,
479,
273,
3599,
13729,
1940,
434,
1859,
273,
23860,
29091,
15,
831,
35240,
2120,
12423,
37422,
369,
10848,
598,
275,
399,
710,
15939,
15,
187,
47271,
273,
849,
1142,
2069,
309,
923,
247,
37422,
13,
1016,
581,
1335,
7635,
3171,
479,
2,
50279,
50,
27,
8107,
1390,
285,
806,
1416,
285,
5386,
39169,
1680,
627,
247,
1039,
417,
281,
441,
253,
5553,
6409,
533,
13194,
25109,
8356,
32,
209,
187,
42,
923,
891,
1353,
970,
964,
9738,
1159,
13,
534,
3923,
878,
281,
320,
908,
323,
13194,
352,
8356,
32,
209,
187,
8398,
368,
323,
253,
7535,
15,
15267,
187,
6999,
3306,
481,
2038,
9,
3701,
6734,
551,
2379,
50274,
5,
1587,
5423,
60,
1590,
5473,
4168,
64,
6275,
64,
7053,
6038,
6788,
9738,
9,
3701,
6734,
551,
2379,
50270,
5,
29825,
1590,
6788,
14382,
9,
3701,
1082,
551,
50266,
2379,
50266,
2044,
3585,
2402,
426,
3019,
2520,
481,
1156,
5023,
9148,
1587,
346,
481,
32514,
5023,
13956,
1587,
33051,
2379,
50266,
6999,
2520,
481,
1156,
9,
15079,
2402,
558,
2379,
50266,
9897,
2379,
50270,
9897,
2379,
50274,
9897,
2379,
50274,
2379,
50274,
3701,
1416,
9,
1344,
10,
551,
2379,
50274,
2309,
9,
1344,
15,
13481,
33692,
13,
16,
72,
4117,
26811,
190,
187,
94,
187,
29,
3866,
6740,
568,
3614,
1358,
29082,
4305,
15,
18534,
47547,
15,
681,
16,
20742,
16,
26959,
16,
19203,
16,
20,
15,
20,
15,
18,
16,
19203,
15,
1222,
15,
4305,
6750,
3866,
31,
4888,
187,
29,
5423,
1416,
568,
4168,
64,
6275,
64,
7053,
3,
1318,
568,
7053,
3,
1511,
568,
25337,
3,
2239,
6407,
9859,
13,
209,
2379,
50274,
29,
2420,
31,
2379,
50270,
29,
45826,
31,
2379,
50262,
29,
1206,
31,
2379,
50262,
29,
394,
31,
2402,
870,
394,
31,
2379,
50266,
870,
1206,
31,
50269,
2379,
50270,
870,
45826,
31,
50271,
2379,
50269,
29,
30892,
31,
2379,
50266,
29,
1206,
31,
2379,
50262,
29,
2851,
966,
568,
1590,
1138,
12978,
261,
13,
5490,
870,
2851,
31,
2379,
50266,
870,
1206,
31,
2379,
50266,
29,
1206,
31,
2379,
50262,
29,
2851,
966,
568,
1590,
1138,
6288,
1665,
42650,
870,
2851,
31,
2379,
50266,
870,
1206,
31,
2379,
50266,
29,
1206,
31,
2379,
50262,
29,
2851,
966,
568,
1590,
1138,
46460,
13,
15458,
870,
2851,
31,
2379,
50266,
870,
1206,
31,
2379,
50266,
29,
1206,
31,
2379,
50262,
29,
2851,
966,
568,
1590,
1138,
49,
395,
6464,
13,
8438,
870,
2851,
31,
2379,
50266,
870,
1206,
31,
50266,
2379,
50270,
870,
30892,
31,
2379,
50274,
870,
2420,
31,
2756,
187,
34,
27,
1916,
1056,
436,
789,
327,
3301,
816,
5386,
253,
5532,
1082,
16454,
13,
285,
1659,
634,
1016,
1082,
9317,
3587,
1561,
253,
3389,
15,
2038,
16454,
15,
187,
2773,
1146,
753,
13,
368,
476,
3157,
253,
9317,
407,
5277,
247,
1159,
281,
2505,
1082,
534,
10040,
684,
689,
512,
3603,
275,
253,
4849,
15,
831,
1159,
25026,
253,
1655,
2505,
1318,
273,
253,
3284,
347,
271,
4154,
534,
368,
476,
15026,
285,
897,
281,
1091,
253,
747,
1318,
15,
6610,
368,
476,
8085,
1082,
253,
2505,
407,
39169,
390,
19991,
4511,
275,
1340,
281,
5386,
253,
28417,
39169,
534,
310,
1669,
275,
690,
2219,
407,
634,
1655,
2127,
15,
209,
187,
3378,
512,
326,
753,
13,
1611,
436,
535,
187,
36955,
9,
3701,
3914,
10,
551,
2379,
50276,
5,
29825,
1590,
6788,
1156,
9,
3701,
9,
74,
13,
246,
10,
551,
2379,
50274,
2309,
246,
15,
9148,
33692,
13,
3577,
84,
16,
481,
32514,
5023,
13956,
1587,
33051,
2379,
50276,
9897,
190,
187,
9897,
187,
29,
3866,
6740,
568,
3614,
1358,
29082,
4305,
15,
18534,
47547,
15,
681,
16,
20742,
16,
26959,
16,
19203,
16,
20,
15,
20,
15,
18,
16,
19203,
15,
1222,
15,
4305,
6750,
3866,
31,
190,
187,
29,
2420,
31,
2379,
50276,
29,
45826,
31,
2379,
50274,
29,
1206,
2730,
394,
31,
2402,
870,
394,
3073,
1206,
31,
2379,
50276,
870,
45826,
31,
2379,
50276,
29,
30892,
31,
2379,
50274,
29,
1206,
2730,
2851,
966,
568,
1590,
1138,
12978,
261,
13,
5490,
870,
2851,
3073,
1206,
31,
2379,
50274,
29,
1206,
2730,
2851,
966,
568,
1590,
1138,
6288,
1665,
42650,
870,
2851,
3073,
1206,
31,
2379,
50274,
29,
1206,
2730,
2851,
966,
568,
1590,
1138,
46460,
13,
15458,
870,
2851,
3073,
1206,
31,
2379,
50274,
29,
1206,
2730,
2851,
966,
568,
1590,
1138,
49,
395,
6464,
13,
8438,
870,
2851,
3073,
1206,
31,
2379,
50276,
870,
30892,
31,
190,
187,
870,
2420,
31,
2756,
50279,
53,
64,
53,
4672,
309,
816,
17609,
896,
281,
619,
35857,
285,
2427,
323,
271,
15981,
3063,
10712,
187,
42,
717,
342,
1112,
1094,
18711,
594,
309,
574,
281,
513,
352,
537,
187,
6693,
1576,
309,
452,
247,
10694,
18747,
285,
253,
5599,
10141,
253,
3948,
285,
3047,
247,
270,
1036,
537,
187,
1328,
753,
84,
619,
6503,
31451,
564,
598,
533,
513,
340,
10986,
86,
6068,
1158,
352,
588,
564,
598,
32,
187,
338,
344,
753,
352,
31451,
564,
598,
537,
5046,
537,
352,
31451,
8220,
187,
2858,
28763,
760,
253,
34771,
7746,
479,
352,
31451,
564,
598,
537,
187,
9917,
344,
753,
309,
13414,
452,
281,
2028,
2028,
619,
1210,
22017,
78,
336,
2567,
670,
253,
22101,
537,
187,
2858,
309,
5476,
309,
588,
923,
752,
1654,
1727,
537,
187,
1989,
3798,
588,
247,
22101,
2572,
6503,
1580,
352,
5459,
253,
1318,
273,
253,
1113,
32,
187,
14794,
4628,
2506,
626,
3835,
253,
3948,
346,
22071,
3446,
187,
2042,
368,
7617,
417,
281,
17611,
352,
281,
253,
6503,
2567,
285,
368,
755,
275,
271,
7343,
13,
597,
476,
2057,
2991,
634,
3646,
285,
1918,
368,
2717,
13,
390,
597,
476,
1918,
368,
752,
253,
1113,
310,
4409,
346,
17764,
3446,
187,
2042,
368,
2028,
731,
13,
285,
253,
6503,
4566,
598,
370,
22,
16,
78,
394,
368,
1472,
4751,
6107,
285,
452,
642,
3374,
604,
368,
403,
275,
271,
7343,
15,
17706,
13,
604,
368,
2028,
731,
13,
597,
1537,
7617,
5803,
281,
3835,
368,
275,
253,
806,
1659,
15,
187,
1394,
476,
1900,
1067,
731,
285,
417,
2028,
731,
634,
1416,
13,
840,
816,
1642,
604,
597,
651,
26838,
634,
1511,
273,
1113,
13,
285,
604,
594,
13,
752,
253,
5439,
4376,
651,
320,
13,
604,
667,
15,
187,
3463,
253,
1039,
13,
253,
6503,
651,
564,
598,
13,
417,
984,
352,
2789,
253,
1113,
4409,
625,
13,
533,
984,
352,
434,
1024,
247,
2169,
2495,
323,
19610,
285,
984,
352,
434,
7938,
13,
23678,
15,
1310,
368,
1472,
762,
2030,
13,
627,
434,
625,
2495,
273,
368,
1146,
34000,
285,
6406,
16893,
342,
352,
13,
3966,
15,
5057,
352,
32,
187,
510,
1113,
3548,
626,
4409,
625,
13,
533,
625,
2495,
310,
2330,
342,
1210,
981,
253,
1113,
15,
187,
2302,
13,
309,
1053,
626,
1158,
597,
871,
2568,
15,
754,
816,
1694,
253,
15981,
313,
1439,
1512,
1199,
20035,
13,
642,
7154,
8323,
390,
5368,
4723,
13,
3966,
481,
380,
39212,
326,
858,
253,
1304,
1537,
452,
10557,
352,
13,
533,
344,
1537,
417,
452,
15,
187,
42,
1158,
344,
310,
2509,
368,
247,
9796,
285,
417,
4540,
5555,
253,
958,
326,
368,
452,
1863,
6965,
275,
247,
378,
1036,
15,
5595,
2779,
368,
588,
320,
26224,
342,
6512,
14,
24327,
32721,
407,
752,
556,
4592,
281,
643,
952,
326,
452,
6337,
715,
3374,
342,
731,
15,
1310,
634,
13476,
597,
1537,
1581,
352,
347,
247,
378,
1036,
369,
2130,
275,
634,
39271,
15,
187,
783,
3948,
31451,
1055,
634,
1210,
13,
891,
452,
1112,
1094,
13,
285,
891,
452,
247,
1182,
68,
362,
39766,
275,
619,
5325,
48363,
285,
253,
34771,
753,
253,
1072,
2181,
346,
3529,
3548,
626,
5739,
449,
619,
6503,
1620,
2427,
598,
15,
891,
1353,
655,
13,
305,
19,
285,
1335,
760,
2075,
1052,
247,
1770,
15,
50279,
4221,
24596,
2355,
273,
47934,
2144,
778,
13,
762,
2176,
5989,
13,
12647,
9451,
29157,
15,
496,
954,
4343,
326,
452,
3872,
9451,
5323,
13,
9451,
10384,
281,
253,
3236,
2048,
275,
247,
789,
2581,
685,
281,
253,
30460,
390,
5697,
1146,
4469,
15,
12369,
247,
1061,
24596,
511,
310,
271,
29157,
273,
2048,
13,
390,
247,
32588,
1551,
26333,
273,
271,
2934,
13,
310,
417,
247,
8985,
1953,
533,
247,
2647,
273,
4248,
15,
8283,
1569,
275,
1846,
1569,
4343,
14177,
281,
3693,
10527,
5955,
273,
253,
3753,
273,
5697,
285,
2048,
824,
347,
436,
13,
3192,
247,
625,
41585,
1859,
273,
752,
310,
1925,
253,
2934,
16,
17759,
19821,
22438,
15,
380,
12207,
4248,
273,
3064,
875,
247,
2720,
789,
285,
247,
1061,
24596,
511,
7024,
327,
247,
5235,
273,
2616,
285,
9142,
7024,
327,
253,
31536,
273,
253,
1302,
275,
1016,
2060,
1083,
15,
187,
187,
688,
6176,
2490,
187,
1145,
2393,
1650,
273,
253,
4473,
273,
1061,
24596,
2355,
347,
247,
9451,
2523,
20944,
342,
26737,
36029,
5969,
1503,
264,
2146,
434,
2898,
275,
1722,
1229,
323,
9451,
6055,
275,
32008,
2421,
323,
521,
28362,
265,
1936,
77,
29045,
2109,
304,
265,
21312,
14,
38406,
3557,
13,
581,
273,
253,
806,
546,
12642,
11802,
6358,
15,
187,
510,
19600,
273,
247,
16136,
4214,
27424,
24766,
3557,
753,
326,
1503,
264,
2146,
434,
21312,
24766,
3557,
651,
417,
9184,
275,
2600,
432,
436,
285,
643,
5368,
26752,
30585,
7419,
432,
1061,
24596,
2355,
15,
187,
2374,
1668,
4437,
1722,
1229,
13,
253,
24120,
4563,
5934,
1302,
275,
399,
373,
3354,
10945,
1503,
264,
2146,
434,
2748,
13,
285,
14315,
326,
344,
651,
320,
2256,
281,
38509,
318,
285,
247,
4030,
604,
344,
23775,
667,
2144,
432,
253,
4214,
27424,
24766,
3557,
275,
521,
21312,
24766,
3557,
15,
187,
187,
688,
253,
12194,
6398,
209,
187,
510,
12194,
6398,
434,
8283,
3162,
273,
31610,
275,
17718,
753,
326,
247,
789,
3562,
407,
247,
8723,
1061,
24596,
511,
273,
271,
5368,
2505,
812,
320,
2783,
247,
747,
789,
13410,
323,
9451,
15,
187,
3463,
10226,
13,
253,
8283,
1569,
273,
253,
12194,
6398,
574,
16323,
281,
1918,
1199,
625,
6055,
281,
253,
2488,
15,
187,
14344,
897,
13,
2074,
281,
253,
4383,
1846,
1569,
4473,
273,
4344,
897,
13,
369,
760,
4136,
604,
352,
858,
417,
18632,
70,
2220,
253,
2622,
30211,
273,
253,
789,
390,
253,
14905,
6284,
273,
253,
2488,
15,
187,
187,
688,
253,
1986,
2077,
2490,
187,
11586,
2077,
9451,
1569,
24696,
3236,
12091,
533,
417,
5441,
13,
3082,
13,
32912,
13,
390,
643,
5697,
1146,
4469,
13,
247,
12791,
1929,
347,
253,
2934,
1253,
17759,
13812,
15,
9937,
2403,
436,
13812,
13,
2336,
37438,
24699,
310,
417,
1900,
2424,
323,
9451,
29157,
13,
347,
1061,
24596,
2355,
310,
671,
19772,
275,
2176,
5989,
15,
187,
187,
3016,
9451,
1569,
42799,
275,
253,
8283,
26377,
313,
30858,
309,
13,
5238,
854,
13,
26377,
854,
10,
273,
253,
10350,
13,
285,
556,
644,
253,
2256,
273,
2067,
4400,
19195,
13,
954,
4102,
253,
8283,
3162,
273,
14828,
15,
380,
5044,
767,
14,
2003,
1071,
323,
9451,
29157,
762,
253,
14828,
3162,
13,
2529,
407,
253,
1982,
6413,
2111,
275,
5721,
382,
38567,
13,
3690,
904,
362,
15,
34148,
13940,
6198,
6631,
2434,
904,
310,
313,
18,
10,
1880,
627,
310,
247,
3588,
9451,
13,
285,
313,
19,
10,
1880,
627,
556,
644,
14697,
24699,
273,
253,
47934,
789,
15,
187,
510,
1273,
46892,
671,
556,
247,
767,
14,
2003,
1071,
13,
806,
35144,
275,
253,
6347,
6817,
1083,
21155,
6339,
362,
15,
27636,
27,
313,
66,
10,
1880,
24699,
5866,
313,
284,
10066,
281,
3907,
8869,
582,
285,
313,
67,
10,
1880,
253,
24699,
8322,
281,
271,
346
] |
An Insider's Look at Proposing a Session for DrupalCon
Posted on January 24, 2017 by Amber Matz
DrupalCon is a conference and global community gathering that takes place usually twice a year in North America and Europe. Past DrupalCons have spanned the globe and also taken place in India, Colombia, and Australia. DrupalCons are organized by the Drupal Association, a non-profit organization that supports the Drupal community through funding, infrastructure, education, promotion, distribution, and online collaboration on Drupal.org.
DrupalCon North America attracts thousands of users, frontend and backend developers, software engineers, system administrators, designers, UX specialists, content strategists, site owners, site builders, content managers, community leaders, site administrators, business owners, project managers, documentation specialists, trainers, and others that interact with Drupal as a website, as code, as a community, or as an integral part of their organization.
This year in 2017, DrupalCon North America is taking place in Baltimore, Maryland, USA from April 24-28.
DrupalCon Baltimore will feature presentations in 13 session tracks, informal Birds of a Feather gatherings (BoFs), code sprints, social events, pre-conference training workshops, topical summits, and events for first-time attendees and code contributors alike.
Session tracks
The DrupalCon Baltimore session program will include presentations in 13 tracks:
Coding and Development
Core Conversations
User Experience (UX) and Content Strategy
Each track has a track committee consisting of a local chairperson and two global chairpersons. These three people craft the track description and decide which session submissions will be chosen for their track.
Drupalize.Me happens to have two team members serving as local track chairs at DrupalCon Baltimore. Joe Shindelar is the local track chair for the Being Human track and Amber Matz is the local track chair for the Horizons track.
On being a track chair
Here are some thoughts from Joe and Amber on being a track chair:
Joe: Local track chairs define the theme for their track with input from their global chairs and the other track chairs. As the chair for the Being Human track, the definition of the track as a category for "content about the humans that create the software" was already set. My job was to take that very broad definition and refine it for this specific DrupalCon. What are issues that are important in our community right now? What about the larger tech industry as a whole? What am I personally passionate about? So, we tried to take that broad definition and provide people with a bit more guidance about what we are looking for in session proposals.
Amber: The Horizons track has a personal place in my heart because I got to speak in that track last year. This year I sent out a survey to the general public and also polled our sister company Lullabot for some ideas about what they considered "emerging technology" in the Internet world. So our topic suggestions and track description were heavily influenced by the responses to those surveys.
Joe: Our process so far has been mostly weekly meetings in which we've worked to define the tracks, proof each others' descriptions, discuss ideas for increasing the diversity of people submitting sessions, and make decisions regarding the various questions on the session submission form, scholarship funds, and other things related to: 1) getting people to submit sessions so that we can have a diverse pools of speakers and topics to choose from, and 2) putting things in place to make decisions about which of the submitted sessions will be accepted.
Amber: We've also written some blog posts: Built by Humans for Humans and Wanted: Explorers of Tech Horizons
Joe: Regarding communicating with people interested in submitting a session -- I've had a few people reach out to me asking me to review their submission and provide feedback, and a couple others who wanted to chat about either picking a topic, or narrowing the focus of an idea. Pro tip: The number of session submissions increases exponentially during the last week, so submit your session and/or contact the track chairs early if you want feedback. After a certain point there's too little time and too many new submissions for us to provide feedback to everyone.
Joe: Another thing we've done is reach out to people in and out of the community in an attempt to solicit session proposals. I've done this mostly via Twitter, email, and a few from the local community in person.
Amber: Same here. While it's easy to Tweet messages out, it's challenging to know what the impact is. Nevertheless, I have made some interesting new connections with folks in my attempt to reach out.
Joe: I've been working to read and consider sessions as they are submitted. Knowing that there will be a surge of them coming in at the end, I feel that it's important to stay on top of things so that I'm not overwhelmed trying to read everything in just a few days. I'm a little nervous about reading too many submissions in rapid succession and having them start to blur together. So I would rather tackle a few at a time. That's another good reason to get your session in early -- there's less chance of it getting lost in the torrent of new submissions in the last 24 hours.
Amber: I'm excited about the sessions we've received so far in the Horizons track. It's definitely advantageous to get your session in as early as possible because many track chairs, like myself and Joe, are reading them as they come in and inevitably the later ones will get compared to what we've already read. So get yours in early and set the bar high!
Anyone with previous speaking experience (not necessarily at DrupalCon) is invited to submit a session proposal by February 1, 2017. Be sure to read each of the session track descriptions and topic suggestion lists to find the right track for your session proposal.
Tips for submitting a presentation proposal
Here are some suggestions for submitting a proposal:
Pick a topic you're passionate about. That passion (or lack thereof) will show in your submission, your slides, and your presentation. If accepted, you're going to put a lot of time into this, so you'd better pick something that's interesting to you.
Even if you're not "The Expert™", on a particular topic doesn't mean you don't have good things to say. Everyone is at a different place along the spectrum of Drupal expertise, and I promise you've got good information that others will benefit from.
Browse session submissions from previous DrupalCon speakers and compare yours. Is the writing and explanation on the same level?
Pick a pain point, something you have personal experience with, and have some ideas about how to resolve it. Explain that this is what you're going to cover.
Proofread your submission -- better yet, have someone else proofread it for you.
Resources for people submitting session proposals
Here's good article from Gus Childs at Chromatic about his experience getting a session selected at DrupalCon New Orleans: The Road to Speaking at DrupalCon.
You can get feedback from veteran speakers before you submit from the group of volunteers at HelpMeAbstract.com
Contact the DrupalCon Program Manager who will put you in touch with a Session Submission Mentor.
Contact a Session Track team chair. Track teams are listed here and you can contact track team chairs via their Drupal.org contact form.
Find out more about resources and support for speakers here.
Don't neglect proofreading. Have someone else read it through.
Do you identify with an underrepresented group? The people behind the DrupalCon program are dedicated to increasing the diversity of of speakers at DrupalCon. One of the ways they are doing this is through the Inclusion Fund. You can request up to $350 for travel and lodging expense assistance. Find out more on this page.
We hope to see lots of great session proposals in all the tracks. Your contributions as a speaker will help make DrupalCon awesome.
DrupalCon<|endoftext|>Brave Policemen pulled and saved the Old Man out of Crkvena River
March 30, 2021 12:00 PM by Y.Z
The old man tried to climb the shore with the stems, but he could not make it. His lower body was in the water, he was tired and shaking a lot, so he could barely pronounce his name.
This was said by Dusko Dimic, a police officer from Banja Luka who saved the life of 83-year-old V.K. with his heroic act together with his colleague Ognjen Marjanovic.
An unfortunate man accidentally fell into the Crkvena River in the Banja Luka settlement of Laus while walking.
It all occurred on Saturday around 10.45 a.m., when passers-by reported to the police that an elderly man found himself in the riverbed.
According to the report, the old man fell into the water, which was not so deep, but due to the steep and slippery concrete riverbed, the man could not get out and had to call for help.
When the police officers went out on the field, they noticed that the exhausted, frozen, and scared older man was holding on to a stem so that he would not drown.
Police officer Dimic then decided not to wait for the firefighters, who were already contacted, but to react immediately.
Fearing that the old man, who was already running out of strength, would drown by the time the firefighters arrived, the brave policeman came down into the riverbed and embraced him with his arms.
“My work colleague Ognjen Marjanovic, who was on the shore, found a wooden pallet, which he lowered into the riverbed so I could reach it. I leaned it | redpajama | [
1145,
6995,
1334,
434,
9870,
387,
1294,
28163,
247,
28674,
323,
3196,
33020,
1773,
187,
25698,
327,
4247,
2164,
13,
4240,
407,
41131,
6397,
91,
187,
9034,
33020,
1773,
310,
247,
8059,
285,
4156,
3114,
16778,
326,
3936,
1659,
3798,
7019,
247,
807,
275,
3729,
3968,
285,
3060,
15,
20840,
3196,
33020,
9323,
452,
40423,
253,
20902,
285,
671,
2668,
1659,
275,
5427,
13,
31003,
13,
285,
6976,
15,
3196,
33020,
9323,
403,
10932,
407,
253,
3196,
33020,
7115,
13,
247,
1327,
14,
15608,
6003,
326,
8525,
253,
3196,
33020,
3114,
949,
8362,
13,
11319,
13,
4730,
13,
14892,
13,
3268,
13,
285,
3909,
14448,
327,
3196,
33020,
15,
2061,
15,
187,
9034,
33020,
1773,
3729,
3968,
45465,
6763,
273,
4212,
13,
2914,
423,
285,
31446,
12259,
13,
3694,
19414,
13,
985,
30015,
13,
22507,
13,
530,
57,
27371,
13,
2600,
3483,
1346,
13,
2670,
9891,
13,
2670,
44267,
13,
2600,
15071,
13,
3114,
7038,
13,
2670,
30015,
13,
2136,
9891,
13,
2199,
15071,
13,
10097,
27371,
13,
47366,
13,
285,
2571,
326,
8008,
342,
3196,
33020,
347,
247,
4422,
13,
347,
2127,
13,
347,
247,
3114,
13,
390,
347,
271,
9909,
629,
273,
616,
6003,
15,
187,
1552,
807,
275,
4240,
13,
3196,
33020,
1773,
3729,
3968,
310,
3192,
1659,
275,
19585,
13,
15812,
13,
5106,
432,
4162,
2164,
14,
1619,
15,
187,
9034,
33020,
1773,
19585,
588,
4735,
27228,
275,
2145,
6874,
11411,
13,
25040,
43328,
273,
247,
5721,
1226,
50084,
313,
11478,
13139,
582,
2127,
8689,
23578,
13,
2675,
3394,
13,
638,
14,
585,
1793,
3733,
29561,
13,
32323,
14568,
953,
13,
285,
3394,
323,
806,
14,
2606,
36994,
285,
2127,
24781,
19605,
15,
187,
16282,
11411,
187,
510,
3196,
33020,
1773,
19585,
6874,
2086,
588,
2486,
27228,
275,
2145,
11411,
27,
187,
36,
4442,
285,
9753,
187,
13745,
1716,
735,
569,
187,
6989,
26962,
313,
21466,
10,
285,
17215,
32988,
187,
11837,
3540,
556,
247,
3540,
9353,
11253,
273,
247,
1980,
6951,
10816,
285,
767,
4156,
6951,
5726,
790,
15,
2053,
1264,
952,
11072,
253,
3540,
5740,
285,
7617,
534,
6874,
35103,
588,
320,
6777,
323,
616,
3540,
15,
187,
9034,
33020,
907,
15,
5072,
6569,
281,
452,
767,
2285,
2758,
9417,
347,
1980,
3540,
21583,
387,
3196,
33020,
1773,
19585,
15,
9915,
1608,
527,
293,
274,
310,
253,
1980,
3540,
6951,
323,
253,
16688,
8801,
3540,
285,
41131,
6397,
91,
310,
253,
1980,
3540,
6951,
323,
253,
12294,
478,
790,
3540,
15,
187,
2374,
1146,
247,
3540,
6951,
187,
4943,
403,
690,
7906,
432,
9915,
285,
41131,
327,
1146,
247,
3540,
6951,
27,
187,
28440,
27,
11629,
3540,
21583,
4853,
253,
10014,
323,
616,
3540,
342,
3280,
432,
616,
4156,
21583,
285,
253,
643,
3540,
21583,
15,
1284,
253,
6951,
323,
253,
16688,
8801,
3540,
13,
253,
5426,
273,
253,
3540,
347,
247,
7140,
323,
346,
6071,
670,
253,
7497,
326,
2794,
253,
3694,
3,
369,
2168,
873,
15,
2752,
2628,
369,
281,
1379,
326,
1077,
3862,
5426,
285,
39494,
352,
323,
436,
2173,
3196,
33020,
1773,
15,
1737,
403,
3374,
326,
403,
1774,
275,
776,
3114,
987,
1024,
32,
1737,
670,
253,
4067,
13817,
4491,
347,
247,
2644,
32,
1737,
717,
309,
11697,
22500,
670,
32,
1893,
13,
359,
3597,
281,
1379,
326,
3862,
5426,
285,
2085,
952,
342,
247,
2372,
625,
12925,
670,
752,
359,
403,
2819,
323,
275,
6874,
18595,
15,
187,
34,
2480,
27,
380,
12294,
478,
790,
3540,
556,
247,
3367,
1659,
275,
619,
2798,
984,
309,
1694,
281,
3984,
275,
326,
3540,
1390,
807,
15,
831,
807,
309,
2197,
562,
247,
6630,
281,
253,
2087,
1345,
285,
671,
877,
1070,
776,
7586,
2567,
418,
962,
357,
302,
323,
690,
5697,
670,
752,
597,
2783,
346,
37114,
272,
4302,
3,
275,
253,
7336,
1533,
15,
1893,
776,
9400,
13991,
285,
3540,
5740,
497,
11306,
12208,
407,
253,
6128,
281,
1110,
17276,
15,
187,
28440,
27,
3824,
1232,
594,
2080,
556,
644,
6571,
13772,
12225,
275,
534,
359,
1849,
4307,
281,
4853,
253,
11411,
13,
4737,
1016,
2571,
8,
20121,
13,
2319,
5697,
323,
3629,
253,
9991,
273,
952,
29315,
12154,
13,
285,
1056,
7089,
5001,
253,
2710,
3533,
327,
253,
6874,
19529,
830,
13,
26104,
8064,
13,
285,
643,
1841,
2905,
281,
27,
337,
10,
2970,
952,
281,
11929,
12154,
594,
326,
359,
476,
452,
247,
11117,
24283,
273,
17999,
285,
12989,
281,
5206,
432,
13,
285,
374,
10,
8133,
1841,
275,
1659,
281,
1056,
7089,
670,
534,
273,
253,
9262,
12154,
588,
320,
7607,
15,
187,
34,
2480,
27,
844,
1849,
671,
3542,
690,
5311,
9319,
27,
41898,
407,
48982,
323,
48982,
285,
411,
9581,
27,
14499,
43770,
273,
18447,
12294,
478,
790,
187,
28440,
27,
30696,
26728,
342,
952,
6110,
275,
29315,
247,
6874,
1969,
309,
1849,
574,
247,
1643,
952,
3986,
562,
281,
479,
7004,
479,
281,
2278,
616,
19529,
285,
2085,
8680,
13,
285,
247,
4564,
2571,
665,
3078,
281,
12939,
670,
2057,
8871,
247,
9400,
13,
390,
44746,
253,
2770,
273,
271,
2934,
15,
1294,
9092,
27,
380,
1180,
273,
6874,
35103,
5459,
28596,
1309,
253,
1390,
2129,
13,
594,
11929,
634,
6874,
285,
16,
263,
3057,
253,
3540,
21583,
2393,
604,
368,
971,
8680,
15,
2732,
247,
2176,
1127,
627,
434,
1512,
1652,
673,
285,
1512,
1142,
747,
35103,
323,
441,
281,
2085,
8680,
281,
4130,
15,
187,
28440,
27,
8035,
2181,
359,
1849,
2218,
310,
3986,
562,
281,
952,
275,
285,
562,
273,
253,
3114,
275,
271,
3177,
281,
37391,
6874,
18595,
15,
309,
1849,
2218,
436,
6571,
3066,
7879,
13,
4579,
13,
285,
247,
1643,
432,
253,
1980,
3114,
275,
1436,
15,
187,
34,
2480,
27,
26197,
1060,
15,
3900,
352,
434,
3477,
281,
308,
8775,
8169,
562,
13,
352,
434,
11132,
281,
871,
752,
253,
3486,
310,
15,
12257,
13,
309,
452,
1160,
690,
4722,
747,
10291,
342,
12633,
275,
619,
3177,
281,
3986,
562,
15,
187,
28440,
27,
309,
1849,
644,
2444,
281,
1239,
285,
1908,
12154,
347,
597,
403,
9262,
15,
40828,
326,
627,
588,
320,
247,
12061,
273,
731,
3551,
275,
387,
253,
990,
13,
309,
1928,
326,
352,
434,
1774,
281,
3297,
327,
1755,
273,
1841,
594,
326,
309,
1353,
417,
29991,
2820,
281,
1239,
3253,
275,
816,
247,
1643,
1897,
15,
309,
1353,
247,
1652,
11219,
670,
4361,
1512,
1142,
35103,
275,
5233,
27262,
285,
1907,
731,
1265,
281,
29017,
2366,
15,
1893,
309,
651,
2581,
18915,
247,
1643,
387,
247,
673,
15,
2064,
434,
1529,
1175,
1921,
281,
755,
634,
6874,
275,
2393,
1969,
627,
434,
1679,
4839,
273,
352,
2970,
3663,
275,
253,
38163,
273,
747,
35103,
275,
253,
1390,
2164,
3038,
15,
187,
34,
2480,
27,
309,
1353,
9049,
670,
253,
12154,
359,
1849,
2959,
594,
2080,
275,
253,
12294,
478,
790,
3540,
15,
733,
434,
7964,
24400,
281,
755,
634,
6874,
275,
347,
2393,
347,
1896,
984,
1142,
3540,
21583,
13,
751,
4266,
285,
9915,
13,
403,
4361,
731,
347,
597,
1705,
275,
285,
24473,
253,
1996,
4394,
588,
755,
2429,
281,
752,
359,
1849,
2168,
1239,
15,
1893,
755,
13298,
275,
2393,
285,
873,
253,
2534,
1029,
2,
187,
31568,
342,
2045,
8288,
2793,
313,
1439,
7933,
387,
3196,
33020,
1773,
10,
310,
12470,
281,
11929,
247,
6874,
10419,
407,
5080,
337,
13,
4240,
15,
2325,
2119,
281,
1239,
1016,
273,
253,
6874,
3540,
20121,
285,
9400,
14876,
10894,
281,
1089,
253,
987,
3540,
323,
634,
6874,
10419,
15,
187,
53,
2824,
323,
29315,
247,
9759,
10419,
187,
4943,
403,
690,
13991,
323,
29315,
247,
10419,
27,
187,
36942,
247,
9400,
368,
1472,
22500,
670,
15,
2064,
9908,
313,
263,
3480,
10445,
10,
588,
921,
275,
634,
19529,
13,
634,
19459,
13,
285,
634,
9759,
15,
1310,
7607,
13,
368,
1472,
1469,
281,
1691,
247,
2257,
273,
673,
715,
436,
13,
594,
368,
1871,
1805,
2619,
1633,
326,
434,
4722,
281,
368,
15,
187,
9586,
604,
368,
1472,
417,
346,
510,
40900,
14313,
995,
327,
247,
1798,
9400,
2506,
626,
1599,
368,
1053,
626,
452,
1175,
1841,
281,
1333,
15,
17814,
310,
387,
247,
1027,
1659,
2112,
253,
6637,
273,
3196,
33020,
15040,
13,
285,
309,
9023,
368,
1849,
1694,
1175,
1491,
326,
2571,
588,
5649,
432,
15,
187,
35,
736,
339,
6874,
35103,
432,
2045,
3196,
33020,
1773,
17999,
285,
7277,
13298,
15,
1680,
253,
4028,
285,
8813,
327,
253,
1072,
1268,
32,
187,
36942,
247,
3075,
1127,
13,
1633,
368,
452,
3367,
2793,
342,
13,
285,
452,
690,
5697,
670,
849,
281,
11322,
352,
15,
14499,
404,
326,
436,
310,
752,
368,
1472,
1469,
281,
3835,
15,
187,
19545,
1088,
634,
19529,
1969,
1805,
2568,
13,
452,
3095,
2010,
4737,
1088,
352,
323,
368,
15,
187,
22804,
323,
952,
29315,
6874,
18595,
187,
4943,
434,
1175,
3929,
432,
46194,
8347,
84,
387,
26595,
1420,
670,
521,
2793,
2970,
247,
6874,
4236,
387,
3196,
33020,
1773,
1457,
20159,
27,
380,
8669,
281,
41547,
387,
3196,
33020,
1773,
15,
187,
1394,
476,
755,
8680,
432,
18425,
17999,
1078,
368,
11929,
432,
253,
1387,
273,
15986,
387,
21695,
5072,
17441,
15,
681,
187,
21056,
253,
3196,
33020,
1773,
8246,
15821,
665,
588,
1691,
368,
275,
5181,
342,
247,
28674,
4974,
2230,
48253,
263,
15,
187,
21056,
247,
28674,
31633,
2285,
6951,
15,
31633,
6671,
403,
7117,
1060,
285,
368,
476,
3057,
3540,
2285,
21583,
3066,
616,
3196,
33020,
15,
2061,
3057,
830,
15,
187,
9867,
562,
625,
670,
5300,
285,
1329,
323,
17999,
1060,
15,
187,
5498,
626,
18369,
4737,
24042,
15,
12238,
3095,
2010,
1239,
352,
949,
15,
187,
4045,
368,
4271,
342,
271,
762,
33174,
1387,
32,
380,
952,
3212,
253,
3196,
33020,
1773,
2086,
403,
9940,
281,
3629,
253,
9991,
273,
273,
17999,
387,
3196,
33020,
1773,
15,
2596,
273,
253,
4088,
597,
403,
2509,
436,
310,
949,
253,
496,
3444,
10980,
15,
1422,
476,
2748,
598,
281,
370,
16552,
323,
4288,
285,
22237,
3390,
14247,
8385,
15,
9985,
562,
625,
327,
436,
3239,
15,
187,
1231,
3524,
281,
923,
8783,
273,
1270,
6874,
18595,
275,
512,
253,
11411,
15,
5402,
9021,
347,
247,
14925,
588,
1361,
1056,
3196,
33020,
1773,
13103,
15,
187,
9034,
33020,
1773,
50279,
32893,
306,
47670,
14745,
7320,
285,
9809,
253,
8937,
3083,
562,
273,
7306,
76,
1261,
66,
7121,
187,
18489,
1884,
13,
43425,
1249,
27,
361,
5365,
407,
714,
15,
59,
187,
510,
1711,
637,
3597,
281,
12394,
253,
16838,
342,
253,
23880,
13,
533,
344,
812,
417,
1056,
352,
15,
3032,
2406,
2133,
369,
275,
253,
1824,
13,
344,
369,
11870,
285,
18577,
247,
2257,
13,
594,
344,
812,
12345,
39640,
521,
1416,
15,
187,
1552,
369,
753,
407,
399,
316,
7381,
18025,
280,
13,
247,
3513,
5908,
432,
16456,
6362,
418,
25501,
665,
9809,
253,
1495,
273,
11439,
14,
2913,
14,
744,
657,
15,
44,
15,
342,
521,
36715,
769,
2366,
342,
521,
25459,
473,
3757,
22289,
2398,
17551,
32733,
15,
187,
1145,
23293,
637,
26187,
6497,
715,
253,
7306,
76,
1261,
66,
7121,
275,
253,
16456,
6362,
418,
25501,
10858,
273,
418,
666,
1223,
7824,
15,
187,
1147,
512,
5866,
327,
7814,
1475,
884,
15,
1857,
247,
15,
78,
904,
672,
1509,
398,
14,
1615,
2361,
281,
253,
3513,
326,
271,
13988,
637,
1119,
2994,
275,
253,
8281,
3026,
15,
187,
7130,
281,
253,
1304,
13,
253,
1711,
637,
6497,
715,
253,
1824,
13,
534,
369,
417,
594,
3676,
13,
533,
1955,
281,
253,
16624,
285,
46903,
11859,
8281,
3026,
13,
253,
637,
812,
417,
755,
562,
285,
574,
281,
1067,
323,
1361,
15,
187,
3039,
253,
3513,
6251,
2427,
562,
327,
253,
1673,
13,
597,
8344,
326,
253,
20802,
13,
13831,
13,
285,
16060,
5662,
637,
369,
5877,
327,
281,
247,
8424,
594,
326,
344,
651,
417,
277,
2924,
15,
187,
24195,
5908,
18025,
280,
840,
4425,
417,
281,
3343,
323,
253,
45399,
13,
665,
497,
2168,
18203,
13,
533,
281,
8071,
4745,
15,
187,
39,
10745,
326,
253,
1711,
637,
13,
665,
369,
2168,
3515,
562,
273,
4757,
13,
651,
277,
2924,
407,
253,
673,
253,
45399,
7244,
13,
253,
21189,
40677,
2210,
1066,
715,
253,
8281,
3026,
285,
28729,
779,
342,
521,
6174,
15,
187,
1628,
3220,
789,
25459,
473,
3757,
22289,
2398,
17551,
32733,
13,
665,
369,
327,
253,
16838,
13,
1119,
247,
14872,
5796,
1059,
13,
534,
344,
17892,
715,
253,
8281,
3026,
594,
309,
812,
3986,
352,
15,
309,
18274,
352
] |
-tuning appropriate system configurations.
The contributions of this research are as follows:
\begin{itemize}
\item
We propose a user-centered and extensible monitoring framework, which includes tooling for analyzing any JVM-based system.
\item
We present an analysis that highlights the capabilities of Apache Kafka regarding the maximum achievable rate of incoming records per time unit.
\item
We enable reproducibility of the presented results by making all needed artifacts available online\footnote{\url{https://github.com/guenter-hesse/KafkaAnalysisTools}}.
\end{itemize}
The rest of the paper is structured as follows: In Section~\ref{sec:kafka} we give a brief introduction of Apache Kafka.
Section~\ref{sec:monarch} presents the benchmark setup and the developed data sender tool.
Subsequently, we describe the results of the ingestion rate analyses.
Section~\ref{chap:rw} introduces related work and Section~\ref{sec:lessonslearned} elaborates on the lessons learned.
The last chapter concludes the study and outlines areas of future work.
\section{Apache Kafka}
\label{sec:kafka}
Apache Kafka is a distributed open-source message broker or messaging system originally developed at \emph{LinkedIn} in 2010~\cite{kafkaLinkedin}.
The core of this publish-subscribe system is a distributed commit log, although it has extended its scope through extensions.
An example is Kafka Streams~\cite{kafkaStreams}, a client library for developing stream processing applications.
The high-level architecture of an exemplary Apache Kafka cluster is visualized in Figure~\ref{fig:kafkaarch}.
A cluster consists of multiple brokers, which are numbered and store data assigned to topics.
Data producers send data to a certain topic stored in the cluster.
Consumers subscribe to a topic and are forwarded new values sent to this topic as soon as they arrive.
\begin{figure}[!htb]
\centering
\includegraphics[width=\columnwidth]{img/kafkaarch}
\caption{Apache Kafka cluster architecture (based on~\cite{kreps2011kafka})}
\label{fig:kafkaarch}
\end{figure}
Topics are divided into partitions.
The number of topic partitions can be configured at the time of topic creation.
Partitions of a single topic can be distributed across different brokers of a cluster.
However, a message order across partitions is not guaranteed by Apache Kafka~\cite{kafka,kreps2011kafka}.
Next to the number of partitions, it is possible to define a replication factor for each topic, one being the minimum.
This allows preventing data loss in the case of a single broker failure.
In the context of replication, Apache Kafka defines \emph{leaders} and \emph{followers} for each partition.
The leader handles all reads and writes for the corresponding topic partition, whereas followers copy or replicate the inserted data.
In Figure~\ref{fig:kafkaarch}, the leader partitions are shown in bold type.
The first topic, \textit{topic1} has two partitions and a replication factor of one, while \textit{topic2} has only one partition and a replication factor of two~\cite{kafka}.
Figure~\ref{fig:kafkapartitions} shows the structure of an Apache Kafka topic, specifically of a topic with two partitions.
Each of these partitions is an ordered and immutable record sequence where new values are appended.
A sequential number is assigned to each topic record within a partition, referred to as an \textit{offset}.
Apache Kafka itself provides the topic \textit{\_\_consumer\_offsets} for storing the offsets.
However, consumers must manage their \textit{offset}.
They can commit their current \textit{offset} either automatically in certain intervals or manually.
The latter can be done either synchronously or asynchronously.
When polling data, a consumer needs to pass the \textit{offset} to the cluster.
Apache Kafka returns all messages with a greater \textit{offset}, i.e., all new messages that have not already been sent to this consumer.
As the consumer has control over its \textit{offset}, it can also decide to start from the beginning and to reread messages~\cite{kafka}.
\begin{figure}[!htb]
\centering
\includegraphics[width=0.9\columnwidth]{img/kafkapartitions}
\caption{Apache Kafka topic structure (based on~\cite{kafkaProducerConfig})}
\label{fig:kafkapartitions}
\end{figure}
Furthermore, Apache Kafka can be configured to use the \textit{LogAppendTime} feature, which induces Apache Kafka to assign a timestamp to each message once it is appended to the log.
The existing alternative, which represents the default value, is \textit{CreateTime}.
In this setting, the timestamp created by the Apache Kafka producer when creating the message, i.e., before sending it, is stored along with the message.
For transmitting messages, a producer can require multiple retries, which would increase the difference between the timestamp assigned with a message and the time when it is appended to the log and thus, made available for consuming applications~\cite{kafka}.
\section{Benchmark Setup}
This section introduces the monitoring architecture employed in the ingestion rate study as well as the developed data sender tool.
\subsection{Monitoring Architecture}
\label{sec:monarch}
\begin{sloppypar}
The architecture of the monitoring system is shown in Figure~\ref{fig:arch}.
We use \textit{Grafana}~\cite{grafana}, an open-source tool for creating and managing dashboards and exporting data, as the interface to the user.
The presented benchmarks employ version 5.4.5 of its \textit{docker} image.
OS-level virtualization through docker is used for ease of installation and replicability of results.
The OS base image used in this image allows a simple time zone configuration via an environment variable, which is important for time synchronization among all systems.
Later versions of the image contain a different OS, specifically \textit{Alpine Linux}~\cite{alpinelinux}, which no longer supports this feature.
\end{sloppypar}
\begin{figure}[!htb]
\centering
\includegraphics[width=0.85\columnwidth]{img/arch}
\caption{Monitoring architecture in Fundamental Modeling Concepts (FMC)~\cite{knopfel2005fundamental}}
\label{fig:arch}
\end{figure}
\textit{Grafana} fetches the data to display from \textit{Graphite}~\cite{graphite}, an open-source monitoring tool.
It consists of three components: \textit{Carbon}, \textit{Whisper}, and \textit{Graphite-web}.
\textit{Carbon} is a service that retrieves time-series data, which is stored in \textit{Whisper}, a persistence library.
\textit{Graphite-web} includes an interface for designing dashboards.
However, these dashboards are not as appealing and functionally comprehensive as the corresponding components of \textit{Grafana}, which is why \textit{Grafana} is employed.
For the installation of \textit{Graphite}, the official \textit{docker} image in version 1.1.4 is used, again for time zone configuration reasons.
\textit{Graphite} receives its input from two sources: \textit{collectd}~\cite{collectd} and \textit{jmxtrans}~\cite{jmxtrans}.
The former is a daemon collecting system and application performance metrics, that runs on the broker's machines in the described setup.
It offers plugins for gathering OS-level measurements, such as memory usage, system load, and received or transmitted packages over the network.
\textit{Jmxtrans}, the other data source for \textit{Graphite}, is a tool for collecting JVM runtime metrics.
These metrics are provided via Java Management Extensions (JMX)~\cite{jmx}.
Using \textit{jmxtrans} we tracked internal metrics, such as JVM memory usage, the number of incoming bytes, and the number of messages entering Apache Kafka per time unit.
Apache Kafka is the system under test (SUT) in the evaluation of this paper.
It can be exchanged for any other system running in a JVM, i.e., the proposed architecture is not limited to Apache Kafka or message brokers in general.
The information gathered in \textit{Graphite} is summarized in a \textit{Grafana} dashboard.
Exports of the collected \textit{Grafana} data enable further, more detailed analysis.
\begin{table}[!htb]
\caption{Characteristics of the Apache Kafka broker nodes}
\begin{center}
\begin{tabularx}{\columnwidth}{@{}lX@{}}
\toprule
Characteristic & Value \\ \midrule
Operating system & Ubuntu 18.04.2 LTS \\ | redpajama | [
14,
85,
25004,
4569,
985,
16012,
15,
4888,
187,
510,
9021,
273,
436,
2561,
403,
347,
3637,
27,
190,
187,
61,
2043,
92,
4835,
907,
94,
190,
187,
61,
4835,
190,
187,
1231,
12661,
247,
2608,
14,
34872,
285,
1021,
35418,
8667,
7792,
13,
534,
3797,
4968,
272,
323,
18918,
667,
500,
11804,
14,
3169,
985,
15,
190,
187,
61,
4835,
190,
187,
1231,
1246,
271,
1783,
326,
16681,
253,
13789,
273,
14325,
611,
31393,
5001,
253,
4869,
39941,
2281,
273,
19363,
5861,
591,
673,
3943,
15,
190,
187,
61,
4835,
190,
187,
1231,
8046,
38041,
273,
253,
3559,
1543,
407,
2403,
512,
3058,
24165,
2130,
3909,
61,
8938,
9939,
464,
6434,
92,
3614,
1358,
7280,
15,
681,
16,
4297,
9553,
14,
1041,
339,
16,
44,
31393,
22997,
32953,
47254,
190,
187,
61,
423,
92,
4835,
907,
94,
4888,
187,
510,
1551,
273,
253,
2929,
310,
18872,
347,
3637,
27,
496,
5238,
18078,
709,
92,
1704,
27,
76,
31393,
94,
359,
1918,
247,
4864,
10199,
273,
14325,
611,
31393,
15,
190,
187,
12612,
18078,
709,
92,
1704,
27,
2163,
1116,
94,
10262,
253,
22791,
9978,
285,
253,
3715,
941,
22647,
4968,
15,
190,
187,
5623,
9642,
13,
359,
6266,
253,
1543,
273,
253,
41433,
2281,
6260,
15,
190,
187,
12612,
18078,
709,
92,
34529,
27,
30217,
94,
23970,
2905,
789,
285,
5238,
18078,
709,
92,
1704,
27,
1417,
790,
29343,
264,
94,
14883,
684,
327,
253,
15880,
6311,
15,
190,
187,
510,
1390,
8857,
20097,
253,
1263,
285,
36264,
3672,
273,
2852,
789,
15,
187,
187,
61,
4674,
92,
11538,
2679,
611,
31393,
94,
187,
61,
1968,
92,
1704,
27,
76,
31393,
94,
187,
187,
11538,
2679,
611,
31393,
310,
247,
5939,
1527,
14,
6756,
3935,
23497,
390,
29908,
985,
8927,
3715,
387,
393,
37236,
92,
49967,
688,
94,
275,
4267,
18078,
41766,
92,
76,
31393,
10516,
36777,
7165,
187,
510,
5161,
273,
436,
15452,
14,
31473,
985,
310,
247,
5939,
4514,
2412,
13,
3738,
352,
556,
6508,
697,
7990,
949,
18149,
15,
187,
1145,
1650,
310,
611,
31393,
659,
9779,
18078,
41766,
92,
76,
31393,
998,
9779,
2023,
247,
5268,
6335,
323,
6684,
5542,
5162,
4893,
15,
187,
187,
510,
1029,
14,
5251,
10336,
273,
271,
34093,
14325,
611,
31393,
7368,
310,
27130,
275,
5317,
18078,
709,
92,
926,
27,
76,
31393,
1116,
7165,
187,
34,
7368,
8414,
273,
2709,
45064,
13,
534,
403,
31050,
285,
4657,
941,
7922,
281,
12989,
15,
187,
3233,
18014,
5007,
941,
281,
247,
2176,
9400,
7141,
275,
253,
7368,
15,
187,
9323,
49250,
26302,
281,
247,
9400,
285,
403,
39010,
747,
2193,
2197,
281,
436,
9400,
347,
3517,
347,
597,
12666,
15,
187,
187,
61,
2043,
92,
13206,
11326,
2,
384,
67,
62,
187,
61,
1154,
2158,
187,
61,
249,
741,
909,
1354,
982,
60,
3429,
2029,
33237,
1019,
8428,
16,
76,
31393,
1116,
94,
187,
61,
34480,
92,
11538,
2679,
611,
31393,
7368,
10336,
313,
3169,
327,
18078,
41766,
92,
76,
250,
793,
7330,
76,
31393,
22613,
187,
61,
1968,
92,
926,
27,
76,
31393,
1116,
94,
187,
61,
423,
92,
13206,
94,
187,
187,
11387,
982,
403,
4272,
715,
27959,
15,
187,
510,
1180,
273,
9400,
27959,
476,
320,
15378,
387,
253,
673,
273,
9400,
8869,
15,
187,
7834,
4431,
273,
247,
2014,
9400,
476,
320,
5939,
2439,
1027,
45064,
273,
247,
7368,
15,
187,
6436,
13,
247,
3935,
1340,
2439,
27959,
310,
417,
16293,
407,
14325,
611,
31393,
18078,
41766,
92,
76,
31393,
13,
76,
250,
793,
7330,
76,
31393,
7165,
187,
187,
9301,
281,
253,
1180,
273,
27959,
13,
352,
310,
1896,
281,
4853,
247,
14970,
2803,
323,
1016,
9400,
13,
581,
1146,
253,
5927,
15,
187,
1552,
4483,
13538,
941,
2957,
275,
253,
1083,
273,
247,
2014,
23497,
4433,
15,
187,
688,
253,
3634,
273,
14970,
13,
14325,
611,
31393,
13067,
393,
37236,
92,
282,
16208,
94,
285,
393,
37236,
92,
25739,
398,
94,
323,
1016,
10883,
15,
187,
510,
6657,
22139,
512,
9563,
285,
12013,
323,
253,
3969,
9400,
10883,
13,
5727,
18409,
3491,
390,
25464,
253,
13400,
941,
15,
187,
688,
5317,
18078,
709,
92,
926,
27,
76,
31393,
1116,
2023,
253,
6657,
27959,
403,
2011,
275,
13433,
1511,
15,
187,
510,
806,
9400,
13,
393,
33063,
92,
24841,
18,
94,
556,
767,
27959,
285,
247,
14970,
2803,
273,
581,
13,
1223,
393,
33063,
92,
24841,
19,
94,
556,
760,
581,
10883,
285,
247,
14970,
2803,
273,
767,
18078,
41766,
92,
76,
31393,
7165,
2756,
187,
2841,
18078,
709,
92,
926,
27,
76,
2320,
47130,
435,
4431,
94,
2722,
253,
2605,
273,
271,
14325,
611,
31393,
9400,
13,
5742,
273,
247,
9400,
342,
767,
27959,
15,
187,
11837,
273,
841,
27959,
310,
271,
6960,
285,
4293,
13508,
1924,
3425,
835,
747,
2193,
403,
42873,
15,
187,
34,
22453,
1180,
310,
7922,
281,
1016,
9400,
1924,
1561,
247,
10883,
13,
6289,
281,
347,
271,
393,
33063,
92,
10946,
7165,
187,
11538,
2679,
611,
31393,
3139,
3400,
253,
9400,
393,
33063,
464,
2253,
64,
45908,
2582,
10946,
84,
94,
323,
20073,
253,
41669,
15,
187,
6436,
13,
11349,
1364,
8722,
616,
393,
33063,
92,
10946,
7165,
187,
3726,
476,
4514,
616,
1655,
393,
33063,
92,
10946,
94,
2057,
8356,
275,
2176,
11508,
390,
13542,
15,
187,
510,
6158,
476,
320,
2218,
2057,
11842,
4087,
390,
29307,
4087,
15,
187,
3039,
30587,
941,
13,
247,
10630,
3198,
281,
1509,
253,
393,
33063,
92,
10946,
94,
281,
253,
7368,
15,
187,
11538,
2679,
611,
31393,
6548,
512,
8169,
342,
247,
3687,
393,
33063,
92,
10946,
2023,
891,
15,
70,
904,
512,
747,
8169,
326,
452,
417,
2168,
644,
2197,
281,
436,
10630,
15,
187,
1909,
253,
10630,
556,
1453,
689,
697,
393,
33063,
92,
10946,
2023,
352,
476,
671,
7617,
281,
1265,
432,
253,
5068,
285,
281,
294,
1088,
8169,
18078,
41766,
92,
76,
31393,
7165,
187,
187,
61,
2043,
92,
13206,
11326,
2,
384,
67,
62,
187,
61,
1154,
2158,
187,
61,
249,
741,
909,
1354,
982,
60,
3429,
30,
17,
15,
26,
61,
33237,
1019,
8428,
16,
76,
2320,
47130,
435,
4431,
94,
187,
61,
34480,
92,
11538,
2679,
611,
31393,
9400,
2605,
313,
3169,
327,
18078,
41766,
92,
76,
31393,
1845,
21639,
6155,
22613,
187,
61,
1968,
92,
926,
27,
76,
2320,
47130,
435,
4431,
94,
187,
61,
423,
92,
13206,
94,
187,
187,
20964,
13,
14325,
611,
31393,
476,
320,
15378,
281,
897,
253,
393,
33063,
92,
6800,
33253,
4769,
94,
4735,
13,
534,
14757,
14325,
611,
31393,
281,
9212,
247,
28921,
281,
1016,
3935,
2378,
352,
310,
42873,
281,
253,
2412,
15,
187,
510,
5368,
5795,
13,
534,
6125,
253,
4284,
1318,
13,
310,
393,
33063,
92,
9395,
4769,
7165,
187,
688,
436,
4758,
13,
253,
28921,
3562,
407,
253,
14325,
611,
31393,
14281,
672,
6153,
253,
3935,
13,
891,
15,
70,
904,
1078,
10430,
352,
13,
310,
7141,
2112,
342,
253,
3935,
15,
187,
2214,
25104,
8169,
13,
247,
14281,
476,
2430,
2709,
851,
2246,
13,
534,
651,
2572,
253,
3064,
875,
253,
28921,
7922,
342,
247,
3935,
285,
253,
673,
672,
352,
310,
42873,
281,
253,
2412,
285,
3021,
13,
1160,
2130,
323,
21337,
4893,
18078,
41766,
92,
76,
31393,
7165,
187,
187,
61,
4674,
92,
35,
15152,
4698,
40852,
94,
187,
1552,
2593,
23970,
253,
8667,
10336,
7091,
275,
253,
41433,
2281,
1263,
347,
973,
347,
253,
3715,
941,
22647,
4968,
15,
187,
187,
61,
2377,
4674,
92,
9304,
27305,
35052,
94,
187,
61,
1968,
92,
1704,
27,
2163,
1116,
94,
187,
187,
61,
2043,
92,
3433,
45695,
1148,
94,
187,
510,
10336,
273,
253,
8667,
985,
310,
2011,
275,
5317,
18078,
709,
92,
926,
27,
1116,
7165,
187,
1231,
897,
393,
33063,
92,
40,
41226,
3230,
94,
18078,
41766,
92,
17676,
71,
3230,
2023,
271,
1527,
14,
6756,
4968,
323,
6153,
285,
14419,
20134,
19184,
285,
13474,
272,
941,
13,
347,
253,
5673,
281,
253,
2608,
15,
187,
510,
3559,
49602,
2126,
2715,
608,
15,
21,
15,
22,
273,
697,
393,
33063,
92,
31510,
94,
2460,
15,
187,
2697,
14,
5251,
7503,
1320,
949,
36191,
310,
908,
323,
11990,
273,
12692,
285,
7446,
1430,
273,
1543,
15,
187,
510,
9485,
2613,
2460,
908,
275,
436,
2460,
4483,
247,
2969,
673,
8232,
6661,
3066,
271,
3126,
4778,
13,
534,
310,
1774,
323,
673,
27801,
2190,
512,
2718,
15,
187,
24801,
9508,
273,
253,
2460,
3831,
247,
1027,
9485,
13,
5742,
393,
33063,
92,
2422,
23344,
13492,
94,
18078,
41766,
92,
267,
9852,
293,
8810,
2023,
534,
642,
3356,
8525,
436,
4735,
15,
187,
61,
423,
92,
3433,
45695,
1148,
94,
187,
187,
61,
2043,
92,
13206,
11326,
2,
384,
67,
62,
187,
61,
1154,
2158,
187,
61,
249,
741,
909,
1354,
982,
60,
3429,
30,
17,
15,
2227,
61,
33237,
1019,
8428,
16,
1116,
94,
187,
61,
34480,
92,
9304,
27305,
10336,
275,
10980,
27569,
4559,
8855,
38298,
84,
313,
39,
7722,
16799,
61,
41766,
92,
3696,
412,
28353,
9204,
19431,
27569,
599,
187,
61,
1968,
92,
926,
27,
1116,
94,
187,
61,
423,
92,
13206,
94,
535,
187,
61,
33063,
92,
40,
41226,
3230,
94,
8264,
2706,
253,
941,
281,
3148,
432,
393,
33063,
92,
15499,
614,
94,
18078,
41766,
92,
10580,
614,
2023,
271,
1527,
14,
6756,
8667,
4968,
15,
187,
1147,
8414,
273,
1264,
4295,
27,
393,
33063,
92,
10697,
4006,
2023,
393,
33063,
92,
3152,
261,
468,
2023,
285,
393,
33063,
92,
15499,
614,
14,
7585,
7165,
187,
61,
33063,
92,
10697,
4006,
94,
310,
247,
2579,
326,
12802,
265,
673,
14,
22253,
941,
13,
534,
310,
7141,
275,
393,
33063,
92,
3152,
261,
468,
2023,
247,
25306,
6335,
15,
187,
61,
33063,
92,
15499,
614,
14,
7585,
94,
3797,
271,
5673,
323,
20462,
20134,
19184,
15,
187,
6436,
13,
841,
20134,
19184,
403,
417,
347,
23176,
285,
30333,
11088,
347,
253,
3969,
4295,
273,
393,
33063,
92,
40,
41226,
3230,
2023,
534,
310,
2139,
393,
33063,
92,
40,
41226,
3230,
94,
310,
7091,
15,
187,
2214,
253,
12692,
273,
393,
33063,
92,
15499,
614,
2023,
253,
3565,
393,
33063,
92,
31510,
94,
2460,
275,
2715,
337,
15,
18,
15,
21,
310,
908,
13,
969,
323,
673,
8232,
6661,
4606,
15,
535,
187,
61,
33063,
92,
15499,
614,
94,
14488,
697,
3280,
432,
767,
4973,
27,
393,
33063,
92,
23865,
69,
94,
18078,
41766,
92,
23865,
69,
94,
285,
393,
33063,
92,
30999,
633,
16147,
94,
18078,
41766,
92,
30999,
633,
16147,
7165,
187,
510,
3438,
310,
247,
4204,
15125,
17055,
985,
285,
2898,
3045,
17082,
13,
326,
6613,
327,
253,
23497,
434,
10679,
275,
253,
2529,
9978,
15,
187,
1147,
6131,
28437,
323,
16778,
9485,
14,
5251,
6341,
13,
824,
347,
3541,
10393,
13,
985,
3301,
13,
285,
2959,
390,
12573,
12149,
689,
253,
2990,
15,
187,
187,
61,
33063,
92,
43,
78,
633,
16147,
2023,
253,
643,
941,
2603,
323,
393,
33063,
92,
15499,
614,
2023,
310,
247,
4968,
323,
17055,
500,
11804,
20243,
17082,
15,
187,
6872,
17082,
403,
2530,
3066,
8595,
11354,
9052,
5354,
313,
43,
32310,
16799,
61,
41766,
92,
75,
26652,
7165,
187,
11888,
393,
33063,
92,
30999,
633,
16147,
94,
359,
27173,
4812,
17082,
13,
824,
347,
500,
11804,
3541,
10393,
13,
253,
1180,
273,
19363,
11061,
13,
285,
253,
1180,
273,
8169,
11734,
14325,
611,
31393,
591,
673,
3943,
15,
187,
187,
11538,
2679,
611,
31393,
310,
253,
985,
762,
1071,
313,
52,
3329,
10,
275,
253,
7103,
273,
436,
2929,
15,
187,
1147,
476,
320,
25920,
323,
667,
643,
985,
3515,
275,
247,
500,
11804,
13,
891,
15,
70,
904,
253,
4081,
10336,
310,
417,
3710,
281,
14325,
611,
31393,
390,
3935,
45064,
275,
2087,
15,
187,
510,
1491,
13037,
275,
393,
33063,
92,
15499,
614,
94,
310,
17903,
275,
247,
393,
33063,
92,
40,
41226,
3230,
94,
38458,
15,
187,
1672,
4124,
273,
253,
5728,
393,
33063,
92,
40,
41226,
3230,
94,
941,
8046,
2007,
13,
625,
7000,
1783,
15,
187,
187,
61,
2043,
92,
2420,
11326,
2,
384,
67,
62,
187,
61,
34480,
92,
47592,
273,
253,
14325,
611,
31393,
23497,
7632,
94,
187,
61,
2043,
92,
9229,
94,
187,
61,
2043,
92,
8476,
792,
89,
2704,
33237,
1217,
33,
15564,
77,
57,
26778,
599,
187,
61,
3956,
15093,
187,
21260,
2531,
708,
11740,
3202,
393,
7893,
15093,
187,
10996,
839,
985,
50263,
7,
50276,
40614,
1283,
15,
2125,
15,
19,
418,
6901,
50274,
3353
] |
}. The $\FDR$, which is often used in (very)
high-dimensional settings such as gene expression studies uses another error
definition by relating the number of false discoveries to the number of rejected
null hypotheses. One can show that in a given test situation
\begin{equation*}
\FDR \leq \FWER,
\end{equation*}
and thus for a fixed level $\alpha$, $\FWER$-control is more conservative than
$\FDR$-control \citep{Dudoit2003}. In conclusion, it holds that $\FDR \leq \FWER
\leq \PFER$. Controlling the $\PFER$ is a (very) conservative approach for
controlling errors in multiple testing situations. Hence, a procedure that
controls the $\PFER$ at a certain level $\alpha$ also controls all other error
rates discussed in this section at this level. Obviously the error bound will be
very conservative upper bound for both the $\FWER$ and $\FDR$.
The standard approach for hypotheses testing, neglecting multiplicity, would be
to specify a bound for the per-comparison error rate by using a significance
level $\alpha$, e.g. $\alpha = 0.05$. This is equal to specifying $\PFERmax \leq
m \alpha$. This provides some guidance on how to choose an upper bound for the
$\PFER$: Usually, $\alpha \leq \PFERmax \leq m \alpha$ seems a good choice,
where $\PFERmax = \alpha$ would (conservatively) control the $\FWER$ on the
level $\alpha$, while $\PFERmax = m \alpha$ would control the unadjusted
per-comparison error rate on the level $\alpha$. Everything in between can be
considered to control the $\PCER$ on the level $\alpha$ ``with some multiplicity
adjustment''.
\section{Empirical Evaluation}
\label{sec:empirical-evaluation}
To evaluate the impact of the tuning parameters $q$ and $\pi_{\text{thr}}$, the upper
bound $\PFERmax$, and the assumptions for the computation of the upper bound on
the selection properties, we conducted a simulation study using boosting in
conjunction with stability selection. Additionally, we examined the impact of
the characteristics of the data set on the performance.
We considered a classification problem with a binary outcome variable. The data
were generated according to a linear logistic regression model with linear
predictor $\eta = \mathbf{X}\beta$ and
\begin{equation*}
Y \sim \text{Binom}\left(\frac{\exp(\eta)}{1 + \exp(\eta)}\right).
\end{equation*}
The observations $x_i = (x_{i1}, \ldots, x_{ip}),\; i = 1, \ldots, n$ were
independently drawn from
\begin{equation*}
x \sim \mathcal{N}(0, \Sigma),
\end{equation*}
and gathered in the design matrix $\mathbf{X}$. We set the number of predictor variables
to $p \in \{100, 500, 1000\}$, and the number of observations to $n \in \{50,
100, 500\}$. The number of influential variables varied within $p_{\text{infl}}
\in \{2, 3, 8\}$, where $\beta_j$ was sampled from $\{-1, 1\}$ for an
influential variable and set to zero for all non-influential variables. We used
two settings for the design matrix:
\begin{enumerate}
\item independent predictor variables, i.e.\ $\Sigma = \mathbf{I}$,
\item and correlated predictor variables drawn from a Toeplitz design with
covariance matrix $\Sigma_{kl} = 0.9^{|k - l|},\; k,l = 1, \ldots, p$.
\end{enumerate}
For each of the data settings we used all three error bounds in combination with
varying parameters $\pi_{\text{thr}} \in \{0.6, 0.75, 0.9\}$, and $\PFERmax \in \{0.05, 1,
2, 5\}$. We used the standard subsampling scheme with $B = 100$ subsamples for
the error bound~(E\ref{item:errorbound1}) and complementary pairs with $B = 50$
subsamples for the improved error bounds~(E\ref{item:errorbound2}) and
(E\ref{item:errorbound3}). Each simulation setting was repeated 50 times.
\subsection{Results}
\label{sec:results_sim}
Figure~\ref{fig:TPR} displays the true positive rates for different $\PFERmax$
bounds, the three assumptions (E\ref{item:errorbound1}) to
(E\ref{item:errorbound3}) and for the two correlation schemes. Different sizes
of the data set ($n$ and $p$) as well as different numbers of true positives
($p_{\text{infl}}$) were not depicted as separate boxplots. For each upper bound
$\PFERmax$ and each data situation (uncorrelated/Toeplitz), the true positive
rate (TPR) increased with stronger assumptions (E\ref{item:errorbound1}) to
(E\ref{item:errorbound3}). The true positive rate was lower when the predictors
were correlated.
\input{fig_TPR}
If the number of observations $n$ increased, the TPR increased as well with more
extreme cases for uncorrelated predictors (see Appendix;
Figure~\ref{fig:TPR_by_n}). With very few observations ($n = 50$), the TPR was
generally very small. Considering the size of the subsamples, which is equal to
25, this is quite natural. Recently, \cite{Schmid_etal_PAUC_2012} advocated to
increase the sample size of the subsamples from $\lfloor n/2 \rfloor$ to larger
values to avoid biased selection of base-learners due to too small samples. Yet,
as discussed above, this is currently not possible, as one would need to derive
a different error bound for that situation. Conversely, the TPR decreases with
an increasing number of truly influential variables $p_{\text{infl}}$ (see
Appendix; Figure~\ref{fig:TPR_by_pinfl}). The threshold $\pi_{\text{thr}}$ is less
important (see Appendix; Figure~\ref{fig:TPR_by_cutoff}), as long as it is large
enough to result in enough variables $q$ to be selected and not too large so
that too many variables would be selected in each run (see Appendix;
Figure~\ref{fig:TPR_by_q_and_pinfl}). Note that the dependence on the threshold
is stronger in the case with correlated observations.
The number of false positives, which is bounded by the upper bound for the
per-family error rate, is depicted in Figure~\ref{fig:FP}. Overall, the error
rate seemed to be well controlled with some violations of the less conservative
bounds in the median settings. However, overall the error bound was violated in
only 1.2 \% (4 cases) under the unimodality assumption and 4.0 \% (13 cases)
under the r-concavity assumption. Especially the standard error bound
(E\ref{item:errorbound1}) seemed to be conservatively controlled. The average
number of false positives increased with increasing $\PFERmax$ and with stronger
distributional assumptions on the simultaneous selection probabilities. In
general, one should note that stability selection is quite conservative as it
controls the $\PFER$. The given upper bounds for the $\PFER$ corresponded to
per-comparison error rates between $0.05$ and $0.00005$.
\input{fig_FP}
If the number of observations $n$ increased, the number of false positives
decreased on average but the variability increased as well (see Appendix;
Figure~\ref{fig:FP_by_n}). The number of false positives showed a tendency to
decrease with an increasing number of truly influential variables
$p_{\text{infl}}$ (see Appendix; Figure~\ref{fig:FP_by_pinfl}). If the threshold
$\pi_{\text{thr}}$ was larger, i.e., only highly frequently selected variables were
considered to be stable, the number of false positives decreased (see Appendix;
Figure~\ref{fig:FP_by_cutoff}). Yet, considering the corresponding number of
selected variables per boosting run $q$ (which is inversely related to the
threshold $\pi_{\text{thr}}$), one could see that not only large values of $q$ lead to low
numbers of false positives but also small values (\ref{fig:FP_by_q_and_pinfl}).
This observation is somehow contrary to the optimal choices of $q$ with respect
to the true positive rate. However, an optimal true positive rate is more
important than a low number of false positives as long as the error rate is
controlled.
\section{Case Study: Differential Phenotype Expression for ASD patients versus
controls}
\label{sec:data-analysis}
We examined autism spectrum disorder (ASD) patients \citep{Manning:ASD: | redpajama | [
7165,
380,
669,
39,
4976,
1366,
534,
310,
2223,
908,
275,
313,
635,
10,
187,
8656,
14,
6967,
7533,
824,
347,
3320,
2048,
2175,
4648,
1529,
2228,
187,
28692,
407,
12600,
253,
1180,
273,
3221,
32912,
281,
253,
1180,
273,
10945,
187,
8629,
24316,
15,
2596,
476,
921,
326,
275,
247,
1677,
1071,
4112,
187,
61,
2043,
92,
29813,
33029,
187,
50276,
61,
39,
4976,
393,
3040,
393,
20941,
947,
13,
187,
61,
423,
92,
29813,
33029,
187,
395,
3021,
323,
247,
4229,
1268,
669,
1637,
1366,
669,
20941,
947,
2911,
8519,
310,
625,
11518,
685,
187,
1202,
39,
4976,
2911,
8519,
393,
10179,
554,
92,
37,
16469,
262,
9755,
7165,
496,
6452,
13,
352,
6556,
326,
669,
39,
4976,
393,
3040,
393,
20941,
947,
187,
61,
3040,
393,
14981,
947,
1352,
3267,
19891,
253,
669,
14981,
947,
5,
310,
247,
313,
635,
10,
11518,
2746,
323,
187,
1987,
19891,
6332,
275,
2709,
5175,
9534,
15,
7757,
13,
247,
5199,
326,
187,
38211,
253,
669,
14981,
947,
5,
387,
247,
2176,
1268,
669,
1637,
5,
671,
5760,
512,
643,
2228,
187,
27619,
5469,
275,
436,
2593,
387,
436,
1268,
15,
22469,
253,
2228,
3033,
588,
320,
187,
635,
11518,
5170,
3033,
323,
1097,
253,
669,
20941,
947,
5,
285,
669,
39,
4976,
1352,
187,
187,
510,
2629,
2746,
323,
24316,
5175,
13,
18369,
272,
29994,
13,
651,
320,
187,
936,
13199,
247,
3033,
323,
253,
591,
14,
47109,
2228,
2281,
407,
970,
247,
8453,
187,
5251,
669,
1637,
1366,
299,
15,
72,
15,
669,
1637,
426,
470,
15,
1762,
1352,
831,
310,
4503,
281,
31238,
669,
14981,
947,
4090,
393,
3040,
187,
78,
393,
1637,
1352,
831,
3400,
690,
12925,
327,
849,
281,
5206,
271,
5170,
3033,
323,
253,
187,
1202,
14981,
947,
18965,
25683,
13,
669,
1637,
393,
3040,
393,
14981,
947,
4090,
393,
3040,
278,
393,
1637,
5,
3133,
247,
1175,
4327,
13,
187,
2811,
669,
14981,
947,
4090,
426,
393,
1637,
5,
651,
313,
36157,
3146,
10,
1453,
253,
669,
20941,
947,
5,
327,
253,
187,
5251,
669,
1637,
1366,
1223,
669,
14981,
947,
4090,
426,
278,
393,
1637,
5,
651,
1453,
253,
440,
23811,
187,
468,
14,
47109,
2228,
2281,
327,
253,
1268,
669,
1637,
1352,
16942,
275,
875,
476,
320,
187,
46779,
281,
1453,
253,
669,
5077,
947,
5,
327,
253,
1268,
669,
1637,
5,
20890,
3113,
690,
29994,
187,
18570,
420,
8,
5983,
187,
187,
61,
4674,
92,
39976,
45756,
27605,
94,
187,
61,
1968,
92,
1704,
27,
358,
5378,
474,
14,
15419,
2368,
94,
187,
187,
1992,
7472,
253,
3486,
273,
253,
25184,
3602,
370,
82,
5,
285,
669,
2059,
1126,
1156,
92,
394,
83,
12460,
253,
5170,
187,
9458,
669,
14981,
947,
4090,
1366,
285,
253,
13260,
323,
253,
13782,
273,
253,
5170,
3033,
327,
187,
783,
5438,
3607,
13,
359,
5196,
247,
9864,
1263,
970,
43124,
275,
187,
585,
45148,
342,
7882,
5438,
15,
9157,
13,
359,
6730,
253,
3486,
273,
187,
783,
5319,
273,
253,
941,
873,
327,
253,
3045,
15,
187,
187,
1231,
2783,
247,
9162,
1895,
342,
247,
8985,
6454,
4778,
15,
380,
941,
187,
12796,
4561,
2556,
281,
247,
4872,
21535,
9077,
1566,
342,
4872,
187,
12787,
8617,
669,
1464,
426,
393,
2407,
92,
57,
889,
2461,
5,
285,
187,
61,
2043,
92,
29813,
33029,
187,
50276,
58,
393,
3549,
393,
1156,
92,
38601,
297,
889,
1274,
1035,
1124,
464,
4347,
1035,
1464,
9783,
18,
559,
393,
4347,
1035,
1464,
7398,
918,
481,
187,
61,
423,
92,
29813,
33029,
187,
510,
7313,
370,
89,
64,
74,
426,
313,
89,
578,
74,
18,
2023,
393,
5589,
13,
1269,
578,
532,
46257,
28,
891,
426,
337,
13,
393,
5589,
13,
295,
5,
497,
187,
527,
2008,
1574,
8392,
432,
187,
61,
2043,
92,
29813,
33029,
187,
50276,
89,
393,
3549,
393,
1588,
92,
47,
1603,
17,
13,
393,
6199,
582,
187,
61,
423,
92,
29813,
33029,
187,
395,
13037,
275,
253,
2216,
4315,
669,
2407,
92,
57,
3363,
844,
873,
253,
1180,
273,
23403,
4903,
187,
936,
370,
81,
393,
249,
9121,
2313,
13,
6783,
13,
9098,
22805,
285,
253,
1180,
273,
7313,
281,
370,
79,
393,
249,
9121,
1235,
13,
187,
2313,
13,
6783,
19562,
380,
1180,
273,
20803,
4903,
12848,
1561,
370,
81,
1126,
1156,
92,
11006,
599,
187,
61,
249,
9121,
19,
13,
495,
13,
854,
22805,
835,
669,
2461,
64,
75,
5,
369,
19958,
432,
669,
10241,
18,
13,
337,
10952,
323,
271,
187,
249,
8501,
1624,
4778,
285,
873,
281,
5058,
323,
512,
1327,
14,
249,
8501,
1624,
4903,
15,
844,
908,
187,
9389,
7533,
323,
253,
2216,
4315,
27,
187,
61,
2043,
92,
14379,
5034,
94,
187,
61,
4835,
3907,
23403,
4903,
13,
891,
15,
70,
4880,
669,
6199,
426,
393,
2407,
92,
42,
3303,
187,
61,
4835,
285,
9578,
23403,
4903,
8392,
432,
247,
1916,
70,
4403,
91,
2216,
342,
187,
50276,
31485,
14417,
4315,
669,
6199,
578,
7261,
94,
426,
470,
15,
26,
768,
93,
76,
428,
298,
93,
5548,
28,
465,
13,
77,
426,
337,
13,
393,
5589,
13,
268,
1352,
187,
61,
423,
92,
14379,
5034,
94,
187,
187,
2214,
1016,
273,
253,
941,
7533,
359,
908,
512,
1264,
2228,
14493,
275,
5019,
342,
187,
39381,
272,
3602,
669,
2059,
1126,
1156,
92,
394,
83,
599,
393,
249,
9121,
17,
15,
23,
13,
470,
15,
1976,
13,
470,
15,
26,
22805,
285,
669,
14981,
947,
4090,
393,
249,
9121,
17,
15,
1762,
13,
337,
13,
187,
19,
13,
608,
19562,
844,
908,
253,
2629,
8790,
312,
4906,
6974,
342,
370,
35,
426,
2233,
5,
8790,
10240,
323,
187,
783,
2228,
3033,
26452,
38,
61,
709,
92,
4835,
27,
3775,
9458,
18,
2311,
285,
19767,
8557,
342,
370,
35,
426,
2456,
5,
187,
2377,
33380,
323,
253,
5520,
2228,
14493,
26452,
38,
61,
709,
92,
4835,
27,
3775,
9458,
19,
2311,
285,
187,
9,
38,
61,
709,
92,
4835,
27,
3775,
9458,
20,
38331,
5815,
9864,
4758,
369,
6015,
2456,
2069,
15,
187,
187,
61,
2377,
4674,
92,
9340,
94,
187,
61,
1968,
92,
1704,
27,
16680,
64,
3549,
94,
187,
187,
2841,
18078,
709,
92,
926,
27,
53,
3175,
94,
12646,
253,
2032,
2762,
4142,
323,
1027,
669,
14981,
947,
4090,
5,
187,
35800,
13,
253,
1264,
13260,
313,
38,
61,
709,
92,
4835,
27,
3775,
9458,
18,
2311,
281,
187,
9,
38,
61,
709,
92,
4835,
27,
3775,
9458,
20,
2311,
285,
323,
253,
767,
5921,
15849,
15,
13773,
9552,
187,
1171,
253,
941,
873,
4816,
79,
5,
285,
370,
81,
7884,
347,
973,
347,
1027,
3904,
273,
2032,
37865,
187,
3914,
81,
1126,
1156,
92,
11006,
4018,
10,
497,
417,
17253,
347,
4858,
3817,
42045,
15,
1198,
1016,
5170,
3033,
187,
1202,
14981,
947,
4090,
5,
285,
1016,
941,
4112,
313,
328,
5528,
4919,
16,
1992,
70,
4403,
91,
582,
253,
2032,
2762,
187,
4427,
313,
53,
3175,
10,
2559,
342,
10046,
13260,
313,
38,
61,
709,
92,
4835,
27,
3775,
9458,
18,
2311,
281,
187,
9,
38,
61,
709,
92,
4835,
27,
3775,
9458,
20,
38331,
380,
2032,
2762,
2281,
369,
2406,
672,
253,
23477,
187,
12796,
9578,
15,
187,
187,
61,
5423,
92,
926,
64,
53,
3175,
94,
187,
187,
2042,
253,
1180,
273,
7313,
370,
79,
5,
2559,
13,
253,
308,
3175,
2559,
347,
973,
342,
625,
187,
2068,
4190,
2219,
323,
41656,
4919,
23477,
313,
2887,
17138,
28,
187,
2841,
18078,
709,
92,
926,
27,
53,
3175,
64,
1615,
64,
79,
38331,
2726,
1077,
1643,
7313,
4816,
79,
426,
2456,
17673,
253,
308,
3175,
369,
187,
43786,
1077,
1355,
15,
24258,
253,
1979,
273,
253,
8790,
10240,
13,
534,
310,
4503,
281,
187,
1099,
13,
436,
310,
3240,
3626,
15,
17746,
13,
393,
41766,
92,
10859,
7893,
64,
16190,
64,
4899,
10579,
64,
6755,
94,
36431,
281,
187,
19687,
511,
253,
3410,
1979,
273,
253,
8790,
10240,
432,
669,
30489,
295,
16,
19,
393,
30266,
5,
281,
4067,
187,
8858,
281,
3693,
23539,
5438,
273,
2613,
14,
29343,
398,
1955,
281,
1512,
1355,
3530,
15,
9110,
13,
187,
284,
5469,
1840,
13,
436,
310,
4390,
417,
1896,
13,
347,
581,
651,
878,
281,
15313,
187,
66,
1027,
2228,
3033,
323,
326,
4112,
15,
24646,
13,
253,
308,
3175,
12075,
342,
187,
266,
3629,
1180,
273,
7777,
20803,
4903,
370,
81,
1126,
1156,
92,
11006,
4018,
313,
2887,
187,
31796,
28,
5317,
18078,
709,
92,
926,
27,
53,
3175,
64,
1615,
64,
9852,
1258,
38331,
380,
7887,
669,
2059,
1126,
1156,
92,
394,
83,
4018,
310,
1679,
187,
18108,
313,
2887,
17138,
28,
5317,
18078,
709,
92,
926,
27,
53,
3175,
64,
1615,
64,
7317,
2727,
22286,
347,
1048,
347,
352,
310,
1781,
187,
40252,
281,
906,
275,
2217,
4903,
370,
82,
5,
281,
320,
4236,
285,
417,
1512,
1781,
594,
187,
3529,
1512,
1142,
4903,
651,
320,
4236,
275,
1016,
1408,
313,
2887,
17138,
28,
187,
2841,
18078,
709,
92,
926,
27,
53,
3175,
64,
1615,
64,
82,
64,
395,
64,
9852,
1258,
38331,
5838,
326,
253,
10096,
327,
253,
7887,
187,
261,
10046,
275,
253,
1083,
342,
9578,
7313,
15,
187,
187,
510,
1180,
273,
3221,
37865,
13,
534,
310,
11542,
407,
253,
5170,
3033,
323,
253,
187,
468,
14,
11807,
2228,
2281,
13,
310,
17253,
275,
5317,
18078,
709,
92,
926,
27,
7073,
7165,
15699,
13,
253,
2228,
187,
4427,
4455,
281,
320,
973,
6537,
342,
690,
15927,
273,
253,
1679,
11518,
187,
35800,
275,
253,
8876,
7533,
15,
1723,
13,
4583,
253,
2228,
3033,
369,
13588,
275,
187,
7483,
337,
15,
19,
44829,
313,
21,
2219,
10,
762,
253,
32505,
351,
1319,
9376,
285,
577,
15,
17,
44829,
313,
1012,
2219,
10,
187,
4524,
253,
391,
14,
585,
43205,
414,
9376,
15,
23498,
253,
2629,
2228,
3033,
187,
9,
38,
61,
709,
92,
4835,
27,
3775,
9458,
18,
2311,
4455,
281,
320,
6405,
3146,
6537,
15,
380,
3388,
187,
9133,
273,
3221,
37865,
2559,
342,
3629,
669,
14981,
947,
4090,
5,
285,
342,
10046,
187,
35360,
267,
13260,
327,
253,
19645,
5438,
20552,
15,
496,
187,
16691,
13,
581,
943,
3877,
326,
7882,
5438,
310,
3240,
11518,
347,
352,
187,
38211,
253,
669,
14981,
947,
1352,
380,
1677,
5170,
14493,
323,
253,
669,
14981,
947,
5,
40575,
281,
187,
468,
14,
47109,
2228,
4142,
875,
370,
17,
15,
1762,
5,
285,
370,
17,
15,
1418,
22,
1352,
187,
187,
61,
5423,
92,
926,
64,
7073,
94,
187,
187,
2042,
253,
1180,
273,
7313,
370,
79,
5,
2559,
13,
253,
1180,
273,
3221,
37865,
187,
40600,
833,
327,
3388,
533,
253,
13099,
2559,
347,
973,
313,
2887,
17138,
28,
187,
2841,
18078,
709,
92,
926,
27,
7073,
64,
1615,
64,
79,
38331,
380,
1180,
273,
3221,
37865,
2692,
247,
14955,
281,
187,
40600,
511,
342,
271,
3629,
1180,
273,
7777,
20803,
4903,
187,
5,
81,
1126,
1156,
92,
11006,
4018,
313,
2887,
17138,
28,
5317,
18078,
709,
92,
926,
27,
7073,
64,
1615,
64,
9852,
1258,
38331,
1310,
253,
7887,
187,
1202,
2059,
1126,
1156,
92,
394,
83,
4018,
369,
4067,
13,
891,
15,
70,
904,
760,
4122,
7208,
4236,
4903,
497,
187,
46779,
281,
320,
6474,
13,
253,
1180,
273,
3221,
37865,
6137,
313,
2887,
17138,
28,
187,
2841,
18078,
709,
92,
926,
27,
7073,
64,
1615,
64,
7317,
2727,
38331,
9110,
13,
7296,
253,
3969,
1180,
273,
187,
16191,
4903,
591,
43124,
1408,
370,
82,
5,
313,
4609,
310,
39342,
2905,
281,
253,
187,
34503,
669,
2059,
1126,
1156,
92,
394,
83,
4018,
582,
581,
812,
923,
326,
417,
760,
1781,
2193,
273,
370,
82,
5,
1421,
281,
1698,
187,
40957,
273,
3221,
37865,
533,
671,
1355,
2193,
5081,
709,
92,
926,
27,
7073,
64,
1615,
64,
82,
64,
395,
64,
9852,
1258,
38331,
187,
1552,
8310,
310,
10380,
10214,
281,
253,
8654,
10165,
273,
370,
82,
5,
342,
1675,
187,
936,
253,
2032,
2762,
2281,
15,
1723,
13,
271,
8654,
2032,
2762,
2281,
310,
625,
187,
18108,
685,
247,
1698,
1180,
273,
3221,
37865,
347,
1048,
347,
253,
2228,
2281,
310,
187,
16894,
15,
535,
187,
61,
4674,
92,
11247,
12602,
27,
38160,
34689,
5174,
18299,
323,
29895,
1363,
7147,
187,
50276,
38211,
94,
187,
61,
1968,
92,
1704,
27,
2203,
14,
12792,
94,
187,
187,
1231,
6730,
27734,
6637,
8984,
313,
1719,
37,
10,
1363,
393,
10179,
554,
92,
4779,
920,
27,
1719,
37,
27
] |
De Arena da Baixada, voorheen bekend als Estádio Joaquim Américo Guimarães en voor een korte periode Kyocera Arena genoemd, is een voetbalstadion in de Braziliaanse stad Curitiba in de deelstaat Paraná. Het stadion werd gebouwd in 1914 en daarna gerenoveerd in 1999. De Braziliaanse voetbalclub Atlético Paranaense heeft er zijn thuisbasis.
Geschiedenis
Oude stadion
Met de bouw van in het oude stadion was men in 1912 begonnen. Het stadion werd genoemd naar Joaquim Américo Guimarães, de toenmalige voorzitter van de Internacional Futebol Clube, de voorloper van Atlético. De opening was twee jaar later op 6 september 1914 en de eerste wedstrijd die er gespeeld werd was een duel tussen Internacional en Flamengo, waarbij de thuisclub met 1-7 verloor van de tegenstander uit Rio. Tussen 1970 en 1984 lag het stadion braak en in 1995 en 1996 werd het afgebroken.
Nieuwe stadion
De bouw van het nieuwe stadion duurde van 1 december 1997 tot 20 juni 1999. Het werd geopend op 24 juni 1999 met een wedstrijd tussen Atlético en Cerro Porteño uit Paraguay, deze eindigde in een 2-1-overwinning voor de thuisploeg. De kosten voor het nieuwe stadion bedroegen zo'n 30 miljoen US$. Van maart 2005 tot april 2008 heette het stadion de Kyocera Arena naar het Japanse bedrijf Kyocera.
WK 2014
Op 31 mei 2009 werd het stadion gekozen als een van de stadions voor het Wereldkampioenschap, dat in Brazilië zou plaatsvinden. Op dat moment had het een capaciteit van 25.180 toeschouwers, maar werd voor het wereldkampioenschap uitgebreid tot ruim 40.000. De bouwwerkzaamheden startten in 2011 maar door vertraging was de geplande opening in de zomer van 2013 uitgesteld tot later dat jaar. In januari 2014 dreigde de FIFA om de stad de WK-organisatie uit handen te nemen als het stadion niet snel af kwam.
In april 2014, ruim twee maanden voor aanvang van het kampioenschap, stond de status te boek als niet gereed. Daar waar de deadline in november was, was in april 80% gereed van de voorbereidingen op het toernooi. Desondanks konden vier groepsduels in het stadion worden afgewerkt, met het duel tussen Australië en Spanje als best bezochte wedstrijd.
Interlands
Externe link
Officiële site
Baixada
Voetbalstadion tijdens het Wereldkampioenschap voetbal 2014
Bouwwerk in Paraná (staat)
Sport in Curitiba<|endoftext|>Mayor Karachi Waseem Akhtar proposed that Karachi Municipal Corporation (KMC) hospitals and health institutions expenses will be bear by Karachi businessmen and group of companies.
He told that Karachi gave businessmen many things and now they will return to people of Karachi in the form of donation. The people of Karachi will get great facilities and reliefs after the completion of children emergency block in Abbasi Shaheed Hospital..
KMC hospitals administration and superintends should pay attention regarding facilities and house keeping. He was addressing a conference at the opening ceremony of children emergency department as a guest speaker. Metropolitan commissioner Dr. Saif Ur Rehman, Child life foundation Chief Executive Officer (CEO), Dr. Hussian Rabani, South Chairman Rehan Hashmi, Vice Chairman Syed Shakir Ali, medical committee chair person Naheed Fatima, Senior Director medical services Dr, Berbill, medical superindent Abbas Shaheed hospital Dr. Nadeem Rajput, Children Health Care Superintendent Dr. Professor Sultan Mustafa, other officers, health professors, doctors and students were also presented.<|endoftext|>this.primereact = this.primereact || {};
this.primereact.calendar = (function (exports, React, inputtext, button, core, PrimeReact) {
'use strict';
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e? e : { 'default': e }; }
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
var PrimeReact__default = /*#__PURE__*/_interopDefaultLegacy(PrimeReact);
function _extends() {
_extends = Object.assign || function (target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
return target;
};
return _extends.apply(this, arguments);
}
function _typeof(obj) {
"@babel/helpers - typeof";
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
_typeof = function _typeof(obj) {
return typeof obj;
};
} else {
_typeof = function _typeof(obj) {
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj!== Symbol.prototype? "symbol" : typeof obj;
};
}
return _typeof(obj);
}
function _arrayLikeToArray$1(arr, len) {
if (len == null || len > arr.length) len = arr.length;
for (var i = 0, arr2 = new Array(len); i < len; i++) {
arr2[i] = arr[i];
}
return arr2;
}
function _arrayWithoutHoles(arr) {
if (Array.isArray(arr)) return _arrayLikeToArray$1(arr);
}
function _iterableToArray(iter) {
if (typeof Symbol!== "undefined" && iter[Symbol.iterator]!= null || iter["@@iterator"]!= null) return Array.from(iter);
}
function _unsupportedIterableToArray$1(o, minLen) {
if (!o) return;
if (typeof o === "string") return _arrayLikeToArray$1(o, minLen);
var n = Object.prototype.toString.call(o).slice(8, -1);
if (n === "Object" && o.constructor) n = o.constructor.name;
if (n === "Map" || n === "Set") return Array.from(o);
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$1(o, minLen);
}
function _nonIterableSpread() {
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
function _toConsumableArray(arr) {
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray$1(arr) || _nonIterableSpread();
}
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
function _defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
if (staticProps) _defineProperties(Constructor, staticProps);
return Constructor;
}
function _assertThisInitialized( | redpajama | [
3848,
29410,
4204,
11086,
895,
2960,
13,
13513,
248,
257,
44424,
423,
14350,
8464,
50031,
900,
8174,
35471,
303,
3052,
860,
41242,
3262,
49414,
3312,
265,
546,
13513,
10814,
465,
39002,
24109,
853,
18009,
406,
3525,
29410,
730,
80,
358,
69,
13,
310,
10814,
3273,
292,
7187,
25134,
279,
275,
372,
10869,
571,
46679,
331,
324,
11579,
262,
33068,
275,
372,
372,
293,
18233,
255,
2956,
266,
1757,
15,
33100,
331,
324,
279,
259,
15182,
30722,
276,
14066,
275,
26478,
546,
4204,
25523,
3471,
445,
710,
15182,
275,
7544,
15,
1605,
10869,
571,
46679,
3273,
292,
7187,
34583,
8628,
860,
26869,
2956,
3230,
1215,
32903,
2827,
18949,
289,
25338,
40265,
15,
187,
187,
40,
21099,
728,
257,
261,
187,
187,
48,
2496,
331,
324,
279,
209,
187,
12442,
372,
29909,
88,
3889,
275,
8649,
258,
2496,
331,
324,
279,
369,
1821,
275,
32295,
2353,
251,
26159,
15,
33100,
331,
324,
279,
259,
15182,
730,
80,
358,
69,
41784,
8174,
35471,
303,
3052,
860,
41242,
3262,
49414,
3312,
265,
13,
372,
281,
257,
10367,
9236,
13513,
45609,
3889,
372,
3749,
21376,
401,
1137,
33338,
1639,
4338,
13,
372,
13513,
77,
2211,
3889,
8628,
860,
26869,
15,
1605,
5909,
369,
13660,
70,
8729,
274,
1996,
1121,
721,
22688,
2037,
26478,
546,
372,
39192,
3241,
8764,
296,
23151,
69,
3150,
2827,
32624,
365,
10391,
259,
15182,
369,
10814,
3443,
293,
246,
36357,
3749,
21376,
546,
2884,
312,
38434,
13,
5172,
34113,
1944,
372,
289,
25338,
34583,
1313,
337,
14,
24,
2336,
77,
1887,
3889,
372,
716,
1541,
1676,
254,
26053,
22319,
15,
308,
36357,
10333,
546,
12459,
16653,
8649,
331,
324,
279,
6513,
518,
546,
275,
8878,
546,
8441,
259,
15182,
8649,
6706,
463,
30229,
15,
187,
187,
47,
19683,
664,
331,
324,
279,
209,
187,
3848,
29909,
88,
3889,
8649,
15361,
86,
664,
331,
324,
279,
3443,
321,
615,
3889,
337,
372,
4246,
8210,
1931,
1384,
12468,
74,
7544,
15,
33100,
259,
15182,
3471,
412,
423,
1121,
2164,
12468,
74,
7544,
1313,
10814,
8764,
296,
23151,
69,
246,
36357,
8628,
860,
26869,
546,
28608,
287,
6162,
70,
21000,
26053,
2956,
19438,
333,
13,
33117,
299,
527,
304,
615,
275,
10814,
374,
14,
18,
14,
1189,
23166,
13513,
372,
289,
25338,
446,
80,
909,
15,
1605,
465,
42416,
13513,
8649,
15361,
86,
664,
331,
324,
279,
3722,
287,
27701,
24615,
8,
79,
1884,
2301,
5309,
257,
1982,
1352,
10049,
6429,
435,
5826,
1931,
1049,
21704,
4695,
344,
5464,
8649,
331,
324,
279,
372,
18009,
406,
3525,
29410,
41784,
8649,
4047,
339,
3722,
23151,
71,
18009,
406,
3525,
15,
187,
187,
27767,
4059,
209,
187,
12535,
4562,
479,
74,
4748,
259,
15182,
8649,
331,
324,
279,
305,
1441,
80,
5282,
14350,
10814,
3889,
372,
331,
324,
621,
13513,
8649,
27200,
392,
76,
1301,
900,
561,
34529,
13,
2856,
275,
378,
5744,
3093,
10093,
1182,
276,
24939,
1832,
87,
527,
257,
15,
12605,
2856,
2774,
574,
8649,
10814,
4192,
614,
262,
3889,
2030,
15,
11395,
281,
21099,
276,
49643,
13,
33893,
259,
15182,
13513,
8649,
497,
392,
76,
1301,
900,
561,
34529,
26053,
463,
3381,
301,
1931,
8864,
303,
3387,
15,
933,
15,
1605,
29909,
1477,
9314,
4019,
312,
742,
257,
1265,
1866,
275,
4332,
33893,
3369,
2336,
1206,
2977,
369,
372,
3471,
446,
10273,
5909,
275,
372,
1182,
8056,
3889,
4072,
26053,
3219,
10391,
1931,
1996,
2856,
8729,
274,
15,
496,
480,
40160,
1792,
4059,
45957,
304,
615,
372,
38075,
7005,
372,
331,
324,
372,
411,
44,
14,
7397,
261,
25630,
26053,
1133,
257,
716,
295,
14745,
14350,
8649,
331,
324,
279,
20324,
3802,
293,
6706,
41291,
312,
15,
209,
187,
688,
1049,
21704,
4059,
13,
8864,
303,
13660,
70,
6429,
37925,
13513,
19935,
87,
606,
3889,
8649,
465,
1301,
900,
561,
34529,
13,
331,
857,
372,
3708,
716,
1766,
1441,
14350,
20324,
3471,
22767,
15,
12073,
274,
39964,
372,
20639,
275,
642,
306,
2480,
369,
13,
369,
275,
1049,
21704,
5096,
6,
3471,
22767,
3889,
372,
13513,
1257,
250,
2821,
257,
1121,
8649,
281,
1808,
3288,
74,
15,
3666,
857,
3107,
465,
857,
257,
362,
1321,
7753,
2265,
563,
1241,
275,
8649,
331,
324,
279,
25188,
6706,
463,
8358,
5751,
13,
1313,
8649,
3443,
293,
246,
36357,
4798,
74,
10093,
546,
2101,
266,
5173,
14350,
1682,
36394,
3770,
442,
8764,
296,
23151,
69,
15,
187,
187,
6504,
6056,
187,
187,
1672,
350,
570,
3048,
2490,
50276,
21756,
74,
10093,
282,
2670,
187,
187,
24348,
895,
2960,
187,
28201,
292,
7187,
25134,
279,
246,
1944,
23624,
8649,
27200,
392,
76,
1301,
900,
561,
34529,
3273,
292,
7187,
4059,
187,
35,
276,
1477,
9314,
275,
2956,
266,
1757,
313,
18233,
255,
10,
187,
47477,
275,
11579,
262,
33068,
50279,
6791,
263,
12604,
23712,
411,
511,
358,
14181,
384,
274,
4081,
326,
12604,
23712,
35266,
11294,
313,
44,
7722,
10,
13240,
285,
1786,
10003,
12222,
588,
320,
8800,
407,
12604,
23712,
2136,
3767,
285,
1387,
273,
4413,
15,
187,
1328,
2183,
326,
12604,
23712,
3534,
2136,
3767,
1142,
1841,
285,
1024,
597,
588,
1091,
281,
952,
273,
12604,
23712,
275,
253,
830,
273,
23672,
15,
380,
952,
273,
12604,
23712,
588,
755,
1270,
9189,
285,
6619,
84,
846,
253,
12240,
273,
2151,
8945,
2972,
275,
26153,
9720,
27700,
45217,
8896,
537,
187,
44,
7722,
13240,
5286,
285,
2221,
565,
1727,
943,
2075,
4116,
5001,
9189,
285,
2419,
7562,
15,
754,
369,
15974,
247,
8059,
387,
253,
5909,
16730,
273,
2151,
8945,
7811,
347,
247,
12141,
14925,
15,
28634,
28845,
3196,
15,
10388,
338,
15520,
1720,
38373,
13,
8347,
1495,
12153,
9060,
16155,
12743,
313,
4339,
48,
582,
3196,
15,
44035,
757,
21385,
6451,
13,
3684,
21240,
1720,
5582,
22272,
7373,
13,
17979,
21240,
5619,
264,
1608,
518,
343,
14355,
13,
3739,
9353,
6951,
1436,
6897,
45217,
20609,
8032,
13,
17696,
9966,
3739,
3238,
3196,
13,
6193,
38584,
13,
3739,
2221,
31808,
47979,
27700,
45217,
4675,
3196,
15,
427,
796,
358,
17549,
1065,
13,
12757,
4775,
9776,
44698,
3196,
15,
12734,
43433,
19680,
37124,
13,
643,
6251,
13,
1786,
33108,
13,
11576,
285,
3484,
497,
671,
3559,
15,
50279,
2520,
15,
5994,
22312,
426,
436,
15,
5994,
22312,
2785,
25425,
187,
2520,
15,
5994,
22312,
15,
36913,
426,
313,
3701,
313,
23756,
13,
23782,
13,
3280,
1156,
13,
6409,
13,
5161,
13,
12128,
1785,
514,
10,
551,
187,
50276,
8,
2327,
7654,
5618,
535,
50276,
3701,
795,
2388,
412,
9671,
18596,
1974,
313,
70,
10,
551,
1091,
299,
3857,
29144,
299,
11013,
686,
6082,
8,
3857,
686,
6986,
8,
275,
299,
3736,
299,
1163,
551,
686,
6986,
5295,
299,
7734,
748,
535,
50276,
2044,
23782,
876,
6986,
426,
3476,
4,
876,
7575,
1848,
876,
8480,
64,
2388,
412,
9671,
18596,
1974,
9,
1785,
514,
558,
187,
50276,
2044,
12128,
1785,
514,
876,
6986,
426,
3476,
4,
876,
7575,
1848,
876,
8480,
64,
2388,
412,
9671,
18596,
1974,
9,
41133,
1785,
514,
558,
535,
50276,
3701,
795,
2068,
1727,
1082,
551,
187,
50274,
64,
2068,
1727,
426,
9206,
15,
28704,
2785,
1159,
313,
7831,
10,
551,
187,
50272,
1542,
313,
2044,
891,
426,
337,
28,
891,
654,
7125,
15,
3985,
28,
891,
9234,
551,
187,
50270,
2044,
2603,
426,
7125,
60,
74,
2194,
535,
50270,
1542,
313,
2044,
2234,
275,
2603,
10,
551,
187,
50268,
338,
313,
4241,
15,
18834,
15,
7110,
22585,
8324,
15,
4065,
9,
6756,
13,
2234,
1228,
551,
187,
50266,
7831,
60,
2364,
62,
426,
2603,
60,
2364,
2194,
187,
50268,
94,
187,
50270,
94,
187,
50272,
94,
535,
50272,
2309,
2303,
28,
187,
50274,
4718,
535,
50274,
2309,
795,
2068,
1727,
15,
18788,
9,
2520,
13,
7125,
558,
187,
50276,
94,
535,
50276,
3701,
795,
25833,
9,
9344,
10,
551,
187,
50274,
3,
33,
46998,
16,
2955,
5726,
428,
29144,
3664,
535,
50274,
338,
313,
25833,
42653,
11013,
346,
3701,
3,
3857,
29144,
42653,
15,
17828,
11013,
346,
25354,
2807,
551,
187,
50272,
64,
25833,
426,
1159,
795,
25833,
9,
9344,
10,
551,
187,
50270,
2309,
29144,
10928,
28,
187,
50272,
4718,
187,
50274,
94,
2010,
551,
187,
50272,
64,
25833,
426,
1159,
795,
25833,
9,
9344,
10,
551,
187,
50270,
2309,
10928,
3857,
29144,
42653,
11013,
346,
3701,
3,
3857,
10928,
15,
36073,
11013,
42653,
3857,
10928,
20767,
42653,
15,
18834,
3736,
346,
25354,
3,
1163,
29144,
10928,
28,
187,
50272,
4718,
187,
50274,
94,
535,
50274,
2309,
795,
25833,
9,
9344,
558,
187,
50276,
94,
535,
50276,
3701,
795,
3728,
9817,
1992,
6542,
5,
18,
9,
3298,
13,
8472,
10,
551,
187,
50274,
338,
313,
5025,
2295,
3635,
2785,
8472,
2239,
4077,
15,
3985,
10,
8472,
426,
4077,
15,
3985,
28,
535,
50274,
1542,
313,
2044,
891,
426,
470,
13,
4077,
19,
426,
747,
11782,
9,
5025,
558,
891,
654,
8472,
28,
891,
9234,
551,
187,
50272,
3298,
19,
60,
74,
62,
426,
4077,
60,
74,
2194,
187,
50274,
94,
535,
50274,
2309,
4077,
19,
28,
187,
50276,
94,
535,
50276,
3701,
795,
3728,
20696,
41,
3841,
9,
3298,
10,
551,
187,
50274,
338,
313,
6542,
15,
261,
6542,
9,
3298,
1228,
1091,
795,
3728,
9817,
1992,
6542,
5,
18,
9,
3298,
558,
187,
50276,
94,
535,
50276,
3701,
795,
2562,
494,
1992,
6542,
9,
2562,
10,
551,
187,
50274,
338,
313,
25833,
42653,
20767,
346,
31549,
3,
3857,
10040,
60,
29046,
15,
17828,
62,
3613,
3635,
2785,
10040,
9855,
22610,
17828,
9686,
3613,
3635,
10,
1091,
11782,
15,
4064,
9,
2562,
558,
187,
50276,
94,
535,
50276,
3701,
795,
328,
19391,
15628,
494,
1992,
6542,
5,
18,
9,
80,
13,
1054,
18378,
10,
551,
187,
50274,
338,
6522,
80,
10,
1091,
28,
187,
50274,
338,
313,
25833,
258,
11013,
346,
2703,
2807,
1091,
795,
3728,
9817,
1992,
6542,
5,
18,
9,
80,
13,
1054,
18378,
558,
187,
50274,
2044,
295,
426,
9206,
15,
18834,
15,
18264,
15,
4065,
9,
80,
481,
27494,
9,
25,
13,
428,
18,
558,
187,
50274,
338,
313,
79,
11013,
346,
4241,
3,
3857,
258,
15,
36073,
10,
295,
426,
258,
15,
36073,
15,
1590,
28,
187,
50274,
338,
313,
79,
11013,
346,
6648,
3,
2785,
295,
11013,
346,
4531,
2807,
1091,
11782,
15,
4064,
9,
80,
558,
187,
50274,
338,
313,
79,
11013,
346,
39988,
3,
2785,
1227,
24123,
18346,
49511,
93,
42,
10,
2649,
36512,
25,
93,
1036,
93,
1237,
2769,
18346,
2019,
17263,
6177,
6542,
5,
14206,
2566,
9,
79,
1228,
1091,
795,
3728,
9817,
1992,
6542,
5,
18,
9,
80,
13,
1054,
18378,
558,
187,
50276,
94,
535,
50276,
3701,
795,
4160,
15628,
494,
6104,
1088,
1082,
551,
187,
50274,
22408,
747,
8078,
4756,
1587,
19504,
3177,
281,
5195,
1327,
14,
2562,
494,
4227,
4880,
79,
688,
1340,
281,
320,
10040,
494,
13,
1327,
14,
3728,
5113,
1364,
452,
247,
544,
29046,
15,
17828,
880,
10,
1332,
23715,
187,
50276,
94,
535,
50276,
3701,
795,
936,
9323,
360,
494,
6542,
9,
3298,
10,
551,
187,
50274,
2309,
795,
3728,
20696,
41,
3841,
9,
3298,
10,
2785,
795,
2562,
494,
1992,
6542,
9,
3298,
10,
2785,
795,
328,
19391,
15628,
494,
1992,
6542,
5,
18,
9,
3298,
10,
2785,
795,
4160,
15628,
494,
6104,
1088,
1874,
187,
50276,
94,
535,
50276,
3701,
795,
2437,
7865,
9063,
9,
14966,
13,
1716,
26161,
10,
551,
187,
50274,
338,
45496,
14966,
31979,
1716,
26161,
1228,
551,
187,
50272,
22408,
747,
8078,
4756,
1587,
41909,
1067,
247,
966,
347,
247,
1159,
3287,
187,
50274,
94,
187,
50276,
94,
535,
50276,
3701,
795,
3182,
18401,
9,
7831,
13,
29060,
10,
551,
187,
50274,
1542,
313,
2044,
891,
426,
470,
28,
891,
654,
29060,
15,
3985,
28,
891,
9234,
551,
187,
50272,
2044,
30047,
426,
29060,
60,
74,
2194,
187,
50272,
39990,
15,
257,
25552,
426,
30047,
15,
257,
25552,
2785,
3221,
28,
187,
50272,
39990,
15,
5397,
11722,
426,
2032,
28,
187,
50272,
338,
5550,
2877,
3,
275,
30047,
10,
30047,
15,
8510,
494,
426,
2032,
28,
187,
50272,
4241,
15,
3182,
8324,
9,
7831,
13,
30047,
15,
2364,
13,
30047,
558,
187,
50274,
94,
187,
50276,
94,
535,
50276,
3701,
795,
6953,
4947,
9,
38168,
13,
21634,
32461,
13,
4228,
32461,
10,
551,
187,
50274,
338,
313,
20894,
32461,
10,
795,
3182,
18401,
9,
38168,
15,
18834,
13,
21634,
32461,
558,
187,
50274,
338,
313,
4659,
32461,
10,
795,
3182,
18401,
9,
38168,
13,
4228,
32461,
558,
187,
50274,
2309,
1716,
26161,
28,
187,
50276,
94,
535,
50276,
3701,
795,
8271,
1552,
23527,
1025,
9
] |
Home People Elders
palawther@gmail.com
Peter joined Carrickfergus Baptist Church in 2013 when he became our Pastor. He brought his wife Joanne and three daughters, Josie, Ruby, and Mollie, all of whom ensure he knows more than he ever thought he would about teapots, eyeliner, and unicorns! Peter trained as a teacher at Stranmillis College, where he met Joanne. Following a stint as a teacher, he joined Baptist Youth, running the Amazing Journey programme, which has had a great impact on children in schools across…
pauledsav@gmail.com
Associate Pastor Paul is our newest addition, having joined CBC in the summer of 2016, along with his wife Emma and their son Patrick. They have welcomed the addition of Lydia to their family, and our wider church family in 2017. Paul was saved as a child at age 5 in his hometown of Donaghcloney (County Down, for those who were unsure!). He reports that he and his family have no pets, and no desire to have any! You can…
Campbell Green
campbell_green@hotmail.co.uk
Campbell has been a part of CBC since 1979 when he and his wife, May (behind every great man…) moved to Carrickfergus from North Belfast, via Glengormley. He and May have three adult children, with whom he competes annually in the family Gingerbread House making competition (and usually loses). Campbell worked in the NHS until his retirement in 2011. Apparently he doesn’t miss it at all! Campbell came to faith on 15 March 1971, having grown up as a ‘Sunday…
Stanley Spray
stanley.spray@yahoo.co.uk
Stanley and his wife Catherine began attending CBC in 1995, having been greatly involved, particularly in youth work at their previous church in Ballygomartin. Sadly Catherine was called home to glory in 2014 very suddenly. Stanley was elected an Elder in 2005. Having worked for the Fire Service for 33 years, through some of the darkest days in Northern Ireland’s history, he retired in 2003. He is a member of the Praise Team and enjoys playing guitar. He is an…
Archie Thompson
archiejnr@gmail.com
Archie has been a part of CBC since 1982 and has served as Sunday School Teacher and Superintendent, as well as having been a Deacon, before being elected to the Eldership. Archie and his wife Elizabeth are parents to Sharon and Mark, grandparents to 5, and great-grandparents to 2! Sunday lunch is always a great deal of fun! Archie was baptised and added to a local church in 1970, having accepted the Lord Jesus Christ as his Saviour in 1958…<|endoftext|>Q: How to copy part of a Treeview to a Menu I am trying to copy part of a Treeview to a popup menu, and am not having any luck at all I just cannot seem to get recursion to work and I know I am probably doing it all wrong.
Take this example image (which is a runtime screenshot from the code below):
I need the menu to be created with the same relationship as the Treeview, but I do not want the Root item adding. This is what I want it to look like:
Note the first item is not the settings icon (Root), and that they are in levels like the Treeview.
This is the code I have:
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls,
Menus, StdCtrls, Buttons;
type
TForm1 = class(TForm)
Button1: TButton;
ImageList1: TImageList;
MenuItem1: TMenuItem;
PopupMenu1: TPopupMenu;
TreeView1: TTreeView;
procedure MyMenuItemClick(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
procedure TreeViewToMenu(TreeView: TTreeView; BaseNode: TTreeNode; OutMenu: TMenu);
public
{ public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.lfm}
procedure TForm1.MyMenuItemClick(Sender: TObject);
begin
ShowMessage('You selected'+ TMenuItem(Sender).Name +'- Tag:'+
IntToStr(TMenuItem(Sender).Tag));
end;
procedure TForm1.TreeViewToMenu(TreeView: TTreeView; BaseNode: TTreeNode; OutMenu: TMenu);
var
I: Integer;
MenuItem: TMenuItem;
begin
MenuItem := TMenuItem.Create(nil);
with MenuItem do
begin
Caption := BaseNode.Text;
ImageIndex := BaseNode.ImageIndex;
OnClick := @MyMenuItemClick;
end;
for I := 0 to BaseNode.Count - 1 do
begin
MenuItem.Tag := I;
TreeViewToMenu(TreeView, BaseNode[I], OutMenu);
end;
OutMenu.Items.Add(MenuItem);
end;
procedure TForm1.Button1Click(Sender: TObject);
var
Pt: TPoint;
I: Integer;
Node: TTreeNode;
begin
Pt.X := Button1.Left + 1;
Pt.Y := Button1.Top + Button1.Height + 1;
Pt := ClientToScreen(Pt);
PopupMenu1.Items.Clear;
TreeViewToMenu(TreeView1, TreeView1.Items[0], PopupMenu1);
PopupMenu1.Popup(Pt.X, Pt.Y);
end;
end.
I am also trying to add to the MenuItem Tag property so I can identify each menu item by its tag.
I thought recursion basically meant calling the procedure again from within the procedure, so it repeats itself, either way I really could do with some help.
Thanks.
A: There's no problem with your understanding of a recursive call, but you don't want to append an item for the root node, so you should add an item and recurse for each child of any node that's passed to the procedure. Here's one sample implementation:
type
TForm1 = class(TForm)
..
private
procedure TreeViewToMenu(BaseNode: TTreeNode; OutMenu: TComponent);
..
procedure TForm1.TreeViewToMenu(BaseNode: TTreeNode; OutMenu: TComponent);
var
i: Integer;
Node: TTreeNode;
MenuItem: TMenuItem;
begin
for i := 0 to BaseNode.Count - 1 do begin
Node := BaseNode.Item[i];
MenuItem := TMenuItem.Create(nil);
MenuItem.Caption := Node.Text;
MenuItem.ImageIndex := Node.ImageIndex;
MenuItem.Tag := i;
if Node.Count = 0 then
MenuItem.OnClick := MyMenuItemClick;
if OutMenu is TPopupMenu then
TMenu(OutMenu).Items.Add(MenuItem)
else if
OutMenu is TMenuItem then
TMenuItem(OutMenu).Add(MenuItem)
else
raise Exception.Create('Invalid class type');
TreeViewToMenu(Node, MenuItem);
end;
end;
procedure TForm1.Button1Click(Sender: TObject);
var
..
begin
..
TreeViewToMenu(TreeView1.Items[0], PopupMenu1);
..
Note that I changed the declaration of TreeViewToMenu for (1) the TreeView is not used and (2) we are appending to items to either a TPopupMenu or a TMenuItem, hence I declared 'OutMenu' as TComponent which would accept both.
A: Like Sertac says, you are adding all menu items to the root of the PopupMenu. You should add sub menu items to the last menu item created.
Hereby an alternative approach, making use of TTreeNode.GetFirstChild and.GetNextSibling:
procedure TForm1.TreeViewToMenu(Node: TTreeNode; Menu: TMenuItem);
var
MenuItem: TMenuItem;
begin
while Node <> nil do
begin
MenuItem := TMenuItem.Create(nil);
MenuItem.Caption := Node.Text;
MenuItem.ImageIndex := Node.ImageIndex;
Menu.Add(MenuItem);
if Node.HasChildren then
TreeViewToMenu(Node.GetFirstChild, MenuItem)
else
MenuItem.OnClick := MyMenuItemClick;
Node := Node.GetNextSibling;
end;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
PopupMenu1.Items.Clear;
TreeViewToMenu(TreeView1.Items[1], PopupMenu1 | redpajama | [
18686,
6491,
22921,
398,
187,
17183,
1403,
508,
12882,
33,
23655,
15,
681,
187,
23852,
7416,
2639,
4662,
71,
26163,
30021,
6412,
275,
4072,
672,
344,
3395,
776,
20840,
263,
15,
754,
3982,
521,
4475,
8174,
17416,
285,
1264,
19367,
13,
18559,
466,
13,
21521,
13,
285,
353,
2555,
466,
13,
512,
273,
5207,
5416,
344,
6057,
625,
685,
344,
2455,
1869,
344,
651,
670,
716,
522,
1502,
13,
32153,
7068,
13,
285,
440,
280,
35546,
2,
7993,
10166,
347,
247,
9732,
387,
659,
4011,
17993,
261,
6822,
13,
835,
344,
1313,
8174,
17416,
15,
11977,
247,
47467,
347,
247,
9732,
13,
344,
7416,
30021,
23789,
13,
3515,
253,
46974,
41976,
13521,
13,
534,
556,
574,
247,
1270,
3486,
327,
2151,
275,
6629,
2439,
2866,
187,
4904,
335,
5797,
580,
12882,
33,
23655,
15,
681,
187,
36597,
366,
20840,
263,
5171,
310,
776,
26101,
1635,
13,
1907,
7416,
41141,
275,
253,
5768,
273,
4022,
13,
2112,
342,
521,
4475,
25975,
285,
616,
3347,
15435,
15,
1583,
452,
25213,
253,
1635,
273,
418,
32922,
281,
616,
2021,
13,
285,
776,
14200,
6105,
2021,
275,
4240,
15,
5171,
369,
9809,
347,
247,
1429,
387,
2363,
608,
275,
521,
36004,
273,
5037,
29416,
498,
2153,
313,
43582,
9792,
13,
323,
1110,
665,
497,
31488,
30970,
754,
5012,
326,
344,
285,
521,
2021,
452,
642,
29286,
13,
285,
642,
8327,
281,
452,
667,
2,
1422,
476,
2866,
187,
25046,
10910,
6115,
187,
23485,
10910,
64,
11707,
12882,
33,
12022,
5719,
15,
1940,
15,
2788,
187,
25046,
10910,
556,
644,
247,
629,
273,
41141,
1580,
13842,
672,
344,
285,
521,
4475,
13,
2552,
313,
44666,
1046,
1270,
637,
2866,
10,
4395,
281,
2639,
4662,
71,
26163,
432,
3729,
44867,
13,
3066,
4051,
1205,
526,
2205,
15,
754,
285,
2552,
452,
1264,
6782,
2151,
13,
342,
5207,
344,
3947,
265,
21051,
275,
253,
2021,
443,
4940,
31212,
3995,
2403,
7324,
313,
395,
3798,
25068,
481,
20163,
4307,
275,
253,
28530,
1919,
521,
15072,
275,
4332,
15,
25998,
344,
2506,
457,
85,
2985,
352,
387,
512,
2,
20163,
2210,
281,
6009,
327,
1458,
3919,
16609,
13,
1907,
8228,
598,
347,
247,
2802,
27180,
2866,
187,
36447,
2205,
14474,
333,
187,
18549,
2205,
15,
48895,
12882,
33,
49269,
15,
1940,
15,
2788,
187,
36447,
2205,
285,
521,
4475,
23425,
3407,
16362,
41141,
275,
8878,
13,
1907,
644,
10260,
3206,
13,
3782,
275,
8920,
789,
387,
616,
2045,
6105,
275,
378,
595,
23640,
435,
249,
15,
47870,
23425,
369,
1925,
1728,
281,
18735,
275,
4059,
1077,
8423,
15,
20923,
369,
10544,
271,
34806,
275,
5826,
15,
14566,
4307,
323,
253,
8726,
6631,
323,
5922,
1107,
13,
949,
690,
273,
253,
3644,
383,
1897,
275,
11442,
11011,
457,
84,
2892,
13,
344,
14373,
275,
6469,
15,
754,
310,
247,
3558,
273,
253,
367,
22525,
10589,
285,
29566,
4882,
12609,
15,
754,
310,
271,
2866,
187,
2906,
2942,
16647,
187,
1116,
47688,
23838,
12882,
33,
23655,
15,
681,
187,
2906,
2942,
556,
644,
247,
629,
273,
41141,
1580,
13563,
285,
556,
5608,
347,
6926,
4726,
47080,
285,
44698,
13,
347,
973,
347,
1907,
644,
247,
1605,
11660,
13,
1078,
1146,
10544,
281,
253,
22921,
4249,
15,
1780,
2942,
285,
521,
4475,
12694,
403,
4651,
281,
36779,
285,
4744,
13,
37186,
281,
608,
13,
285,
1270,
14,
26852,
24905,
281,
374,
2,
6926,
11157,
310,
1900,
247,
1270,
2968,
273,
794,
2,
1780,
2942,
369,
29767,
1701,
285,
2879,
281,
247,
1980,
6105,
275,
10333,
13,
1907,
7607,
253,
6203,
7670,
2828,
347,
521,
12933,
30575,
275,
23084,
2866,
50279,
50,
27,
1359,
281,
3491,
629,
273,
247,
19128,
1374,
281,
247,
31857,
309,
717,
2820,
281,
3491,
629,
273,
247,
19128,
1374,
281,
247,
44343,
8910,
13,
285,
717,
417,
1907,
667,
7516,
387,
512,
309,
816,
2550,
1646,
281,
755,
43489,
281,
789,
285,
309,
871,
309,
717,
3164,
2509,
352,
512,
3430,
15,
187,
12864,
436,
1650,
2460,
313,
4609,
310,
247,
20243,
37617,
432,
253,
2127,
2708,
2262,
187,
187,
42,
878,
253,
8910,
281,
320,
3562,
342,
253,
1072,
2954,
347,
253,
19128,
1374,
13,
533,
309,
513,
417,
971,
253,
26718,
5382,
6240,
15,
831,
310,
752,
309,
971,
352,
281,
1007,
751,
27,
187,
187,
8497,
253,
806,
5382,
310,
417,
253,
7533,
10651,
313,
16560,
582,
285,
326,
597,
403,
275,
2308,
751,
253,
19128,
1374,
15,
187,
1552,
310,
253,
2127,
309,
452,
27,
187,
8522,
16062,
18,
28,
187,
187,
16661,
9561,
10928,
71,
5902,
1217,
5,
41,
46015,
187,
187,
15049,
187,
187,
5123,
187,
50276,
27290,
13,
41579,
19611,
13,
8490,
12804,
13,
44017,
13,
47393,
13,
39071,
13,
36623,
84,
13,
1176,
36,
1206,
5200,
13,
187,
50276,
18812,
316,
13,
659,
69,
36,
1206,
5200,
13,
1292,
24787,
28,
187,
187,
881,
187,
50276,
53,
5232,
18,
426,
966,
9,
53,
5232,
10,
187,
50274,
8880,
18,
27,
308,
8880,
28,
187,
50274,
6586,
2765,
18,
27,
308,
6586,
2765,
28,
187,
50274,
43429,
18,
27,
308,
43429,
28,
187,
50274,
14918,
484,
14324,
18,
27,
308,
14918,
484,
14324,
28,
187,
50274,
14444,
3145,
18,
27,
308,
14444,
3145,
28,
187,
50274,
45760,
2752,
43429,
7146,
9,
47099,
27,
308,
4241,
558,
187,
50274,
45760,
26645,
18,
7146,
9,
47099,
27,
308,
4241,
558,
187,
50276,
9486,
187,
50274,
45760,
19128,
3145,
1992,
14324,
9,
14444,
3145,
27,
308,
14444,
3145,
28,
11760,
6910,
27,
308,
14444,
6910,
28,
6282,
14324,
27,
308,
14324,
558,
187,
50276,
4387,
187,
50274,
92,
1345,
35298,
748,
187,
50276,
423,
28,
187,
187,
2044,
187,
50276,
5232,
18,
27,
308,
5232,
18,
28,
187,
187,
39595,
187,
187,
16661,
51,
33481,
77,
22401,
94,
187,
187,
45760,
308,
5232,
18,
15,
3220,
43429,
7146,
9,
47099,
27,
308,
4241,
558,
187,
2043,
187,
50276,
14422,
7474,
2073,
1394,
4236,
686,
559,
308,
43429,
9,
47099,
481,
2402,
559,
686,
428,
17750,
27,
686,
559,
187,
50274,
4807,
1992,
10287,
9,
53,
43429,
9,
47099,
481,
12547,
4027,
187,
423,
28,
187,
187,
45760,
308,
5232,
18,
15,
14444,
3145,
1992,
14324,
9,
14444,
3145,
27,
308,
14444,
3145,
28,
11760,
6910,
27,
308,
14444,
6910,
28,
6282,
14324,
27,
308,
14324,
558,
187,
2044,
187,
50276,
42,
27,
22008,
28,
187,
50276,
43429,
27,
308,
43429,
28,
187,
2043,
187,
50276,
43429,
3843,
308,
43429,
15,
9395,
9,
18789,
558,
187,
50276,
3113,
31857,
5475,
513,
187,
50276,
2043,
187,
50274,
17745,
279,
3843,
11760,
6910,
15,
4312,
28,
187,
50274,
6586,
6060,
3843,
11760,
6910,
15,
6586,
6060,
28,
187,
50274,
2374,
7146,
3843,
1214,
3220,
43429,
7146,
28,
187,
50276,
423,
28,
535,
50276,
1542,
309,
3843,
470,
281,
11760,
6910,
15,
6878,
428,
337,
513,
187,
50276,
2043,
187,
50274,
43429,
15,
12547,
3843,
309,
28,
187,
50274,
14444,
3145,
1992,
14324,
9,
14444,
3145,
13,
11760,
6910,
60,
42,
1092,
6282,
14324,
558,
187,
50276,
423,
28,
535,
50276,
5677,
14324,
15,
16379,
15,
4717,
9,
43429,
558,
187,
423,
28,
187,
187,
45760,
308,
5232,
18,
15,
8880,
18,
7146,
9,
47099,
27,
308,
4241,
558,
187,
2044,
187,
50276,
35462,
27,
308,
8682,
28,
187,
50276,
42,
27,
22008,
28,
187,
50276,
6910,
27,
308,
14444,
6910,
28,
187,
2043,
187,
50276,
35462,
15,
57,
3843,
26645,
18,
15,
11875,
559,
337,
28,
187,
50276,
35462,
15,
58,
3843,
26645,
18,
15,
11387,
559,
26645,
18,
15,
13881,
559,
337,
28,
187,
50276,
35462,
3843,
23472,
1992,
22249,
9,
35462,
558,
535,
50276,
14918,
484,
14324,
18,
15,
16379,
15,
25376,
28,
187,
50276,
14444,
3145,
1992,
14324,
9,
14444,
3145,
18,
13,
19128,
3145,
18,
15,
16379,
60,
17,
1092,
12278,
484,
14324,
18,
558,
535,
50276,
14918,
484,
14324,
18,
15,
14918,
484,
9,
35462,
15,
57,
13,
29673,
15,
58,
558,
187,
423,
28,
187,
187,
423,
15,
187,
187,
42,
717,
671,
2820,
281,
823,
281,
253,
31857,
5475,
17750,
2867,
594,
309,
476,
4271,
1016,
8910,
5382,
407,
697,
6809,
15,
187,
42,
1869,
43489,
10323,
5486,
6789,
253,
5199,
969,
432,
1561,
253,
5199,
13,
594,
352,
24510,
3139,
13,
2057,
1039,
309,
1663,
812,
513,
342,
690,
1361,
15,
187,
8061,
15,
187,
187,
34,
27,
1707,
434,
642,
1895,
342,
634,
4685,
273,
247,
33037,
1067,
13,
533,
368,
1053,
626,
971,
281,
14801,
271,
5382,
323,
253,
5230,
4666,
13,
594,
368,
943,
823,
271,
5382,
285,
761,
9786,
323,
1016,
1429,
273,
667,
4666,
326,
434,
4817,
281,
253,
5199,
15,
3856,
434,
581,
3410,
7092,
27,
187,
881,
187,
50276,
53,
5232,
18,
426,
966,
9,
53,
5232,
10,
187,
50274,
537,
187,
50276,
9486,
187,
50274,
45760,
19128,
3145,
1992,
14324,
9,
8932,
6910,
27,
308,
14444,
6910,
28,
6282,
14324,
27,
308,
12118,
558,
187,
50274,
537,
187,
187,
45760,
308,
5232,
18,
15,
14444,
3145,
1992,
14324,
9,
8932,
6910,
27,
308,
14444,
6910,
28,
6282,
14324,
27,
308,
12118,
558,
187,
2044,
187,
50276,
74,
27,
22008,
28,
187,
50276,
6910,
27,
308,
14444,
6910,
28,
187,
50276,
43429,
27,
308,
43429,
28,
187,
2043,
187,
50276,
1542,
891,
3843,
470,
281,
11760,
6910,
15,
6878,
428,
337,
513,
3135,
187,
50274,
6910,
3843,
11760,
6910,
15,
5475,
60,
74,
2194,
535,
50274,
43429,
3843,
308,
43429,
15,
9395,
9,
18789,
558,
187,
50274,
43429,
15,
17745,
279,
3843,
16459,
15,
4312,
28,
187,
50274,
43429,
15,
6586,
6060,
3843,
16459,
15,
6586,
6060,
28,
187,
50274,
43429,
15,
12547,
3843,
891,
28,
187,
50274,
338,
16459,
15,
6878,
426,
470,
840,
187,
50272,
43429,
15,
2374,
7146,
3843,
2752,
43429,
7146,
28,
535,
50274,
338,
6282,
14324,
310,
308,
14918,
484,
14324,
840,
187,
50272,
53,
14324,
9,
5677,
14324,
481,
16379,
15,
4717,
9,
43429,
10,
187,
50274,
7271,
604,
187,
50272,
5677,
14324,
310,
308,
43429,
840,
187,
50270,
53,
43429,
9,
5677,
14324,
481,
4717,
9,
43429,
10,
187,
50272,
7271,
187,
50270,
22525,
19563,
15,
9395,
2073,
19504,
966,
1511,
5137,
535,
50274,
14444,
3145,
1992,
14324,
9,
6910,
13,
31857,
5475,
558,
535,
50276,
423,
28,
187,
423,
28,
187,
187,
45760,
308,
5232,
18,
15,
8880,
18,
7146,
9,
47099,
27,
308,
4241,
558,
187,
2044,
187,
50276,
537,
187,
2043,
187,
50276,
537,
187,
50276,
14444,
3145,
1992,
14324,
9,
14444,
3145,
18,
15,
16379,
60,
17,
1092,
12278,
484,
14324,
18,
558,
187,
50276,
537,
187,
187,
8497,
326,
309,
4391,
253,
16204,
273,
19128,
3145,
1992,
14324,
323,
313,
18,
10,
253,
19128,
3145,
310,
417,
908,
285,
313,
19,
10,
359,
403,
622,
1946,
281,
4957,
281,
2057,
247,
308,
14918,
484,
14324,
390,
247,
308,
43429,
13,
7613,
309,
8884,
686,
5677,
14324,
8,
347,
308,
12118,
534,
651,
2997,
1097,
15,
187,
187,
34,
27,
6975,
322,
797,
317,
2296,
13,
368,
403,
6240,
512,
8910,
4957,
281,
253,
5230,
273,
253,
12278,
484,
14324,
15,
1422,
943,
823,
749,
8910,
4957,
281,
253,
1390,
8910,
5382,
3562,
15,
187,
4943,
1615,
271,
5795,
2746,
13,
2403,
897,
273,
308,
14444,
6910,
15,
3633,
6407,
10371,
285,
964,
3633,
9301,
52,
487,
1981,
27,
187,
45760,
308,
5232,
18,
15,
14444,
3145,
1992,
14324,
9,
6910,
27,
308,
14444,
6910,
28,
31857,
27,
308,
43429,
558,
187,
2044,
187,
50276,
43429,
27,
308,
43429,
28,
187,
2043,
187,
50276,
6050,
16459,
38363,
5296,
513,
187,
50276,
2043,
187,
50274,
43429,
3843,
308,
43429,
15,
9395,
9,
18789,
558,
187,
50274,
43429,
15,
17745,
279,
3843,
16459,
15,
4312,
28,
187,
50274,
43429,
15,
6586,
6060,
3843,
16459,
15,
6586,
6060,
28,
187,
50274,
14324,
15,
4717,
9,
43429,
558,
187,
50274,
338,
16459,
15,
15413,
22246,
840,
187,
50272,
14444,
3145,
1992,
14324,
9,
6910,
15,
3633,
6407,
10371,
13,
31857,
5475,
10,
187,
50274,
7271,
187,
50272,
43429,
15,
2374,
7146,
3843,
2752,
43429,
7146,
28,
187,
50274,
6910,
3843,
16459,
15,
3633,
9301,
52,
487,
1981,
28,
187,
50276,
423,
28,
187,
423,
28,
187,
187,
45760,
308,
5232,
18,
15,
8880,
18,
7146,
9,
47099,
27,
308,
4241,
558,
187,
2043,
187,
50276,
14918,
484,
14324,
18,
15,
16379,
15,
25376,
28,
187,
50276,
14444,
3145,
1992,
14324,
9,
14444,
3145,
18,
15,
16379,
60,
18,
1092,
12278,
484,
14324,
18
] |
я станциями «Курская», одна из которых располагается на Арбатско-Покровская линии, другая — на Кольцевой. Расположена в Басманном районе (ЦАО); названа по улице Чкалова, которой ещё до открытия станции было возвращено историческое название Земляной Вал. Открыта 28 декабря года в составе участка «Чкаловская» —. Пилонная трёхсводчатая станция глубокого заложения с одной островной платформой.
История
Станция открыта 28 декабря года в составе участка «Чкаловская» —, после открытия которого в Московском метрополитене стало 157 станций.
Оформление
Пилоны отделаны серо-голубым мрамором, пол выложен чёрным, серым и розовым гранитом. Путевые стены отделаны белым мрамором. На пилонах и своде станции расположены оригинальные светильники.
Оформление посвящено авиации и Герою Советского Союза лётчику Валерию Чкалову (1904—1938). Когда станцию проектировали в середине 1980-х годов, расположенная в непосредственной близости от станции улица носила название улица Чкалова. В 1992 году улице было возвращено историческое название — улица Земляной Вал. Таким образом, географическая связь названия станции с объектом расположения была утрачена.
Расположение, вестибюли и пересадки
Расположена между станциями и, имеет пересадки на станции «Курская» Арбатско-Покровской линии (переход в северном торце центрального зала) и Кольцевой линии (через совмещённый подземный вестибюль в южном торце, с которым станция соединена эскалаторами). Последний также является единственным выходом в город со станции. В непосредственной близости от станции находятся Курский вокзал, конечная остановка «Курский вокзал» для трамвайных маршрутов Б, 20, 24 и торгово-развлекательный центр «Атриум».
Подземный вестибюль был законсервирован вскоре после открытия станции (здесь сохранились два эскалатора). В 2015 году его планировали снести из-за строительства гостиничного комплекса. На конец 2019 года никакие работы по сносу не начинались, вестибюль находится на территории строящегося ЖК «Чкалов».
Станция в цифрах
Глубина заложения станции — 51 метр. Пассажиропоток по вестибюлям станции (на год), пересадочный пассажиропоток на Арбатско-Покровскую линию —, пассажиропоток на Кольцевую линию —.
Путевое развитие
За станцией расположена имеющая съезды с обоими главными путями служебная соединительная ветвь на Кольцевую линию, также используемая и для оборота составов.
Наземный общественный транспорт
Фотогалерея
См. также
Список станций Московского метрополитена
Примечания
Ссылки
Станции Московского метрополитена
Басманный район
Станции метрополитена, построенные в 1995 году
Пилонные станции
Объекты, названные в честь Валерия Чкалова
Здания и сооружения, построенные в 1995 году в Москве<|endoftext|>Q: Download pdf from downloadlink to my uploads folder PHP I'm trying to download invoices(loop) to my uploads folder so clients can download. I don't want to redirect.
I've tried file get and put contents. Got empty pdfs. then tried curl:
$ch = curl_init($pdfurl);
$fp = fopen('../uploads/'. $invoice. '', 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
Doesnt seem to work.. the pdfurl is a download link, it doesnt show pdf, it prompts u to download.. that might be the problem?
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="$invoice.pdf"');
// The PDF source is in original.pdf
readfile($pdfurl);
This works. but I want to move the pdfs from loop to upload folder.
A:...problem solved.. was on development server.. thats why i couldnt open the pdfs..
file_put_contents("../uploads/".$factuurnummer. ".pdf", fopen($pdfurl, 'r'));
<|endoftext|>
package org.grails.plugins.tomcat;
import org.apache.catalina.LifecycleException;
import org.apache.catalina.startup.Tomcat;
import java.io.IOException;
import java.net.ServerSocket;
/**
* Allows the tomcat server to be killed by pinging a port one greater than the server port.
*
* @author Graeme Rocher
* @since 2.1
*/
public class TomcatKillSwitch implements Runnable {
public static final String TOMCAT_KILL_SWITCH_ACTIVE = "TomcatKillSwitch.active";
protected Tomcat tomcat;
protected int serverPort;
public TomcatKillSwitch(Tomcat tomcat, int serverPort) {
this.tomcat = tomcat;
this.serverPort = serverPort;
}
public static boolean isActive() {
return Boolean.getBoolean("TomcatKillSwitch.active");
}
public void run() {
System.setProperty("TomcatKillSwitch.active", "true");
int killListenerPort = serverPort + 1;
ServerSocket serverSocket = createKillSwitch(killListenerPort);
if (serverSocket!= null) {
try {
serverSocket.accept();
try {
tomcat.stop();
tomcat.destroy();
System.setProperty(TOM | redpajama | [
3504,
18330,
6754,
38077,
5160,
1389,
7539,
27822,
29366,
10453,
32255,
26147,
36547,
14933,
19833,
34155,
46070,
9160,
15712,
7179,
7869,
27404,
27969,
12587,
8713,
31820,
1697,
8787,
7065,
10453,
1068,
14,
21715,
15647,
1697,
5790,
10453,
32255,
17978,
10961,
24215,
13,
47601,
32255,
575,
1128,
8713,
24572,
18584,
8961,
21537,
12007,
15,
32082,
15712,
7179,
7869,
14706,
5126,
1152,
4407,
38177,
15712,
5160,
6754,
1640,
8496,
9160,
21241,
11256,
1207,
313,
140,
101,
30184,
26623,
558,
4418,
11995,
4183,
6754,
1152,
17008,
11770,
11378,
8961,
1207,
929,
102,
3721,
8117,
33652,
13,
34155,
12007,
13709,
11514,
36065,
43694,
15095,
3721,
41864,
1367,
10743,
18330,
6754,
33116,
23358,
36428,
4407,
19245,
4183,
16798,
11514,
5126,
1068,
5822,
5031,
10161,
35883,
39026,
4418,
11995,
4183,
6754,
13080,
929,
234,
10077,
17544,
29862,
21615,
8117,
15,
33306,
1367,
3721,
41864,
27123,
3349,
6564,
14742,
21029,
1697,
3504,
50276,
9925,
8804,
1152,
4407,
4189,
19745,
10324,
1207,
11770,
4435,
29685,
21475,
7539,
140,
102,
3721,
8117,
5790,
10453,
32255,
6234,
575,
1128,
964,
21146,
15780,
11256,
43167,
43084,
36065,
6715,
1674,
4183,
8804,
4435,
27372,
3504,
18330,
6754,
38077,
13192,
3415,
45586,
15647,
15147,
8793,
8117,
14706,
22625,
4189,
36547,
29862,
6099,
5031,
1697,
5790,
29862,
3776,
3415,
7065,
18341,
38660,
12007,
15,
187,
187,
29690,
5031,
10161,
10743,
209,
187,
22690,
1367,
6754,
38077,
15095,
3721,
41864,
27123,
3349,
6564,
14742,
21029,
1697,
3504,
50276,
9925,
8804,
1152,
4407,
4189,
19745,
10324,
1207,
11770,
4435,
29685,
21475,
7539,
140,
102,
3721,
8117,
5790,
10453,
32255,
6234,
575,
1128,
1157,
38940,
44909,
15095,
3721,
41864,
1367,
10743,
34155,
15147,
4407,
29280,
1068,
10453,
5790,
10453,
8496,
8277,
7508,
1697,
18594,
7869,
7620,
5126,
1207,
18330,
8117,
1068,
21043,
18330,
6754,
16779,
10411,
15,
187,
187,
26623,
18341,
38660,
3415,
22515,
209,
187,
21715,
15780,
11256,
4141,
15095,
45578,
6754,
4141,
4189,
7029,
1068,
14,
9925,
7869,
45586,
4141,
5160,
8277,
1697,
11409,
10161,
8496,
13,
26072,
20488,
3415,
14706,
5126,
10530,
36065,
1697,
36922,
13,
4189,
7029,
4141,
5160,
5822,
9160,
19245,
5790,
4141,
5160,
13192,
25089,
7620,
8496,
15,
21146,
22190,
21537,
38084,
18330,
5126,
4141,
15095,
45578,
6754,
4141,
9514,
9247,
4141,
5160,
8277,
1697,
11409,
10161,
8496,
15,
25077,
1152,
3776,
15780,
11256,
39857,
5822,
28695,
8804,
1207,
18330,
6754,
33116,
9160,
15712,
7179,
7869,
14706,
5126,
4141,
6099,
34491,
9925,
10961,
24885,
29220,
28695,
7508,
15780,
4169,
14171,
23379,
15,
187,
187,
26623,
18341,
38660,
3415,
22515,
38940,
4183,
3504,
11514,
5126,
1068,
15057,
4183,
1389,
1152,
33116,
5822,
41905,
7029,
1068,
8204,
22310,
5790,
7508,
10453,
15147,
22310,
1068,
8204,
7762,
1152,
17978,
36065,
1367,
4435,
18778,
2964,
21615,
8117,
7029,
1389,
8204,
929,
102,
3721,
8117,
5790,
2964,
313,
746,
2125,
1128,
44611,
481,
24572,
44951,
18330,
6754,
16779,
8204,
28413,
39286,
20650,
5790,
33207,
4407,
4189,
7029,
10514,
10961,
1207,
9178,
14,
6715,
44576,
5790,
13,
9160,
15712,
7179,
7869,
14706,
5126,
43167,
4407,
4418,
31220,
13043,
43532,
45476,
29862,
9514,
11378,
7762,
19745,
1389,
15095,
18330,
6754,
33116,
11770,
11378,
8961,
1152,
4418,
13043,
15780,
1152,
4418,
11995,
4183,
6754,
13080,
11770,
11378,
8961,
1152,
929,
102,
3721,
8117,
33652,
15,
21615,
9748,
44576,
2964,
11770,
11378,
8961,
1207,
23358,
36428,
4407,
19245,
4183,
16798,
11514,
5126,
1068,
5822,
5031,
10161,
35883,
39026,
4418,
11995,
4183,
6754,
13080,
1905,
11770,
11378,
8961,
1152,
929,
234,
10077,
17544,
29862,
21615,
8117,
15,
32757,
9640,
12500,
18651,
46645,
8496,
13,
13192,
1207,
9689,
16798,
18341,
35883,
32255,
28695,
3504,
7762,
4169,
4418,
11995,
4183,
6754,
10743,
18330,
6754,
33116,
4189,
18651,
13396,
39286,
8496,
9160,
15712,
7179,
7869,
14706,
22625,
23358,
36593,
11770,
1367,
16798,
4435,
5126,
1152,
15,
187,
187,
39082,
15712,
7179,
7869,
14706,
22515,
13,
4407,
24860,
43218,
8204,
11378,
5822,
26546,
20508,
16205,
23379,
209,
187,
39082,
15712,
7179,
7869,
14706,
5126,
1152,
8277,
30826,
5129,
2964,
18330,
6754,
38077,
5160,
1389,
50276,
1389,
1157,
32951,
1207,
7508,
26546,
20508,
16205,
23379,
8713,
18330,
6754,
33116,
7539,
27822,
29366,
10453,
32255,
6234,
31820,
1697,
8787,
7065,
10453,
1068,
14,
21715,
15647,
1697,
5790,
10453,
12007,
17978,
10961,
24215,
313,
7179,
7029,
1207,
31818,
4407,
4189,
21537,
7029,
1640,
8496,
209,
18706,
8961,
1207,
31682,
21527,
1697,
24885,
27328,
8793,
43437,
10,
5822,
24572,
18584,
8961,
21537,
12007,
17978,
10961,
24215,
313,
4435,
7029,
20410,
4189,
5790,
5160,
1207,
11514,
36065,
1640,
29729,
25994,
7762,
10077,
29729,
4407,
24860,
43218,
8204,
39435,
4407,
7786,
225,
11954,
1640,
8496,
209,
18706,
8961,
1207,
13,
4189,
34155,
4141,
5160,
18330,
6754,
38077,
35150,
10514,
10961,
5126,
1152,
14987,
10453,
43437,
18706,
35411,
481,
21146,
13043,
45177,
14171,
10411,
24310,
39656,
22744,
4183,
17544,
36663,
13709,
5129,
10961,
45476,
36922,
20488,
31818,
8496,
4407,
13192,
10161,
8804,
35150,
18330,
6754,
33116,
15,
21615,
4418,
31220,
13043,
43532,
45476,
29862,
9514,
11378,
7762,
19745,
1389,
15095,
18330,
6754,
33116,
8713,
31818,
24248,
12587,
24572,
29366,
10453,
18664,
4407,
15647,
7762,
8117,
13,
34464,
30338,
43167,
6099,
5031,
6754,
5790,
21475,
7539,
27822,
29366,
10453,
18664,
4407,
15647,
7762,
8117,
6234,
31618,
43084,
11409,
4183,
21241,
28167,
8277,
12559,
9082,
16828,
1367,
5790,
38177,
13,
1384,
13,
2164,
5822,
209,
18706,
9925,
5790,
1068,
14,
46645,
4183,
3415,
14742,
7065,
23468,
29729,
31682,
21527,
1697,
7539,
30184,
1367,
34491,
31784,
25235,
187,
187,
21715,
8804,
7762,
10077,
29729,
4407,
24860,
43218,
8204,
39435,
23358,
3415,
8793,
9640,
11256,
1674,
7029,
4183,
20650,
33036,
4407,
10453,
10161,
1207,
38940,
44909,
15095,
3721,
41864,
1367,
10743,
18330,
6754,
33116,
313,
7762,
5129,
20508,
4169,
35150,
6715,
25089,
32882,
41501,
6564,
22704,
14987,
10453,
43437,
6205,
16798,
481,
21615,
4104,
44576,
2964,
48841,
3776,
3415,
6754,
20650,
5790,
33207,
4189,
1640,
24860,
1389,
19833,
14,
7762,
1152,
18330,
41014,
43250,
48952,
13192,
19745,
10961,
18565,
27328,
40698,
7179,
3415,
14742,
1674,
1152,
15,
25077,
1152,
34464,
1207,
8961,
6247,
44576,
1152,
4418,
18778,
9640,
13080,
45597,
4141,
17008,
4189,
8355,
1674,
2964,
12880,
8713,
4435,
10961,
8117,
17307,
4169,
13,
4407,
24860,
43218,
8204,
39435,
8713,
31818,
7620,
12587,
8713,
8134,
7029,
34491,
18706,
24215,
18330,
41014,
3504,
11514,
35712,
12587,
929,
233,
27822,
7539,
140,
102,
3721,
8117,
5790,
25235,
187,
187,
22690,
1367,
6754,
38077,
4407,
31682,
1389,
18341,
16798,
6715,
209,
187,
140,
230,
3415,
45586,
43495,
8793,
8117,
14706,
22625,
18330,
6754,
33116,
575,
1128,
8319,
8277,
7508,
1697,
15,
21146,
42732,
22079,
20650,
18594,
12562,
15647,
17008,
4407,
24860,
43218,
8204,
17544,
5160,
18330,
6754,
33116,
50276,
9,
14933,
50276,
9925,
8804,
582,
26546,
20508,
16205,
31348,
29729,
3776,
42732,
22079,
20650,
18594,
12562,
15647,
8713,
31820,
1697,
8787,
7065,
10453,
1068,
14,
21715,
15647,
1697,
5790,
10453,
26199,
17978,
10961,
1389,
8204,
575,
1128,
1157,
3776,
42732,
22079,
20650,
18594,
12562,
15647,
8713,
24572,
18584,
8961,
21537,
26199,
17978,
10961,
1389,
8204,
575,
1128,
964,
187,
187,
21715,
22190,
21537,
39026,
25510,
4183,
7620,
13080,
209,
187,
48390,
1152,
18330,
6754,
16779,
15290,
9160,
15712,
7179,
7869,
14706,
5126,
1152,
32951,
1207,
8204,
11514,
32255,
40158,
20410,
5129,
4141,
4189,
18651,
1068,
12500,
1389,
13192,
3415,
10324,
36922,
1389,
3776,
22190,
49977,
1389,
25332,
32195,
32445,
43167,
35150,
10514,
10961,
43250,
43167,
4407,
7508,
4183,
4169,
8713,
24572,
18584,
8961,
21537,
26199,
17978,
10961,
1389,
8204,
13,
24310,
39656,
50099,
41060,
2964,
10077,
32255,
5822,
31618,
18651,
10161,
12562,
1152,
4189,
19745,
10324,
5790,
15,
187,
187,
25518,
11995,
10077,
29729,
18651,
30594,
45476,
29729,
8134,
25089,
32711,
10161,
1367,
187,
187,
140,
99,
12562,
9689,
8117,
7029,
1207,
3504,
187,
187,
22690,
5160,
15,
24310,
39656,
2490,
22310,
7179,
17307,
15647,
18330,
6754,
16779,
10411,
29280,
1068,
10453,
5790,
10453,
15147,
8277,
7508,
1697,
18594,
7869,
7620,
5126,
1152,
187,
187,
21715,
1697,
12500,
30338,
6754,
10743,
187,
187,
22690,
1674,
4141,
3415,
23379,
2490,
187,
22690,
1367,
6754,
33116,
29280,
1068,
10453,
5790,
10453,
15147,
8277,
7508,
1697,
18594,
7869,
7620,
5126,
1152,
187,
45809,
15712,
5160,
6754,
29729,
9160,
21241,
11256,
187,
22690,
1367,
6754,
33116,
8277,
7508,
1697,
18594,
7869,
7620,
5126,
1152,
13,
17008,
5031,
41014,
5126,
29220,
4407,
8878,
44576,
2964,
187,
21715,
15780,
11256,
29220,
18330,
6754,
33116,
187,
26623,
8787,
13396,
39286,
4141,
13,
4418,
11995,
4183,
6754,
29220,
4407,
10530,
24860,
4169,
21615,
8117,
7029,
10743,
929,
102,
3721,
8117,
33652,
187,
48390,
5129,
6754,
10743,
5822,
35150,
10161,
32195,
22625,
13,
17008,
5031,
41014,
5126,
29220,
4407,
8878,
44576,
2964,
4407,
29280,
1068,
10453,
4183,
1207,
50279,
50,
27,
21578,
31697,
432,
6184,
4492,
281,
619,
12119,
84,
11534,
14741,
309,
1353,
2820,
281,
6184,
29838,
1271,
9,
14075,
10,
281,
619,
12119,
84,
11534,
594,
8548,
476,
6184,
15,
309,
1053,
626,
971,
281,
21124,
15,
209,
187,
42,
1849,
3597,
1873,
755,
285,
1691,
9410,
15,
21979,
6325,
31385,
3671,
15,
840,
50276,
85,
2200,
26721,
27,
187,
5,
348,
426,
26721,
64,
4478,
3914,
9275,
6434,
558,
187,
50274,
5,
16983,
426,
269,
5758,
2073,
3043,
47725,
16,
5983,
370,
249,
22619,
15,
29278,
686,
34338,
5137,
187,
50274,
31064,
64,
1178,
2178,
3914,
348,
13,
44422,
18904,
64,
13690,
13,
370,
16983,
558,
187,
50274,
31064,
64,
1178,
2178,
3914,
348,
13,
44422,
18904,
64,
37456,
13,
470,
558,
187,
50274,
31064,
64,
9993,
3914,
348,
558,
187,
50274,
31064,
64,
10483,
3914,
348,
558,
187,
50274,
71,
10483,
3914,
16983,
558,
187,
187,
10795,
2649,
1646,
281,
789,
537,
253,
31697,
6434,
310,
247,
6184,
3048,
13,
352,
36908,
921,
31697,
13,
352,
49887,
1484,
281,
6184,
537,
326,
1537,
320,
253,
1895,
32,
187,
10146,
2073,
8590,
14,
881,
27,
2898,
16,
9275,
5137,
535,
50266,
605,
733,
588,
320,
1925,
20582,
15,
9275,
187,
50266,
10146,
2073,
8590,
14,
6744,
3321,
27,
14170,
28,
19722,
31462,
249,
22619,
15,
9275,
3,
5137,
535,
50266,
605,
380,
19415,
2603,
310,
275,
3236,
15,
9275,
187,
50266,
1088,
3140,
3914,
9275,
6434,
558,
187,
187,
1552,
2987,
15,
533,
309,
971,
281,
2118,
253,
31385,
3671,
432,
6287,
281,
12119,
11534,
15,
187,
187,
34,
27,
3346,
28872,
14042,
537,
369,
327,
2440,
4771,
537,
28763,
2139,
891,
812,
2649,
1527,
253,
31385,
3671,
537,
187,
3140,
64,
1065,
64,
28662,
1587,
3043,
47725,
16,
3446,
5,
12690,
86,
662,
360,
961,
15,
22746,
9275,
995,
269,
5758,
3914,
9275,
6434,
13,
686,
83,
26811,
535,
50279,
187,
10708,
4955,
15,
17676,
3683,
15,
24111,
15,
25321,
8076,
28,
187,
187,
2948,
4955,
15,
8418,
15,
48391,
15,
38657,
34356,
5330,
28,
187,
2948,
4955,
15,
8418,
15,
48391,
15,
5478,
484,
15,
15883,
8076,
28,
187,
187,
2948,
7626,
15,
900,
15,
38487,
28,
187,
2948,
7626,
15,
3024,
15,
12023,
22274,
28,
187,
187,
6930,
187,
475,
1876,
5811,
253,
7275,
8076,
4771,
281,
320,
5339,
407,
268,
25751,
247,
2245,
581,
3687,
685,
253,
4771,
2245,
15,
187,
475,
187,
475,
1214,
7582,
10672,
20867,
33614,
379,
187,
475,
1214,
17480,
374,
15,
18,
187,
1738,
187,
4387,
966,
6270,
8076,
44079,
37279,
17930,
416,
45757,
551,
535,
186,
4387,
4228,
2457,
4605,
308,
2277,
24227,
64,
44,
10592,
64,
13753,
38283,
64,
11645,
11477,
426,
346,
15883,
8076,
44079,
37279,
15,
4507,
3664,
535,
186,
18641,
6270,
8076,
7275,
8076,
28,
187,
186,
18641,
540,
4771,
11688,
28,
535,
186,
4387,
6270,
8076,
44079,
37279,
9,
15883,
8076,
7275,
8076,
13,
540,
4771,
11688,
10,
551,
996,
186,
2520,
15,
25321,
8076,
426,
7275,
8076,
28,
996,
186,
2520,
15,
9438,
11688,
426,
4771,
11688,
28,
187,
186,
94,
535,
186,
4387,
4228,
12419,
310,
16754,
1082,
551,
996,
186,
2309,
23858,
15,
788,
25035,
1587,
15883,
8076,
44079,
37279,
15,
4507,
3287,
187,
186,
94,
535,
186,
4387,
2991,
1408,
1082,
551,
996,
186,
7761,
15,
1178,
8324,
1587,
15883,
8076,
44079,
37279,
15,
4507,
995,
346,
5672,
3287,
996,
186,
565,
5159,
11119,
11688,
426,
4771,
11688,
559,
337,
28,
996,
186,
12023,
22274,
4771,
22274,
426,
2794,
44079,
37279,
9,
24212,
11119,
11688,
558,
996,
186,
338,
313,
9438,
22274,
3613,
3635,
10,
551,
988,
186,
14626,
551,
2657,
186,
9438,
22274,
15,
14764,
1874,
2657,
186,
14626,
551,
2664,
186,
25321,
8076,
15,
13121,
1874,
2664,
186,
25321,
8076,
15,
26316,
1874,
2664,
186,
7761,
15,
1178,
8324,
9,
53,
2277
] |
evaluate $X(N,a)$ for $N \in \{1,2,3,4,5,6\}$
\footnote{One could evaluate $X(7,a)$ as well \cite{FliSchmSchu},
but this does not appear necessary in view of the excellent convergence.},
$Y(N',a)$ could be calculated
for every integer $N'$. We interpolated $Y(N',a)$ by a spline and defined
the functions
\begin{equation}\label{WNdef}
W_N(a) = X(N,a) + Y(N-\frac{3}{2}, a) \quad.
\end{equation}
From the equations (\ref{prefac}, \ref{drop0-} -- \ref{WNdef})
\begin{equation} \label{LimWN}
\lim_{N \rightarrow \infty} W_N(a) = \ln \left(U_0^4 \frac{\det''K}{\det K_0}
\right) = - 2 \ln \left(\frac{A}{m_H(T)^4} \right)
\end{equation}
follows. While the $W_N(a)$'s are functions of $a$, the limit is not.
This will give us a good criterion for the quality of convergence \cite{Laser}.
For every critical bubble calculated above we have evaluated the functions $W_1(a)$, \ldots, $W_6(a)$. Figure 7 shows the typical behavior.
If $a$ -- the squared mass pulled out -- is too small, there is no convergence
at all. If $a$ is too big, the convergence is bad. But if $a$ is similar
to the natural mass scale $U_0$, the functions converge quite well towards
a constant, which is plotted as dashed line.
There are several sources of error in the outlined procedure:
numerical errors, ambiguities in interpolating $Y(N',a)$ and
uncertainties in fixing the limit of the $W_N(a)$'s. We have estimated
them to be less than 2\%. The values of $\ln(A/T^4)$
are listed in table 1 and plotted in figure 9 (dashed line).
\subsection{The static prefactor and the effective
action of the critical bubble}
Up to now the static prefactor
has usually been estimated from dimensional reasons as $T^4$ \cite{Linde},
or as $m_H(T)^4$ \cite{LiuMcLTu}. There are some other calculations of the
prefactor, which take only into account the lowest eigenvalues of $K$
\cite{BuFoHeWa, CoKaMau}.
The results of these calculations are somewhere between the two dimensional
estimates. To compare our results with these values we have expressed $A$
in units of GeV.
In figure 8 they are plotted together
with these two estimates. One sees that the static prefactor calculated
by us varies substantially from $y=0.1$ to $y=0.9$. On the side of the
critical temperature $(y=0)$ it is much smaller than previous values.
This results in a much smaller nucleation rate.
In a recent paper \cite{BaKi} the fluctuation corrections to
critical bubbles calculated from the usual model effective potential are
discussed. The method is based on the solution of Schr\"odinger type
eigenvalue equations and totally different from our procedure. Unfortunately
the present results are hard to compare because in ref.~\cite{BaKi} the
high-temperature limit is not taken and because the potential differs in
detail. A comparison of the two methods in a common case would be very
interesting.
The logarithm of the rate $R/T^3$ defined in eq.~(\ref{R}) is
\begin{equation}
\ln \left( \frac{R}{T^3} \right) =
\ln \left( \frac{1}{2\pi}\left(\frac{\bar{S}}{2\pi}\right)^{3/2}
\frac{T}{\sqrt{|\lambda_-|}} \right)
+ \ln \left( \frac{A}{T^4} \right) - \bar{S} \quad.
\end{equation}
The different contributions are plotted in comparison in figure 9. One sees that
the first one is small and
nearly constant. The nucleation rate is determined by $-\bar{S}$ and
$\ln(A/T^4)$. The comparison of these two values
decides on the reliability of our results. $-\ln(A/T^4)$ is nothing but
the one-loop correction to $\bar{S}$ coming from scalar loops. Therefore
$|\ln(A/T^4)|\ll \bar{S}$ is required for consistency.
Very close to the critical and the roll-over temperature
it matters that the radiative corrections
shift the values of $T_c$ and $T_{\rm ro}$. This effect should perhaps better
be incorporated in the quasiclassical effective action. In our approach it
causes an increase of the static prefactor near these temperatures. However,
investigating the electroweak phase transition the interesting temperatures
are well separated from $T_c$ and $T_{\rm ro}$, as we will see below.
In Langer's theory the static prefactor $A$ takes the possibility
into account that the phase transition may be started by a bubble which
differs from the critical one. On the other hand the whole theory is based on
a solution of the equations of motion in the neighborhood of the
saddlepoint that corresponds to the critical bubble. From this reasoning
one again gets that $|\ln(A/T^4)|\ll \bar{S}$ should be valid.
This comparison is not unambiguous because $\bar{S}$ is dimensionless while
$A$ is not. Expressing $A$ in $T$ seems to be appropriate because the
temperature is the typical scale of the phase transition.
Therefore the nucleation rate calculated by us is not reliable at temperatures
near the roll-over temperature $y=1$. Taking estimates based on
cosmological reasons however, the electroweak phase transition starts when
$\ln(R/T^3)\approx 140$. \footnote{Here we have assumed
that $\kappa={\cal O}(1)$.} The relative starting temperature is therefore $y_s=0.42$.
At this temperature $|\ln(A/T^4)| \approx 0.3 \bar{S}$. This
is an acceptable correction.
However, with $z$ smaller than 1 we find according to eq.~(\ref{Sscaling})
an additional suppression of the
leading term ($\bar{S}$), i.e. the the one-loop contribution
becomes relatively more important, indicating a less convergent loop expansion.
\subsection{Results for other Higgs masses}
The numerical calculations presented have been done for the zero
temperature Higgs masses $\tilde{m}_H=\frac{1}{2}\tilde{m}_W,
\frac{3}{4}\tilde{m}_W$ and $\tilde{m}_W$. The results are listed in
the tables 1, 2 and 3.
The critical temperature $T_c$ and the roll-over temperature $T_{\rm ro}$
depend on the Higgs mass. One should compare values corresponding to different
masses at the same relative temperature $y$ defined in eq.~(\ref{ydef}).
The actions $\bar{S}$ of the critical bubbles depend strongly on the Higgs
mass, while the Higgs mass dependence of the static prefactor is only
small. Although the rates are quite different for the three masses
the relative onset temperatures differ only moderately. This is
due to the fact that the rates decrease rapidly when the temperature is
lowered.
We have listed the relative onset temperatures in table 4
together with the corresponding values of
$\bar{S}$, $\ln(A/T^4)$ and the quotient of both.
This quotient decides, as argued above, on the reliability of the
nucleation rate formula (eq.~(\ref{rate})).
One sees that the corrections get worse if the Higgs mass increases.
\subsection{Comparison with the thin-wall approximation}
If the temperature is just below the critical temperature $T_c$
the radius $R$ of the critical bubble is much larger than the size of
the bubble wall $\Delta R$. In the limit $T \rightarrow T_c$ and
$\Delta R \ll R$ the effective action of the critical bubble can be
written as (for $z=1$)
\begin{equation}
\bar{S}_{\rm TW} = \frac{1}{g_3^2} \frac{16 \pi \sigma^3}{3 \epsilon^2}
\end{equation}
with the volume energy
\begin{equation}
\epsilon = - V_{\rm eff}(T,\varphi_A)
\end{equation}
and the surface tension
\begin{equation}
\sigma | redpajama | [
7472,
370,
57,
9,
47,
13,
66,
1009,
323,
370,
47,
393,
249,
9121,
18,
13,
19,
13,
20,
13,
21,
13,
22,
13,
23,
10952,
209,
187,
61,
8938,
9939,
92,
4041,
812,
7472,
370,
57,
9,
24,
13,
66,
1009,
347,
973,
393,
41766,
92,
39,
965,
10859,
78,
10859,
86,
2023,
209,
187,
2858,
436,
1057,
417,
3176,
3309,
275,
1859,
273,
253,
7126,
14940,
15,
2023,
209,
187,
5,
58,
9,
47,
1383,
66,
1009,
812,
320,
5118,
187,
1542,
1046,
7007,
370,
47,
30916,
844,
20670,
456,
370,
58,
9,
47,
1383,
66,
1009,
407,
247,
6821,
460,
285,
2931,
187,
783,
3470,
187,
61,
2043,
92,
29813,
889,
1968,
92,
35414,
1545,
94,
187,
56,
64,
47,
9,
66,
10,
426,
1594,
9,
47,
13,
66,
10,
559,
714,
9,
47,
2249,
1124,
92,
20,
1217,
19,
2023,
247,
10,
393,
3362,
15,
187,
61,
423,
92,
29813,
94,
187,
4509,
253,
7424,
5081,
709,
92,
11499,
317,
2023,
393,
709,
92,
12233,
17,
14,
94,
1969,
393,
709,
92,
35414,
1545,
2311,
209,
187,
61,
2043,
92,
29813,
94,
393,
1968,
92,
36469,
35414,
94,
187,
61,
2815,
578,
47,
393,
4287,
393,
3259,
94,
411,
64,
47,
9,
66,
10,
426,
393,
6677,
393,
1274,
9,
54,
64,
17,
63,
21,
393,
1124,
464,
5992,
6267,
44,
2704,
5992,
611,
64,
17,
94,
187,
61,
918,
10,
426,
428,
374,
393,
6677,
393,
1274,
1035,
1124,
92,
34,
1217,
78,
64,
41,
9,
53,
4800,
21,
94,
393,
918,
10,
187,
61,
423,
92,
29813,
94,
187,
25739,
84,
15,
3900,
253,
370,
56,
64,
47,
9,
66,
1009,
8,
84,
403,
3470,
273,
370,
66,
1366,
253,
2701,
310,
417,
15,
209,
187,
1552,
588,
1918,
441,
247,
1175,
17705,
323,
253,
3290,
273,
14940,
393,
41766,
92,
45,
12290,
7165,
187,
187,
2214,
1046,
4619,
19251,
5118,
1840,
359,
452,
6760,
253,
3470,
370,
56,
64,
18,
9,
66,
4244,
393,
5589,
13,
370,
56,
64,
23,
9,
66,
3822,
5317,
818,
2722,
253,
6867,
3879,
15,
187,
2042,
370,
66,
5,
1969,
253,
30044,
2280,
7320,
562,
1969,
310,
1512,
1355,
13,
627,
310,
642,
14940,
187,
255,
512,
15,
1310,
370,
66,
5,
310,
1512,
1943,
13,
253,
14940,
310,
3076,
15,
1292,
604,
370,
66,
5,
310,
2074,
187,
936,
253,
3626,
2280,
4311,
370,
54,
64,
17,
1366,
253,
3470,
29623,
3240,
973,
4404,
187,
66,
3638,
13,
534,
310,
17944,
347,
17889,
1386,
15,
187,
187,
2512,
403,
2067,
4973,
273,
2228,
275,
253,
18627,
5199,
27,
187,
40907,
474,
6332,
13,
15200,
39560,
275,
20670,
839,
370,
58,
9,
47,
1383,
66,
1009,
285,
209,
187,
7157,
797,
19260,
275,
18505,
253,
2701,
273,
253,
370,
56,
64,
47,
9,
66,
1009,
8,
84,
15,
844,
452,
5998,
209,
187,
16083,
281,
320,
1679,
685,
374,
19182,
964,
380,
2193,
273,
669,
6677,
9,
34,
16,
53,
63,
21,
1009,
209,
187,
609,
7117,
275,
2829,
337,
285,
17944,
275,
4677,
898,
313,
32448,
1386,
481,
586,
187,
61,
2377,
4674,
92,
510,
4228,
638,
19012,
285,
253,
3576,
2490,
50265,
1913,
273,
253,
4619,
19251,
94,
187,
187,
5683,
281,
1024,
253,
4228,
638,
19012,
187,
7110,
3798,
644,
5998,
432,
15759,
4606,
347,
370,
53,
63,
21,
5,
393,
41766,
92,
45,
25313,
2023,
187,
263,
347,
370,
78,
64,
41,
9,
53,
4800,
21,
5,
393,
41766,
92,
41392,
11773,
20072,
86,
7165,
1707,
403,
690,
643,
10426,
273,
253,
187,
11499,
5906,
13,
534,
1379,
760,
715,
2395,
253,
8840,
20223,
273,
370,
44,
5,
209,
187,
61,
41766,
92,
9263,
48179,
1328,
46725,
13,
2434,
29456,
46,
1952,
7165,
187,
510,
1543,
273,
841,
10426,
403,
9366,
875,
253,
767,
15759,
187,
383,
36940,
15,
1916,
7277,
776,
1543,
342,
841,
2193,
359,
452,
4469,
370,
34,
5,
187,
249,
5085,
273,
22542,
15,
187,
688,
4677,
854,
597,
403,
17944,
2366,
209,
187,
3113,
841,
767,
8197,
15,
2596,
11403,
326,
253,
4228,
638,
19012,
5118,
209,
187,
1615,
441,
16149,
9619,
432,
370,
90,
30,
17,
15,
18,
5,
281,
370,
90,
30,
17,
15,
26,
1352,
1623,
253,
1930,
273,
253,
209,
187,
26717,
3276,
3019,
90,
30,
17,
1009,
352,
310,
1199,
4577,
685,
2045,
2193,
15,
187,
1552,
1543,
275,
247,
50276,
25914,
4577,
48671,
2281,
15,
187,
187,
688,
247,
3332,
2929,
393,
41766,
92,
24348,
40170,
94,
253,
31608,
17660,
281,
209,
187,
26717,
27892,
5118,
432,
253,
7312,
1566,
3576,
2442,
403,
209,
187,
35844,
264,
15,
380,
1332,
310,
1754,
327,
253,
2900,
273,
32164,
10632,
4442,
254,
1511,
209,
187,
70,
3855,
2877,
7424,
285,
9106,
1027,
432,
776,
5199,
15,
12526,
209,
187,
783,
1246,
1543,
403,
1892,
281,
7277,
984,
275,
1275,
15,
18078,
41766,
92,
24348,
40170,
94,
253,
209,
187,
8656,
14,
26158,
2701,
310,
417,
2668,
285,
984,
253,
2442,
19986,
275,
209,
187,
20119,
15,
329,
5301,
273,
253,
767,
3082,
275,
247,
1846,
1083,
651,
320,
1077,
209,
187,
47606,
15,
15267,
187,
510,
42407,
273,
253,
2281,
370,
51,
16,
53,
63,
20,
5,
2931,
275,
16186,
15,
95,
1035,
709,
92,
51,
2311,
310,
187,
61,
2043,
92,
29813,
94,
187,
61,
6677,
393,
1274,
9,
393,
1124,
92,
51,
1217,
53,
63,
20,
94,
393,
918,
10,
426,
2490,
50274,
61,
6677,
393,
1274,
9,
393,
1124,
92,
18,
1217,
19,
61,
2059,
889,
1274,
1035,
1124,
464,
2009,
92,
52,
5932,
19,
61,
2059,
889,
918,
7415,
20,
16,
19,
94,
187,
50262,
61,
1124,
92,
53,
2704,
2609,
44851,
2260,
18914,
93,
599,
393,
918,
10,
187,
50276,
12,
393,
6677,
393,
1274,
9,
393,
1124,
92,
34,
1217,
53,
63,
21,
94,
393,
918,
10,
428,
393,
2009,
92,
52,
94,
393,
3362,
15,
187,
61,
423,
92,
29813,
94,
187,
510,
1027,
9021,
403,
17944,
275,
5301,
275,
4677,
898,
15,
2596,
11403,
326,
209,
187,
783,
806,
581,
310,
1355,
285,
187,
570,
1285,
3638,
15,
380,
48671,
2281,
310,
3413,
407,
37329,
2009,
92,
52,
724,
285,
209,
187,
1202,
6677,
9,
34,
16,
53,
63,
21,
3822,
380,
5301,
273,
841,
767,
2193,
187,
8632,
1487,
327,
253,
13367,
273,
776,
1543,
15,
37329,
6677,
9,
34,
16,
53,
63,
21,
1009,
310,
2717,
533,
209,
187,
783,
581,
14,
14075,
10618,
281,
669,
2009,
92,
52,
724,
3551,
432,
13434,
17417,
15,
3813,
209,
187,
5,
3577,
6677,
9,
34,
16,
53,
63,
21,
30919,
620,
393,
2009,
92,
52,
724,
310,
2424,
323,
15274,
15,
2490,
187,
17534,
2810,
281,
253,
4619,
285,
253,
4533,
14,
1189,
3276,
209,
187,
262,
8213,
326,
253,
35873,
17660,
187,
11551,
253,
2193,
273,
370,
53,
64,
68,
5,
285,
370,
53,
1126,
1109,
687,
3363,
831,
1055,
943,
4931,
1805,
187,
1257,
11217,
275,
253,
21582,
280,
14407,
474,
3576,
2250,
15,
496,
776,
2746,
352,
187,
68,
19726,
271,
2572,
273,
253,
4228,
638,
19012,
2822,
841,
9208,
15,
1723,
13,
187,
24889,
21032,
253,
4640,
20881,
3408,
5502,
253,
4722,
9208,
209,
187,
609,
973,
9070,
432,
370,
53,
64,
68,
5,
285,
370,
53,
1126,
1109,
687,
3303,
347,
359,
588,
923,
2708,
15,
2490,
187,
688,
418,
3751,
434,
3762,
253,
4228,
638,
19012,
370,
34,
5,
3936,
253,
6387,
187,
14806,
2395,
326,
253,
3408,
5502,
778,
320,
3053,
407,
247,
19251,
534,
187,
13437,
398,
432,
253,
4619,
581,
15,
1623,
253,
643,
1133,
253,
2644,
3762,
310,
1754,
327,
187,
66,
2900,
273,
253,
7424,
273,
3200,
275,
253,
9168,
273,
253,
209,
187,
84,
17014,
3659,
326,
10140,
281,
253,
4619,
19251,
15,
4325,
436,
14720,
187,
531,
969,
4850,
326,
17334,
6677,
9,
34,
16,
53,
63,
21,
30919,
620,
393,
2009,
92,
52,
724,
943,
320,
3588,
15,
187,
1552,
5301,
310,
417,
39662,
984,
669,
2009,
92,
52,
724,
310,
41861,
1223,
209,
187,
5,
34,
5,
310,
417,
15,
16500,
272,
370,
34,
5,
275,
370,
53,
5,
3133,
281,
320,
4569,
984,
253,
187,
26158,
310,
253,
6867,
4311,
273,
253,
3408,
5502,
15,
187,
187,
17756,
253,
48671,
2281,
5118,
407,
441,
310,
417,
9630,
387,
9208,
187,
31323,
253,
4533,
14,
1189,
3276,
370,
90,
30,
18,
1352,
21525,
8197,
1754,
327,
187,
4752,
78,
1975,
4606,
2299,
13,
253,
4640,
20881,
3408,
5502,
7866,
672,
209,
187,
1202,
6677,
9,
51,
16,
53,
63,
20,
1572,
9887,
11858,
1352,
393,
8938,
9939,
92,
4943,
359,
452,
8025,
187,
3529,
669,
6165,
22978,
1179,
473,
1603,
18,
3822,
94,
380,
4103,
4983,
3276,
310,
3103,
370,
90,
64,
84,
30,
17,
15,
2945,
1352,
187,
3404,
436,
3276,
17334,
6677,
9,
34,
16,
53,
63,
21,
8579,
393,
9887,
470,
15,
20,
393,
2009,
92,
52,
3363,
831,
187,
261,
271,
12207,
10618,
15,
2490,
187,
6436,
13,
342,
370,
91,
5,
4577,
685,
337,
359,
1089,
2556,
281,
16186,
15,
95,
1035,
709,
92,
52,
49708,
2311,
187,
266,
3081,
14523,
273,
253,
209,
187,
16378,
1307,
11443,
2009,
92,
52,
40360,
891,
15,
70,
15,
253,
253,
581,
14,
14075,
7680,
209,
187,
1257,
3217,
4942,
625,
1774,
13,
7809,
247,
1679,
41886,
6287,
7466,
15,
535,
187,
61,
2377,
4674,
92,
9340,
323,
643,
22361,
11843,
94,
187,
187,
510,
10704,
10426,
3559,
452,
644,
2218,
323,
253,
5058,
209,
187,
26158,
22361,
11843,
669,
3582,
92,
78,
2000,
41,
2029,
1124,
92,
18,
1217,
19,
889,
3582,
92,
78,
2000,
56,
13,
209,
187,
61,
1124,
92,
20,
1217,
21,
889,
3582,
92,
78,
2000,
56,
5,
285,
669,
3582,
92,
78,
2000,
56,
1352,
380,
1543,
403,
7117,
275,
209,
187,
783,
7180,
337,
13,
374,
285,
495,
15,
2490,
187,
510,
4619,
3276,
370,
53,
64,
68,
5,
285,
253,
4533,
14,
1189,
3276,
370,
53,
1126,
1109,
687,
724,
187,
14455,
327,
253,
22361,
2280,
15,
2596,
943,
7277,
2193,
3969,
281,
1027,
209,
187,
14611,
265,
387,
253,
1072,
4103,
3276,
370,
90,
5,
2931,
275,
16186,
15,
95,
1035,
709,
92,
90,
1545,
38331,
187,
510,
5231,
669,
2009,
92,
52,
724,
273,
253,
4619,
27892,
3469,
7052,
327,
253,
22361,
209,
187,
14611,
13,
1223,
253,
22361,
2280,
10096,
273,
253,
4228,
638,
19012,
310,
760,
187,
6795,
15,
4129,
253,
4142,
403,
3240,
1027,
323,
253,
1264,
11843,
187,
783,
4103,
11653,
9208,
9184,
760,
28249,
15,
831,
310,
187,
21848,
281,
253,
958,
326,
253,
4142,
6379,
9086,
672,
253,
3276,
310,
187,
676,
2122,
15,
2490,
187,
1231,
452,
7117,
253,
4103,
11653,
9208,
275,
2829,
577,
209,
187,
36776,
342,
253,
3969,
2193,
273,
187,
1202,
2009,
92,
52,
3303,
669,
6677,
9,
34,
16,
53,
63,
21,
1009,
285,
253,
26860,
273,
1097,
15,
187,
1552,
26860,
21936,
13,
347,
9125,
1840,
13,
327,
253,
13367,
273,
253,
187,
29371,
318,
2281,
7212,
313,
2574,
15,
95,
1035,
709,
92,
4427,
2311,
481,
209,
187,
4041,
11403,
326,
253,
17660,
755,
7197,
604,
253,
22361,
2280,
5459,
15,
586,
187,
61,
2377,
4674,
92,
23648,
342,
253,
6906,
14,
12081,
11193,
94,
187,
187,
2042,
253,
3276,
310,
816,
2708,
253,
4619,
3276,
370,
53,
64,
68,
5,
187,
783,
9941,
370,
51,
5,
273,
253,
4619,
19251,
310,
1199,
4067,
685,
253,
1979,
273,
187,
783,
19251,
3402,
669,
3442,
416,
1352,
496,
253,
2701,
370,
53,
393,
4287,
308,
64,
68,
5,
285,
187,
1202,
3442,
416,
393,
620,
416,
5,
253,
3576,
2250,
273,
253,
4619,
19251,
476,
320,
209,
187,
15720,
347,
313,
1542,
370,
91,
30,
18,
7884,
187,
61,
2043,
92,
29813,
94,
187,
61,
2009,
92,
52,
4689,
1109,
30694,
94,
426,
393,
1124,
92,
18,
1217,
72,
64,
20,
63,
19,
94,
393,
1124,
92,
1036,
393,
2059,
393,
2592,
63,
20,
1217,
20,
393,
4259,
63,
19,
94,
187,
61,
423,
92,
29813,
94,
187,
3113,
253,
4644,
2341,
187,
61,
2043,
92,
29813,
94,
187,
61,
4259,
426,
428,
657,
1126,
1109,
3098,
1603,
53,
1337,
4535,
64,
34,
10,
187,
61,
423,
92,
29813,
94,
187,
395,
253,
2553,
12415,
187,
61,
2043,
92,
29813,
94,
187,
61,
2592
] |
above them. One of the blasts had tossed a car onto the sidewalk, where it lay mangled and flipped on its back like a dead crab on a beach. The rain started to pick up, and I was quickly covered in the orange sand the rain was pulling from the sky. My notebook from that day was covered in so much wet sand that I had to wipe the pages clean with the back of my hand to read what I'd written. Later, I wrote in my journal what I'd seen.
> March 26, 2003
>
>
>
> I saw a man pick through the rubble. He uncovered a severed hand under a board. He picked it up by a finger and held it up over his head. Everyone started cheering, "Allahu Akhbar! Allahu Akhbar!"
>
> There were pools of blood in the mud beneath my feet. I was walking through the mud, trying to avoid stepping in the blood. I didn't want to offend people by walking in the blood. But I couldn't avoid it.
>
> I saw a nearly intact brain on the cement floor inside one of the shops. It was nauseating. The atmosphere was tense.
It was in fact very tense.
"This is the blood of Iraqi civilians! This is the blood of the Iraqi people," a man yelled in my face as I walked through the bloody pool mixed with mud. He bent down and put his hands in the blood and then shoved his hands in my face so I could see it close up. He was both crying and yelling at the same time. I tried to back away, but found myself surrounded by people cheering, "Allahu Akhbar!" Arabic for _God is Greatest._ The phrase is the heart of the prayers pious Muslims perform five times a day. It embodies everything Muslims believe, which is fundamentally that God—Allah—is greater than human existence and that a Muslim—a word that literally means in Arabic a person who "surrenders"—must submit to God's greater power. Calling out _Allahu Akhbar_ was a way for the crowd to try to overcome the tragedy—which they were powerless to prevent—by drawing strength from their faith. To call out _Allahu Akhbar_ meant—perhaps subconsciously—that they would not be defeated because God's power is greater than what had just happened, greater than death or American bombs. I'd seen Palestinians react similarly to death many, many times. Allahu Akhbar! Today you killed me, but remember, God is greatest.
I tried to back out of the circle of people around me.
"Why are the Americans bombing during the day?" one man yelled at me. "Bush promised not to target civilians, but these were all civilians! What did these people do?"
The crowd continued to grow. People were all shouting at once. They knew I was a reporter because I was carrying a camera and a notebook. Luckily, no one knew I was an American. These people had just lost family members, neighbors and friends. I beefed up my Egyptian accent, making sure to pronounce my J's like G's and use colloquial expressions common in the Egyptian dialect, which all Iraqis recognize from Egyptian movies and TV sitcoms.
"How could the Americans see what they were hitting through the sandstorm?" another man demanded that I explain to him.
I think the most revealing question—which wasn't really a question, but was an example of the Arab use of rhetorical questions—was "If the Americans didn't want to hit civilians, why did they hit civilians?"
I suggested that perhaps the bombing had been a mistake. Everyone around me emphatically shook his head to say "no way." People were convinced that what had happened could not have been a mistake, although they had no way of knowing that. I've found this attitude common in the Arab world. I believe it stems from a combination of the general mistrust of the American government with a reverence for, and faith in, American (and Israeli) technology. It was the same attitude I found in many Arab countries after the atrocities of September 11, 2001, which many people in the Middle East continue to believe were launched by a Jewish conspiracy. Many Arabs had such esteem for the CIA, the Mossad and American military gadgetry—their impressions reinforced by Hollywood action movies popular in the region—that they refused to believe the Americans could have let the World Trade Center and the Pentagon be attacked if they didn't want it to happen. It was the same attitude I was finding in Iraq. The Iraqis had seen American cruise missiles turn corners in mid-flight and destroy government ministry buildings without scratching the paint of adjacent homes and therefore believed President Bush's promise of a war that would target Saddam Hussein and spare the Iraqi people. Yet two missiles had just landed in the middle of a poor commercial area. The people wanted to know why. They concluded that the Americans must have planned it that way and felt they'd been lied to.
I asked people in the huddle around me what interest the United States would have in bombing a civilian neighborhood. "They want to break the backs of the Iraqi people...to break our will. But we will never be broken!" one man shouted. People liked his answer and started cheering, "Allahu Akhbar, Allahu Akhbar!"
The Pentagon later tried to distance itself from the al-Shaab bombing, saying "it did not target civilians" and that it was "quite possible" that the blasts could have been caused by Iraqi missiles.
I don't know what caused the blasts. I do know, however, that the Iraqi government did capitalize on the attack for its propaganda. The next day, Iraqi newspapers published large color pictures of the casualties on both their front and back covers. The images were shockingly gruesome: closeups of severed limbs and nearly decapitated bodies.
Forty-eight hours after the missile strikes in the al-Shaab district, two more missiles landed during the evening shopping hours in a poor open market in Baghdad. This time more than sixty Iraqi civilians were killed. I saw food stalls splattered with blood. Raw sewage was pouring out of broken pipes in the ground. My pants and shoes were covered in filth as I trudged through the aftermath. After the second attack, no one in Baghdad believed that only Saddam Hussein and his government were the targets of the American war.
As I stood in the al-Shaola market—the scene of the second attack—a crowd gathered around me. Again, men were screaming in my ears. "The Americans have high-tech weapons," one man yelled. "They know what they hit. They wanted to hit us!"
"This is not about Saddam Hussein," added another man. "Even if the Americans remove him we'll continue to fight. This is a war against Islam. A true Arab never bows his head to the enemy, but looks up to God."
# CHAPTER SIX
ON MARCH 29 IT FINALLY happened. The American and British forces—I always felt uncomfortable calling only two countries "a coalition"—bombed the Information Ministry in the middle of the night. I wasn't sorry to see it hit, but it did leave me without a place to work. The morning after the air strike, Ali and I drove to the press center—both out of curiosity and force of habit. We knew the building had become a target, but I was tied to it. The live TV cameras were still at the building, and so were the minders. The press center had become my "home away from home," although it seemed more like an orphanage run by a bunch of lackeys who worked for a hateful government.
The Information Ministry building looked relatively intact when we pulled up to it. The building—like the Palestine—consisted of a tall tower that rose from a wider base, making it look something like a two-tiered wedding cake, albeit one designed in a stark, socialist architectural style. The press center had been in the bottom layer of the cake. The tower had housed the offices where information minister Uday al-Ta'e and the other spies worked and, I presume, played too. The American bombs had punched a hole in the middle of the tower's roof, shredding Iraqi TV satellite dishes that had perched there. The bomb had exploded after it was in the middle of the tower, blowing out the offices and ultimately shattering most of the windows. Parts of the building had evidently caught fire and there were black lick marks above many windows. Amazingly, the live TV cameras—located above the press center, on the flat of the first step of the "wedding cake"—were left relatively unscathed.
Although the sandstorm had by now mostly dissipated, it had covered every surface with fine orange powder. The storm's ferocious winds had also thrown our tripods, tents, windscreens and other assorted gear every which way.
I was plugged in to my live camera—weighted down by sandbags—waiting for my turn on _Good Morning America,_ when I heard a fighter jet rip through the sky overhead. It was an American jet. I say this with confidence because as far as I am aware, the Iraqi air force never got off the ground. In fact, Iraqi planes were found after the war buried in the desert, some wrapped in plastic, others simply covered in sand. The Iraqis either didn't want to lose their prized jets or thought it would have been suicide to go up in them. I tore off my microphone and ran out of the building, fearing the American jet was preparing to finish the work of the previous night and flatten the Information Ministry. All | redpajama | [
1840,
731,
15,
2596,
273,
253,
787,
9346,
574,
27352,
247,
1113,
4830,
253,
33619,
13,
835,
352,
2242,
19695,
1070,
285,
34572,
327,
697,
896,
751,
247,
3846,
40501,
327,
247,
11600,
15,
380,
9313,
3053,
281,
2619,
598,
13,
285,
309,
369,
4541,
6107,
275,
253,
13735,
7537,
253,
9313,
369,
14252,
432,
253,
8467,
15,
2752,
24849,
432,
326,
1388,
369,
6107,
275,
594,
1199,
9685,
7537,
326,
309,
574,
281,
31179,
253,
7223,
4076,
342,
253,
896,
273,
619,
1133,
281,
1239,
752,
309,
1871,
3542,
15,
14772,
13,
309,
4159,
275,
619,
6698,
752,
309,
1871,
2326,
15,
187,
187,
31,
3919,
3436,
13,
6469,
50276,
187,
31,
50275,
187,
31,
209,
187,
31,
209,
187,
31,
309,
3047,
247,
637,
2619,
949,
253,
7692,
934,
15,
754,
27819,
247,
43805,
1133,
762,
247,
4450,
15,
754,
5055,
352,
598,
407,
247,
9185,
285,
2918,
352,
598,
689,
521,
1481,
15,
17814,
3053,
45927,
13,
346,
3074,
20957,
14181,
13861,
2,
1876,
20957,
14181,
13861,
1476,
187,
31,
209,
187,
31,
1707,
497,
24283,
273,
2614,
275,
253,
16059,
11834,
619,
4669,
15,
309,
369,
7824,
949,
253,
16059,
13,
2820,
281,
3693,
24655,
275,
253,
2614,
15,
309,
1904,
626,
971,
281,
745,
423,
952,
407,
7824,
275,
253,
2614,
15,
1292,
309,
4571,
626,
3693,
352,
15,
187,
31,
209,
187,
31,
309,
3047,
247,
4829,
15282,
3998,
327,
253,
19165,
5254,
3304,
581,
273,
253,
16999,
15,
733,
369,
28237,
839,
15,
380,
10825,
369,
29341,
15,
187,
187,
1147,
369,
275,
958,
1077,
29341,
15,
187,
187,
3,
1552,
310,
253,
2614,
273,
24923,
23332,
2,
831,
310,
253,
2614,
273,
253,
24923,
952,
937,
247,
637,
28435,
275,
619,
2454,
347,
309,
7428,
949,
253,
19867,
6363,
6804,
342,
16059,
15,
754,
16535,
1066,
285,
1691,
521,
3564,
275,
253,
2614,
285,
840,
38570,
521,
3564,
275,
619,
2454,
594,
309,
812,
923,
352,
2810,
598,
15,
754,
369,
1097,
17800,
285,
34553,
387,
253,
1072,
673,
15,
309,
3597,
281,
896,
1977,
13,
533,
1119,
4266,
13750,
407,
952,
45927,
13,
346,
3074,
20957,
14181,
13861,
1476,
26503,
323,
795,
13618,
310,
6495,
383,
3333,
380,
12616,
310,
253,
2798,
273,
253,
24861,
268,
784,
16492,
1347,
2620,
2069,
247,
1388,
15,
733,
4443,
4550,
3253,
16492,
2868,
13,
534,
310,
26401,
326,
2656,
1128,
3074,
1240,
1128,
261,
3687,
685,
1966,
6242,
285,
326,
247,
8797,
1128,
66,
3159,
326,
12832,
2097,
275,
26503,
247,
1436,
665,
346,
9960,
5047,
398,
23887,
18265,
11929,
281,
2656,
434,
3687,
1612,
15,
9368,
272,
562,
795,
3074,
20957,
14181,
13861,
64,
369,
247,
1039,
323,
253,
9539,
281,
1611,
281,
11399,
253,
22820,
1128,
4609,
597,
497,
1612,
1417,
281,
3657,
1128,
1615,
10263,
4757,
432,
616,
6009,
15,
1916,
1067,
562,
795,
3074,
20957,
14181,
13861,
64,
5486,
1128,
30875,
749,
585,
43386,
1128,
3529,
597,
651,
417,
320,
16473,
984,
2656,
434,
1612,
310,
3687,
685,
752,
574,
816,
4592,
13,
3687,
685,
2471,
390,
2448,
24401,
15,
309,
1871,
2326,
28072,
8071,
12014,
281,
2471,
1142,
13,
1142,
2069,
15,
1876,
20957,
14181,
13861,
2,
11056,
368,
5339,
479,
13,
533,
4456,
13,
2656,
310,
6459,
15,
187,
187,
42,
3597,
281,
896,
562,
273,
253,
9096,
273,
952,
1475,
479,
15,
187,
187,
3,
4967,
403,
253,
7108,
25485,
1309,
253,
1388,
865,
581,
637,
28435,
387,
479,
15,
346,
35,
2345,
12316,
417,
281,
2303,
23332,
13,
533,
841,
497,
512,
23332,
2,
1737,
858,
841,
952,
513,
865,
187,
187,
510,
9539,
4821,
281,
1756,
15,
6491,
497,
512,
26523,
387,
2378,
15,
1583,
3260,
309,
369,
247,
12726,
984,
309,
369,
8785,
247,
6568,
285,
247,
24849,
15,
41624,
13,
642,
581,
3260,
309,
369,
271,
2448,
15,
2053,
952,
574,
816,
3663,
2021,
2758,
13,
15833,
285,
3858,
15,
309,
17645,
264,
598,
619,
22437,
22713,
13,
2403,
2119,
281,
39640,
619,
500,
434,
751,
443,
434,
285,
897,
50014,
451,
12091,
1846,
275,
253,
22437,
28282,
13,
534,
512,
9256,
261,
9446,
432,
22437,
11321,
285,
5579,
1790,
681,
84,
15,
187,
187,
3,
2347,
812,
253,
7108,
923,
752,
597,
497,
16116,
949,
253,
7537,
25576,
865,
1529,
637,
15665,
326,
309,
5513,
281,
779,
15,
187,
187,
42,
1158,
253,
954,
19678,
1953,
1128,
4609,
3589,
626,
1663,
247,
1953,
13,
533,
369,
271,
1650,
273,
253,
8365,
897,
273,
21145,
33140,
3533,
1128,
4238,
346,
2042,
253,
7108,
1904,
626,
971,
281,
4352,
23332,
13,
2139,
858,
597,
4352,
23332,
865,
187,
187,
42,
5125,
326,
4931,
253,
25485,
574,
644,
247,
10551,
15,
17814,
1475,
479,
7013,
5372,
11898,
521,
1481,
281,
1333,
346,
2369,
1039,
449,
6491,
497,
13762,
326,
752,
574,
4592,
812,
417,
452,
644,
247,
10551,
13,
3738,
597,
574,
642,
1039,
273,
8958,
326,
15,
309,
1849,
1119,
436,
12046,
1846,
275,
253,
8365,
1533,
15,
309,
2868,
352,
23880,
432,
247,
5019,
273,
253,
2087,
5384,
18037,
273,
253,
2448,
2208,
342,
247,
3195,
1196,
323,
13,
285,
6009,
275,
13,
2448,
313,
395,
13389,
10,
4302,
15,
733,
369,
253,
1072,
12046,
309,
1119,
275,
1142,
8365,
4343,
846,
253,
36837,
1005,
273,
4397,
1903,
13,
6585,
13,
534,
1142,
952,
275,
253,
10515,
5791,
4035,
281,
2868,
497,
10098,
407,
247,
9556,
13445,
15,
6676,
39004,
574,
824,
12368,
358,
323,
253,
17879,
13,
253,
34186,
324,
285,
2448,
4668,
27835,
788,
610,
1128,
14094,
34965,
28809,
407,
14759,
2250,
11321,
4633,
275,
253,
2919,
1128,
3529,
597,
9284,
281,
2868,
253,
7108,
812,
452,
1339,
253,
3645,
17061,
5197,
285,
253,
30186,
320,
13964,
604,
597,
1904,
626,
971,
352,
281,
5108,
15,
733,
369,
253,
1072,
12046,
309,
369,
4560,
275,
9256,
15,
380,
9256,
261,
574,
2326,
2448,
26603,
28665,
1614,
18803,
275,
4260,
14,
31045,
285,
6909,
2208,
20454,
9195,
1293,
47348,
253,
6848,
273,
9701,
9076,
285,
3103,
6566,
3918,
11301,
434,
9023,
273,
247,
2137,
326,
651,
2303,
42795,
42376,
285,
18345,
253,
24923,
952,
15,
9110,
767,
28665,
574,
816,
17735,
275,
253,
4766,
273,
247,
4105,
6264,
2170,
15,
380,
952,
3078,
281,
871,
2139,
15,
1583,
7945,
326,
253,
7108,
1364,
452,
9355,
352,
326,
1039,
285,
3543,
597,
1871,
644,
27786,
281,
15,
187,
187,
42,
2546,
952,
275,
253,
288,
38226,
1475,
479,
752,
1600,
253,
1986,
2077,
651,
452,
275,
25485,
247,
21731,
9168,
15,
346,
3726,
971,
281,
2740,
253,
22513,
273,
253,
24923,
952,
1051,
936,
2740,
776,
588,
15,
1292,
359,
588,
1620,
320,
7154,
1476,
581,
637,
19294,
15,
6491,
10490,
521,
3662,
285,
3053,
45927,
13,
346,
3074,
20957,
14181,
13861,
13,
1876,
20957,
14181,
13861,
1476,
187,
187,
510,
30186,
1996,
3597,
281,
4181,
3139,
432,
253,
355,
14,
2809,
66,
357,
25485,
13,
3981,
346,
262,
858,
417,
2303,
23332,
3,
285,
326,
352,
369,
346,
39911,
1896,
3,
326,
253,
787,
9346,
812,
452,
644,
4269,
407,
24923,
28665,
15,
187,
187,
42,
1053,
626,
871,
752,
4269,
253,
787,
9346,
15,
309,
513,
871,
13,
2299,
13,
326,
253,
24923,
2208,
858,
5347,
907,
327,
253,
2983,
323,
697,
23306,
15,
380,
1735,
1388,
13,
24923,
18930,
3863,
1781,
3295,
7968,
273,
253,
32853,
327,
1097,
616,
2914,
285,
896,
10949,
15,
380,
3888,
497,
6966,
5356,
26970,
10462,
27,
2810,
8777,
273,
43805,
24601,
285,
4829,
1086,
522,
15281,
8248,
15,
187,
187,
28830,
90,
14,
19521,
3038,
846,
253,
22822,
18200,
275,
253,
355,
14,
2809,
66,
357,
3286,
13,
767,
625,
28665,
17735,
1309,
253,
7237,
12701,
3038,
275,
247,
4105,
1527,
2791,
275,
39759,
15,
831,
673,
625,
685,
21116,
24923,
23332,
497,
5339,
15,
309,
3047,
2739,
48073,
6821,
12376,
342,
2614,
15,
19263,
42655,
369,
31226,
562,
273,
7154,
25886,
275,
253,
3216,
15,
2752,
19110,
285,
12682,
497,
6107,
275,
1193,
394,
347,
309,
492,
438,
2400,
949,
253,
31433,
15,
2732,
253,
1273,
2983,
13,
642,
581,
275,
39759,
6566,
326,
760,
42795,
42376,
285,
521,
2208,
497,
253,
8571,
273,
253,
2448,
2137,
15,
187,
187,
1909,
309,
6225,
275,
253,
355,
14,
2809,
66,
6836,
2791,
1128,
783,
6200,
273,
253,
1273,
2983,
1128,
66,
9539,
13037,
1475,
479,
15,
10036,
13,
1821,
497,
22233,
275,
619,
13628,
15,
346,
510,
7108,
452,
1029,
14,
17556,
8914,
937,
581,
637,
28435,
15,
346,
3726,
871,
752,
597,
4352,
15,
1583,
3078,
281,
4352,
441,
1476,
187,
187,
3,
1552,
310,
417,
670,
42795,
42376,
937,
2879,
1529,
637,
15,
346,
9586,
604,
253,
7108,
5386,
779,
359,
1833,
4035,
281,
3819,
15,
831,
310,
247,
2137,
1411,
8033,
15,
329,
2032,
8365,
1620,
270,
5811,
521,
1481,
281,
253,
9054,
13,
533,
4453,
598,
281,
2656,
449,
187,
187,
4,
32204,
322,
10569,
187,
187,
1139,
353,
20756,
3285,
8017,
36121,
25509,
4592,
15,
380,
2448,
285,
4782,
5621,
1128,
42,
1900,
3543,
20032,
6789,
760,
767,
4343,
346,
66,
20706,
23887,
67,
297,
3026,
253,
8339,
13421,
275,
253,
4766,
273,
253,
2360,
15,
309,
3589,
626,
7016,
281,
923,
352,
4352,
13,
533,
352,
858,
3553,
479,
1293,
247,
1659,
281,
789,
15,
380,
4131,
846,
253,
2329,
9974,
13,
14355,
285,
309,
12668,
281,
253,
2315,
4055,
1128,
15617,
562,
273,
24536,
285,
3490,
273,
8803,
15,
844,
3260,
253,
3652,
574,
2489,
247,
2303,
13,
533,
309,
369,
12331,
281,
352,
15,
380,
3153,
5579,
14693,
497,
1335,
387,
253,
3652,
13,
285,
594,
497,
253,
2564,
398,
15,
380,
2315,
4055,
574,
2489,
619,
346,
9511,
1977,
432,
1728,
937,
3738,
352,
4455,
625,
751,
271,
33260,
486,
1408,
407,
247,
12190,
273,
26238,
12305,
665,
4307,
323,
247,
9239,
1020,
2208,
15,
187,
187,
510,
8339,
13421,
3652,
3261,
4942,
15282,
672,
359,
7320,
598,
281,
352,
15,
380,
3652,
1128,
3022,
253,
29313,
1128,
5040,
6136,
273,
247,
10086,
15469,
326,
9461,
432,
247,
14200,
2613,
13,
2403,
352,
1007,
1633,
751,
247,
767,
14,
37678,
433,
12142,
15221,
13,
23447,
581,
4158,
275,
247,
29274,
13,
30177,
27934,
3740,
15,
380,
2315,
4055,
574,
644,
275,
253,
5004,
3828,
273,
253,
15221,
15,
380,
15469,
574,
24981,
253,
14145,
835,
1491,
9843,
530,
1201,
355,
14,
26385,
8,
70,
285,
253,
643,
47048,
4307,
285,
13,
309,
35533,
13,
4546,
1512,
15,
380,
2448,
24401,
574,
39214,
247,
7793,
275,
253,
4766,
273,
253,
15469,
434,
10699,
13,
28347,
5361,
24923,
5579,
15109,
17114,
326,
574,
591,
2147,
627,
15,
380,
10110,
574,
31032,
846,
352,
369,
275,
253,
4766,
273,
253,
15469,
13,
24935,
562,
253,
14145,
285,
9142,
439,
9476,
954,
273,
253,
8323,
15,
41371,
273,
253,
3652,
574,
28668,
7270,
3289,
285,
627,
497,
2806,
298,
781,
10880,
1840,
1142,
8323,
15,
9394,
91,
5356,
13,
253,
3153,
5579,
14693,
1128,
46033,
1840,
253,
2315,
4055,
13,
327,
253,
6507,
273,
253,
806,
3213,
273,
253,
346,
7184,
5361,
15221,
23887,
12796,
1669,
4942,
440,
1026,
41746,
15,
187,
187,
8430,
253,
7537,
25576,
574,
407,
1024,
6571,
18335,
456,
13,
352,
574,
6107,
1046,
2553,
342,
4030,
13735,
11687,
15,
380,
9902,
434,
8388,
49514,
19362,
574,
671,
13044,
776,
7408,
24322,
13,
40667,
13,
19362,
719,
561,
285,
643,
718,
7551,
12317,
1046,
534,
1039,
15,
187,
187,
42,
369,
43867,
275,
281,
619,
3153,
6568,
1128,
24676,
1066,
407,
7537,
46728,
1128,
14061,
272,
323,
619,
1614,
327,
795,
8620,
25565,
3968,
8291,
672,
309,
3735,
247,
22161,
11720,
25691,
949,
253,
8467,
18332,
15,
733,
369,
271,
2448,
11720,
15,
309,
1333,
436,
342,
7162,
984,
347,
2080,
347,
309,
717,
6600,
13,
253,
24923,
2329,
3490,
1620,
1694,
745,
253,
3216,
15,
496,
958,
13,
24923,
16340,
497,
1119,
846,
253,
2137,
14205,
275,
253,
13438,
13,
690,
15312,
275,
8013,
13,
2571,
3365,
6107,
275,
7537,
15,
380,
9256,
261,
2057,
1904,
626,
971,
281,
7168,
616,
2235,
4337,
24825,
390,
1869,
352,
651,
452,
644,
13184,
281,
564,
598,
275,
731,
15,
309,
33544,
745,
619,
32265,
285,
6337,
562,
273,
253,
3652,
13,
4709,
272,
253,
2448,
11720,
369,
13828,
281,
8416,
253,
789,
273,
253,
2045,
2360,
285,
892,
21562,
253,
8339,
13421,
15,
1876
] |
the thing that has confused me for a while. I expected these rational, intelligent people to have the answers as to why they voted to remain, and yet they didn’t. More often than not they had nothing but, ‘You’re wrong, you’re an idiot.’ End of argument.
It reminded me of a very young and naive me, in my days of being a bit of a God-botherer.
In that context, it almost feels like socialism has moved away from being the rationalist’s home to being the believer’s home. It’s become a religion. And many of the key issues of our day, including Brexit, climate change and veganism have also taken on the blind faith qualities of religion, with an anger to rival some of the fiercest fundamental Christians or Muslims.
Strangely enough, I’m writing this on the train, and have just looked up to see a headline in the Evening Standard, ‘Now to we have a nasty left to match the nasty right?’
We need to find the middle ground again, and the start of that is proper, well informed, rational debate based on the latest techniques in data modelling and forecasting. Not only that, we need to start telling some proper stories to reflect the truth in these facts and figures. Time to bring on the actuaries?
Tags Algorithm, Anger, Argument, Authority, Bret Victor, Climate change, Data modeling, Decision-making, Denialism, Friedrich Hayek, God, Intelligence, Intuition, Justice, Liberty, London Evening Standard, Loyalty, Morality, Rationality, Religion, Rhetoric, Rights, Socialism, The Righteous Mind, Veganism<|endoftext|>Michel Roux (22 de julio de 1929 – 2 de febrero de 2007) fue un actor y director teatral de nacionalidad francesa. Conocido actor de doblaje, prestó su voz a numeroso actores, siendo sobre todo conocido por doblar a Tony Curtis en la serie The Persuaders! y a Peter Sellers en el papel del Inspector Clouseau.
Biografía
Nacido en Colombes, Francia, su trayectoria, iniciada a los catorce años de edad, se desarrolló principalmente en el teatro, tanto como actor como director. Entre las obras más destacadas en la cuales actuó figura La jaula de las locas, que le dio una gran notoriedad, así como La cena de los idiotas, Le Canard à l'orange y Tromper n'est pas jouer.
En los años 1970 y 1980, fue una de las estrellas recurrentes del programa televisivo Au théâtre ce soir, para el cual elaboró numerosas puestas en escena. También trabajó como actor en series como Les Cinq Dernières Minutes (1965).
Gran figura del mundo del doblaje, fue conocido por dar voz a los actores Jack Lemmon y Peter Sellers, doblando entre otros muchos a Alec Guinness, Cary Grant (North by Northwest), Frank Sinatra, Jerry Lewis o Elvis Presley. Doblador de Tony Curtis en la serie televisiva The Persuaders!, contribuyó enormemente al inmenso éxito de dicha producción en Francia.
Su última actuación teatral tuvo lugar en 2006 con Le Charlatan, de Robert Lamoureux, con escenografía de Francis Joffo, pieza que Michel Roux y Jacques Balutin interpretaron en el Théâtre Saint-Georges y en el Théâtre du Palais-Royal.
Michel Roux falleció en el año 2007 en París, Francia, a causa de una dolencia cardiaca. Se celebró su funeral el 8 de febrero de ese año en Colombes, donde fue enterrado.
Por su trayectoria artística, fue nombrado caballero de la Orden Nacional del Mérito
Teatro
Actor
1951 : La Belle Rombière, de Jean Clervers y Guillaume Hanoteau, escenografía de Georges Vitaly, Teatro de la Huchette y Théâtre de l'Œuvre
1952 : Les Taureaux, de Alexandre Arnoux, escenografía de Georges Vitaly, Teatro Montparnasse
1952 : La Petite Femme de Loth, de Tristan Bernard, escenografía de Georges Vitaly, Teatro Montparnasse
1952 : Mobilette, con Suzy Delair y Mona Monick, Roger Lanzac, en l'Européen
1952 : Les Barbes nobles, de André Roussin, escenografía de Georges Vitaly, Grand-Guignol
1953 : Le Ravageur, de Gabriel Chevallier, escenografía de Alfred Pasquali, Théâtre des Bouffes-Parisiens
1955 : Ce diable d'ange, de Pierre Destailles y Charles Michel, escenografía de Georges Vitaly, Comédie-Wagram
1956 : À la monnaie du Pape, de Louis Velle, escenografía de René Dupuy, Théâtre Gramont
1956 : Irma la Douce, de Alexandre Breffort y Marguerite Monnot, escenografía de René Dupuy, Théâtre Gramont
1959 : L'Effet Glapion, de Jacques Audiberti, escenografía de Georges Vitaly, Théâtre La Bruyère
1960 : La Petite Datcha, de Vasiliei Vasil'evitch Chkvarkin, escenografía de René Dupuy, Théâtre Daunou
1961 : La Dame et l'écureuil, de Robert Collon, escenografía de André Puglia, Théâtre Fontaine
1961 : Les Pupitres, de Raymond Devos, escenografía de l'auteur, Théâtre Fontaine
1963 : Sacré Léonard, de Jean Poiret y Michel Serrault, escenografía de André Puglia, Théâtre Fontaine
1964 : Les escargots meurent debout, de Francis Blanche, escenografía de Jean Le Poulain, Théâtre Fontaine
1965 : Du vent dans les branches de sassafras, de René de Obaldia, escenografía de René Dupuy, Théâtre Gramont
1966 : Laurette ou l'Amour voleur, de Marcelle Maurette y Marc-Gilbert Sauvajon, escenografía de Pierre Fresnay, Théâtre de la Michodière
1967 : Comme au théâtre, de Françoise Dorin, escenografía de Michel Roux, Théâtre de la Michodière
1968 : Comme au théâtre, de Françoise Dorin, escenografía de Michel Roux, Théâtre des Célestins
1968 : Visitations, de Jean Giraudoux, Théâtre de la Michodière
1968 : C'est malin!, de Fulbert Janin, escenografía de Michel Roux, Espace Cardin
1968 : Opération Lagrelèche, de Jean Poiret y Michel Serrault, Théâtre Fontaine
1969 : Les Grosses Têtes, de Jean Poiret y Michel Serrault, escenografía de Jean Poiret y René Dupuy, Théâtre de l'Athénée
1969 : La Paille humide, de Albert Husson, escenografía de Michel Roux, Théâtre de la Michodière
1970 : Un sale égoïste, de Françoise Dorin, escenografía de Michel Roux, Théâtre Antoine
1973 : Un yaourt pour deux, de Stanley Price, escenografía de Michel Roux, Théâtre Gramont
1975 : Le Tableau, de Eugène Ionesco, escenografía de Jacques Mauclair, Monfort-Théâtre
1977 : Féfé de Broadway, de Jean Poiret, escenografía de Pierre Mondy, con Jacqueline Maillan, Annick Alane, Jackie Sardou y Roger Carel, Théâtre des Variétés
1978 : La jaula de las locas, de Jean Poiret, con Jean-Jacques, William Sabatier y Claude Gensac, Théâtre des Variétés
1980 : L'Azalée, de Yves Jamiaque, escenografía de Michel Roux, Théâtre Marigny
1981 : Domino, de Marcel Achard, escenografía de Jean Piat, Théâtre Marigny
1983 : Le Vison voyageur, de Ray Cooney y John Chapman, escenografía de Patrick Guillemin, Théâtre de la Michodière
1985 : Silence, on tourne, de Michel Lengliney, Théâtre Daunou
1986 : Au sec | redpajama | [
253,
2181,
326,
556,
13477,
479,
323,
247,
1223,
15,
309,
3264,
841,
8870,
13,
17497,
952,
281,
452,
253,
9172,
347,
281,
2139,
597,
14285,
281,
3464,
13,
285,
2568,
597,
1904,
457,
85,
15,
3010,
2223,
685,
417,
597,
574,
2717,
533,
13,
2802,
1394,
457,
250,
3430,
13,
368,
457,
250,
271,
28006,
9027,
8072,
273,
4154,
15,
187,
1147,
17328,
479,
273,
247,
1077,
2872,
285,
27785,
479,
13,
275,
619,
1897,
273,
1146,
247,
2372,
273,
247,
2656,
14,
12042,
1568,
83,
15,
187,
688,
326,
3634,
13,
352,
2761,
9193,
751,
38384,
556,
4395,
1977,
432,
1146,
253,
8870,
382,
457,
84,
1728,
281,
1146,
253,
44715,
457,
84,
1728,
15,
733,
457,
84,
2489,
247,
9596,
15,
1244,
1142,
273,
253,
2234,
3374,
273,
776,
1388,
13,
1690,
22845,
13,
7952,
1818,
285,
30622,
1204,
452,
671,
2668,
327,
253,
9645,
6009,
18701,
273,
9596,
13,
342,
271,
12700,
281,
16136,
690,
273,
253,
41899,
383,
7936,
15600,
390,
16492,
15,
187,
10287,
606,
600,
2217,
13,
309,
457,
78,
4028,
436,
327,
253,
6194,
13,
285,
452,
816,
3261,
598,
281,
923,
247,
30062,
275,
253,
48136,
12144,
13,
2802,
4125,
281,
359,
452,
247,
26321,
1669,
281,
3761,
253,
26321,
987,
29200,
187,
1231,
878,
281,
1089,
253,
4766,
3216,
969,
13,
285,
253,
1265,
273,
326,
310,
1463,
13,
973,
8191,
13,
8870,
8881,
1754,
327,
253,
6323,
5609,
275,
941,
26278,
285,
16923,
272,
15,
3105,
760,
326,
13,
359,
878,
281,
1265,
7746,
690,
1463,
6281,
281,
4887,
253,
5083,
275,
841,
5441,
285,
8442,
15,
6865,
281,
3324,
327,
253,
22664,
3927,
32,
187,
31095,
29088,
13,
743,
1063,
13,
37026,
13,
17907,
13,
43624,
9964,
13,
28678,
1818,
13,
5128,
14053,
13,
28722,
14,
11849,
13,
7682,
451,
1204,
13,
37511,
12665,
1441,
13,
2656,
13,
19256,
13,
4458,
86,
539,
13,
8293,
13,
23583,
13,
4693,
48136,
12144,
13,
418,
6462,
555,
13,
4922,
1319,
13,
416,
1050,
414,
13,
34959,
13,
416,
6168,
15937,
13,
12484,
13,
8404,
1204,
13,
380,
10154,
22953,
18296,
13,
16073,
266,
1204,
50279,
43160,
416,
23051,
313,
1423,
372,
49137,
900,
372,
29063,
1108,
374,
372,
704,
3381,
287,
372,
5215,
10,
26510,
440,
12353,
340,
6423,
716,
255,
1544,
372,
48473,
10045,
1315,
1972,
66,
15,
1716,
406,
7112,
12353,
372,
513,
1559,
32444,
13,
21641,
1954,
402,
3273,
91,
247,
4520,
26471,
769,
2324,
13,
4927,
10081,
14822,
20591,
45305,
7112,
4474,
513,
1559,
274,
247,
14861,
32324,
546,
826,
1151,
466,
380,
10400,
86,
16208,
2,
340,
247,
7993,
322,
20945,
546,
1045,
13860,
293,
1448,
31881,
1639,
1312,
1952,
15,
187,
187,
16621,
42871,
6336,
209,
187,
47,
317,
7112,
546,
24607,
265,
13,
6743,
571,
13,
402,
23361,
7720,
571,
13,
275,
12706,
2960,
247,
3897,
260,
1080,
336,
31928,
372,
1407,
324,
13,
396,
50158,
1954,
8624,
12704,
546,
1045,
716,
35078,
13,
30670,
8733,
12353,
8733,
6423,
15,
11198,
250,
4358,
691,
6230,
13022,
3154,
317,
15333,
546,
826,
32308,
265,
22664,
1954,
3036,
5650,
3905,
8729,
3627,
372,
4358,
1150,
284,
13,
1753,
458,
277,
900,
5940,
10115,
417,
263,
46368,
13,
36806,
8733,
3905,
260,
6736,
372,
3897,
28006,
284,
13,
2070,
2615,
472,
4057,
298,
8,
35270,
340,
308,
409,
468,
295,
8,
383,
7222,
42138,
254,
15,
2490,
187,
3546,
3897,
31928,
10333,
340,
9178,
13,
26510,
5940,
372,
4358,
1144,
11436,
284,
18902,
265,
1448,
2086,
66,
4014,
4534,
6073,
18940,
44134,
6457,
5643,
2636,
594,
343,
13,
5586,
1045,
32308,
14883,
1954,
4520,
375,
284,
8429,
383,
284,
546,
6262,
6736,
15,
308,
1369,
21878,
19146,
1432,
1954,
8733,
12353,
546,
2962,
8733,
12029,
26861,
82,
399,
1808,
74,
26444,
48474,
313,
28403,
481,
187,
187,
3594,
266,
3036,
5650,
1448,
30751,
1448,
513,
1559,
32444,
13,
26510,
45305,
7112,
4474,
13681,
3273,
91,
247,
3897,
769,
2324,
5332,
43664,
340,
7993,
322,
20945,
13,
513,
67,
23612,
13326,
41596,
1199,
375,
247,
16660,
68,
3262,
249,
1255,
13,
50227,
13629,
313,
19846,
407,
29490,
582,
6893,
16495,
29628,
13,
21122,
13054,
258,
49177,
3327,
2205,
15,
399,
24595,
9325,
372,
14861,
32324,
546,
826,
1151,
466,
4014,
4534,
9321,
380,
10400,
86,
16208,
40928,
43608,
7352,
1954,
12546,
36071,
355,
275,
78,
49200,
3974,
89,
7067,
372,
19821,
66,
1002,
29978,
546,
6743,
571,
15,
187,
187,
9244,
32528,
8032,
22664,
7860,
716,
255,
1544,
11737,
5711,
33479,
546,
5403,
345,
2070,
3976,
13324,
266,
13,
372,
6911,
16967,
276,
250,
2310,
13,
345,
6262,
257,
42871,
6336,
372,
7980,
500,
2727,
80,
13,
3376,
4019,
1753,
16833,
416,
23051,
340,
36063,
11960,
307,
249,
4665,
10510,
546,
1045,
596,
860,
6457,
5643,
11877,
14,
35848,
265,
340,
546,
1045,
596,
860,
6457,
5643,
3443,
5226,
4631,
14,
40262,
15,
187,
187,
43160,
416,
23051,
269,
4781,
5297,
1954,
546,
1045,
247,
21000,
5215,
546,
2956,
19637,
13,
6743,
571,
13,
247,
2334,
66,
372,
5940,
28000,
14994,
10177,
66,
15,
1023,
6615,
1954,
402,
20915,
1045,
854,
372,
704,
3381,
287,
372,
38044,
247,
21000,
546,
24607,
265,
13,
38106,
26510,
994,
1000,
3377,
15,
187,
187,
30641,
402,
23361,
7720,
571,
1445,
49935,
3737,
13,
26510,
7163,
1288,
3377,
7674,
455,
2771,
372,
826,
2207,
3354,
40322,
1448,
36912,
36902,
187,
187,
7573,
35078,
187,
187,
49925,
2490,
25124,
1163,
3905,
31596,
9916,
4193,
10133,
13,
372,
13089,
1639,
254,
735,
340,
3262,
6077,
2123,
13594,
1584,
1952,
13,
6262,
257,
42871,
6336,
372,
9309,
265,
657,
1562,
90,
13,
2745,
35078,
372,
826,
388,
1028,
6168,
442,
340,
596,
860,
6457,
5643,
372,
298,
8,
129,
229,
38527,
187,
24652,
1163,
12029,
15543,
459,
10422,
13,
372,
26958,
250,
21155,
23051,
13,
6262,
257,
42871,
6336,
372,
9309,
265,
657,
1562,
90,
13,
2745,
35078,
7812,
1148,
79,
18546,
187,
24652,
1163,
3905,
8939,
614,
43299,
1405,
372,
418,
837,
13,
372,
1535,
7399,
22547,
13,
6262,
257,
42871,
6336,
372,
9309,
265,
657,
1562,
90,
13,
2745,
35078,
7812,
1148,
79,
18546,
187,
24652,
1163,
18805,
38489,
13,
345,
4137,
3847,
6304,
1094,
340,
4200,
66,
4200,
781,
13,
19528,
418,
11670,
317,
13,
546,
298,
8,
38,
8177,
860,
257,
187,
24652,
1163,
12029,
4033,
12133,
642,
9143,
13,
372,
49260,
416,
528,
7432,
13,
6262,
257,
42871,
6336,
372,
9309,
265,
657,
1562,
90,
13,
8481,
14,
8469,
525,
311,
187,
24113,
1163,
2070,
416,
16476,
321,
13,
372,
27581,
32762,
455,
1321,
13,
6262,
257,
42871,
6336,
372,
24179,
17231,
371,
8952,
13,
596,
860,
6457,
5643,
711,
21446,
567,
265,
14,
4221,
13401,
561,
187,
23438,
1163,
16357,
1073,
494,
277,
8,
912,
13,
372,
25298,
399,
17062,
18810,
340,
8444,
16833,
13,
6262,
257,
42871,
6336,
372,
9309,
265,
657,
1562,
90,
13,
1176,
15949,
466,
14,
56,
12068,
187,
22716,
1163,
1325,
211,
826,
1114,
2072,
466,
3443,
367,
2259,
13,
372,
7406,
657,
4415,
13,
6262,
257,
42871,
6336,
372,
12751,
860,
40897,
7352,
13,
596,
860,
6457,
5643,
22197,
834,
187,
22716,
1163,
7854,
785,
826,
33115,
336,
13,
372,
26958,
250,
7528,
567,
430,
340,
13579,
10207,
614,
4200,
1439,
13,
6262,
257,
42871,
6336,
372,
12751,
860,
40897,
7352,
13,
596,
860,
6457,
5643,
22197,
834,
2490,
22824,
1163,
418,
8,
38,
567,
292,
4051,
522,
279,
13,
372,
36063,
12469,
487,
797,
74,
13,
6262,
257,
42871,
6336,
372,
9309,
265,
657,
1562,
90,
13,
596,
860,
6457,
5643,
3905,
12810,
90,
10133,
187,
11994,
1163,
3905,
8939,
614,
399,
1506,
66,
13,
372,
27818,
300,
44710,
27818,
300,
8,
1173,
2682,
775,
39297,
782,
249,
13,
6262,
257,
42871,
6336,
372,
12751,
860,
40897,
7352,
13,
596,
860,
6457,
5643,
12073,
328,
276,
187,
21054,
1163,
3905,
33003,
1162,
298,
8,
32839,
459,
86,
300,
13,
372,
6911,
10595,
251,
13,
6262,
257,
42871,
6336,
372,
49260,
367,
814,
19702,
13,
596,
860,
6457,
5643,
24216,
6529,
187,
21054,
1163,
12029,
367,
484,
262,
373,
13,
372,
29936,
8397,
375,
13,
6262,
257,
42871,
6336,
372,
298,
8,
66,
1137,
321,
13,
596,
860,
6457,
5643,
24216,
6529,
187,
19949,
1163,
20106,
20887,
35969,
251,
472,
13,
372,
13089,
8081,
38959,
340,
16833,
4165,
376,
503,
13,
6262,
257,
42871,
6336,
372,
49260,
367,
814,
19702,
13,
596,
860,
6457,
5643,
24216,
6529,
187,
17926,
1163,
12029,
6262,
1662,
1502,
48743,
624,
4274,
483,
13,
372,
7980,
2071,
10024,
13,
6262,
257,
42871,
6336,
372,
13089,
2070,
367,
3941,
404,
13,
596,
860,
6457,
5643,
24216,
6529,
187,
18417,
1163,
8502,
5698,
7723,
3293,
12998,
372,
256,
25445,
925,
284,
13,
372,
12751,
860,
372,
4386,
8950,
571,
13,
6262,
257,
42871,
6336,
372,
12751,
860,
40897,
7352,
13,
596,
860,
6457,
5643,
22197,
834,
2490,
19213,
1163,
3905,
459,
38489,
10959,
298,
8,
8096,
454,
362,
1306,
321,
13,
372,
22662,
4415,
7057,
459,
38489,
340,
22662,
14,
42665,
6291,
31837,
87,
1432,
251,
13,
6262,
257,
42871,
6336,
372,
25298,
46568,
79,
333,
13,
596,
860,
6457,
5643,
372,
826,
4378,
351,
18127,
187,
17342,
1163,
1176,
1405,
7331,
44134,
6457,
5643,
13,
372,
22976,
31277,
885,
14040,
249,
13,
6262,
257,
42871,
6336,
372,
16833,
416,
23051,
13,
596,
860,
6457,
5643,
372,
826,
4378,
351,
18127,
187,
16221,
1163,
1176,
1405,
7331,
44134,
6457,
5643,
13,
372,
22976,
31277,
885,
14040,
249,
13,
6262,
257,
42871,
6336,
372,
16833,
416,
23051,
13,
596,
860,
6457,
5643,
711,
330,
20255,
383,
968,
187,
16221,
1163,
9773,
22644,
13,
372,
13089,
35480,
5353,
23051,
13,
596,
860,
6457,
5643,
372,
826,
4378,
351,
18127,
187,
16221,
1163,
330,
8,
383,
4691,
249,
2195,
13,
372,
35776,
6291,
3344,
249,
13,
6262,
257,
42871,
6336,
372,
16833,
416,
23051,
13,
444,
5641,
9858,
249,
187,
16221,
1163,
12605,
49957,
15184,
1661,
3539,
1962,
13,
372,
13089,
8081,
38959,
340,
16833,
4165,
376,
503,
13,
596,
860,
6457,
5643,
24216,
6529,
187,
16648,
1163,
12029,
28362,
265,
308,
5437,
5298,
13,
372,
13089,
8081,
38959,
340,
16833,
4165,
376,
503,
13,
6262,
257,
42871,
6336,
372,
13089,
8081,
38959,
340,
12751,
860,
40897,
7352,
13,
596,
860,
6457,
5643,
372,
298,
8,
48487,
9390,
7678,
187,
16648,
1163,
3905,
367,
36826,
1547,
504,
13,
372,
18252,
44035,
251,
13,
6262,
257,
42871,
6336,
372,
16833,
416,
23051,
13,
596,
860,
6457,
5643,
372,
826,
4378,
351,
18127,
187,
10333,
1163,
914,
7289,
3974,
2184,
12589,
3241,
13,
372,
22976,
31277,
885,
14040,
249,
13,
6262,
257,
42871,
6336,
372,
16833,
416,
23051,
13,
596,
860,
6457,
5643,
47255,
460,
187,
15621,
1163,
914,
14076,
950,
6531,
23156,
13,
372,
20923,
16040,
13,
6262,
257,
42871,
6336,
372,
16833,
416,
23051,
13,
596,
860,
6457,
5643,
22197,
834,
2490,
14752,
1163,
2070,
5270,
1952,
13,
372,
26851,
35080,
309,
2487,
1940,
13,
6262,
257,
42871,
6336,
372,
36063,
353,
1952,
33641,
13,
4200,
4371,
14,
1044,
860,
6457,
5643,
2490,
14960,
1163,
401,
860,
71,
860,
372,
27199,
13,
372,
13089,
8081,
38959,
13,
6262,
257,
42871,
6336,
372,
25298,
42538,
90,
13,
345,
9808,
371,
4115,
7057,
408,
266,
13,
7359,
781,
1219,
1351,
13,
37641,
322,
472,
276,
340,
19528,
9776,
77,
13,
596,
860,
6457,
5643,
711,
19988,
11524,
5069,
187,
14304,
1163,
3905,
8729,
3627,
372,
4358,
1150,
284,
13,
372,
13089,
8081,
38959,
13,
345,
13089,
14,
26106,
10999,
13,
7252,
16336,
255,
1321,
340,
39107,
443,
561,
317,
13,
596,
860,
6457,
5643,
711,
19988,
11524,
5069,
187,
9178,
1163,
418,
8,
22351,
267,
7678,
13,
372,
714,
1634,
15315,
571,
1452,
13,
6262,
257,
42871,
6336,
372,
16833,
416,
23051,
13,
596,
860,
6457,
5643,
2398,
525,
90,
187,
13402,
1163,
14188,
2610,
13,
372,
42430,
31651,
472,
13,
6262,
257,
42871,
6336,
372,
13089,
367,
5946,
13,
596,
860,
6457,
5643,
2398,
525,
90,
187,
11299,
1163,
2070,
657,
1988,
31192,
321,
13,
372,
10734,
2434,
2153,
340,
2516,
37108,
13,
6262,
257,
42871,
6336,
372,
15435,
3262,
4002,
1222,
13,
596,
860,
6457,
5643,
372,
826,
4378,
351,
18127,
2490,
12210,
1163,
7949,
566,
13,
327,
4892,
570,
13,
372,
16833,
418,
1205,
1282,
90,
13,
596,
860,
6457,
5643,
12073,
328,
276,
187,
12140,
1163,
18940,
4706
] |
tuned to the $6^{th}$ harmonic of the seed ($43.5\,$nm); electron beam peak current $300\,$A, normalized transverse emittance $1\,$mm-mrad, relative energy spread $0.01\%$ and no linear chirp component.
Solid line: $\chi_2=-10\,$MeV/ps$^2$; dashed line: $\chi_2=10\,$MeV/ps$^2$;
dotted line: $\chi_2=50\,$Mev/ps$^2$.}
\label{Figure_quadratic_energy_chirp_Perseo}
\end{figure}
\section*{Conclusion}
\label{conclusion}
We studied the mechanism leading to the generation of two spectrally- and temporally-separated radiation pulses for a seeded, harmonic upshift free-electron laser
operating in the extreme ultra-violet spectral region.
This mechanism, discovered and studied in detail at the FERMI@Elettra FEL facility,
relies on the use of a high-power chirped seed pulse to produce strong, coherent overbunching in an electron beam; the presence of the chirp is the key element to producing a spectral splitting between the two temporal pulses.
By changing either the seed laser power or the strength of the dispersive section,
we demonstrated excellent control of both the temporal distance and the spectral separation between the generated pulses.
We also found that for our particular operation regime,
the onset of the pulse splitting and the control of the pulses properties are only slightly affected
by temporal variations in electron beam properties such as the current.
Quadratic energy chirps do affect the spectral bandwidths and separation between the two pulses, but
have negligible effect on their temporal separations.
In the limit that radiation/electron beam slippage effects are small,
the temporal separation between pulses can be directly retrieved from the measurement of the FEL spectrum and from the knowledge of the seed chirp properties.
Such information can be extremely important when exploiting this two-pulse configuration to carry out jitter-free, pump-probe user experiments.
\section*{Acknowledgements}
We gratefully acknowledge the valuable contribution of the FERMI@Elettra commissioning and operations team. We also profited from insightful discussions with F. Bencivenga, C. Callegari, F. Capotondi and M. Labat. This work was funded by the FERMI@Elettra project of Elettra-Sincrotrone Trieste, partially supported by the Ministry of University and Research under grant numbers FIRB-RBAP045JF2 and FIRB-RBAP06AWK3. The work of B. Mahieu, G. De Ninno and D. Gauthier has been partially supported by the CITIUS project, funded by the Program for cross-border cooperation Italy-Slovenia 2007-2013.
<|endoftext|>The Macintosh Way was the first book written by former Apple evangelist Guy Kawasaki. Subtitled "the art of guerrilla management", the book focused on technology marketing and management and includes many anecdotes culled from Kawasaki's experience during the early development of the Macintosh.
The author wrote of the book on his website: "This book was my first child. I wrote it because I was bursting with idealistic and pure notions about how a company can change the world, and I wanted to spread the gospel." He re-acquired rights to it after it had gone out of print and released it online as a free download.
The book features a foreword by Jean-Louis Gassée.
Chapter listing
First Blood
Macintosh Days
Environment
Great Products
Support
Marketing
User Groups
Evangelism
To Market, To Market
The Printed Word
Working with the Mothership
How to Give Good Demo
Presentation Manager
Trade Show Mavenship
How to Drive your (MS-DOS) Competitors Crazy
The Macintosh Guide to Dating and Marriage
Sayonara
External links
The Macintosh Way at Guy Kawasaki's site
1990 non-fiction books
Organizational culture
Books by computer and internet entrepreneurs
Books about Apple Inc.<|endoftext|>Q: how to control on the position of toolbar Item in SWT? I have 3 ToolItem : text, item1, item2
I want that text item will be align to the left and item 1 and item 2 will be align to the right
for example
text item1,item2
This is the code
ToolBar treeToolBar = new ToolBar(treeComposite, SWT.NONE);
filterText = new Text(treeToolBar, SWT.BORDER);
ToolItem textItem = new ToolItem(treeToolBar, SWT.SEPARATOR);
textItem.setControl(filterText);
textItem.setWidth(filterText.computeSize(SWT.DEFAULT, SWT.DEFAULT, true).x);
Item1 = new ToolItem(treeToolBar, SWT.PUSH | SWT.RIGHT);
item2 = new ToolItem(treeToolBar, SWT.PUSH | SWT.RIGHT);
A: If you just want item1 and item2 somewhere in the middle, add a new item with style SWT.SEPARATOR and set the desired width to offset the two items.
If you really want the two items to be at the right side of the toolbar, you have to compute dynamically the size of that separator. Basically you subtract from the size of the toolbar the size of the three items (one text and two push items).
Here is a complete snippet where the text is aligned to the left and the buttons to the right. The toolbar.pack() call is necessary to compute also the space used between the items and the trimming. We have to take that also into account.
public static void main(String[] args) {
final Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
final Composite treeComposite = new Composite(shell, SWT.NONE);
treeComposite.setLayout(new GridLayout());
final ToolBar treeToolBar = new ToolBar(treeComposite, SWT.NONE);
treeToolBar.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
final Text filterText = new Text(treeToolBar, SWT.BORDER);
final ToolItem textItem = new ToolItem(treeToolBar, SWT.SEPARATOR);
textItem.setControl(filterText);
textItem.setWidth(filterText.computeSize(SWT.DEFAULT, SWT.DEFAULT, true).x);
final ToolItem separator = new ToolItem(treeToolBar, SWT.SEPARATOR);
separator.setWidth(0);
final ToolItem item1 = new ToolItem(treeToolBar, SWT.PUSH | SWT.RIGHT);
item1.setImage(display.getSystemImage(SWT.ICON_WORKING));
final ToolItem item2 = new ToolItem(treeToolBar, SWT.PUSH | SWT.RIGHT);
item2.setImage(display.getSystemImage(SWT.ICON_QUESTION));
treeToolBar.pack();
final int trimSize = treeToolBar.getSize().x - textItem.getWidth() - item1.getWidth() - item2.getWidth();
treeToolBar.addListener(SWT.Resize, new Listener() {
@Override
public void handleEvent(Event event) {
final int toolbarWidth = treeToolBar.getSize().x;
final int itemsWidth = textItem.getWidth() + item1.getWidth() + item2.getWidth();
final int separatorWidth = toolbarWidth - itemsWidth - trimSize;
separator.setWidth(separatorWidth);
}
});
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
<|endoftext|>O Koreanosaurus (que significa "lagarto coreano") é o nome informal dado a um gênero de dinossauro terópode dromeosaurídeo que viveu em meados do período Cretáceo, há 110 e 100 milhões de anos entre o Aptiano e o Albiano, na Coreia do Sul. Por algum tempo foi referido como um Tyrannosauridae e Hypsilophodontidae. Com base em um fêmur solitário, a espécie tipo foi nomeada por Kim em 1979, que em 1993 decidiu incluí-lo como uma nova espécie do gênero. Deinonychus, o D. koreanensis. Foi relatada a presença de um quarto trocânter, que o distanciaria do Deinonychus e, possivelmente, da família Dromaeosauridae, embora isso não seja confirmado. Também já foi | redpajama | [
24251,
281,
253,
370,
23,
768,
394,
724,
23007,
273,
253,
8357,
4816,
3079,
15,
22,
46986,
10602,
558,
6488,
8325,
5241,
1655,
370,
7554,
46986,
34,
13,
12650,
17430,
802,
770,
593,
370,
18,
46986,
2188,
14,
78,
4614,
13,
4103,
2341,
5195,
370,
17,
15,
520,
27212,
285,
642,
4872,
36494,
81,
4445,
15,
209,
187,
49474,
1386,
27,
669,
4635,
64,
19,
11468,
740,
46986,
42058,
16,
793,
18333,
19,
16446,
17889,
1386,
27,
669,
4635,
64,
19,
30,
740,
46986,
42058,
16,
793,
18333,
19,
16446,
209,
187,
46774,
1386,
27,
669,
4635,
64,
19,
30,
1235,
46986,
46,
1173,
16,
793,
18333,
19,
5,
964,
94,
187,
61,
1968,
92,
2841,
64,
3362,
83,
1420,
64,
14115,
64,
348,
343,
81,
64,
6052,
339,
80,
94,
187,
61,
423,
92,
13206,
94,
535,
187,
61,
4674,
29468,
18786,
94,
187,
61,
1968,
92,
585,
3444,
94,
187,
187,
1231,
5421,
253,
5122,
4283,
281,
253,
5978,
273,
767,
2812,
83,
595,
14,
285,
5897,
595,
14,
49741,
7742,
20205,
323,
247,
27677,
13,
23007,
598,
11551,
1959,
14,
30083,
8166,
209,
187,
2211,
839,
275,
253,
9559,
17452,
14,
87,
16900,
9879,
2919,
15,
209,
187,
1552,
5122,
13,
6888,
285,
5421,
275,
2508,
387,
253,
401,
947,
6402,
33,
38,
1059,
7604,
401,
3887,
9509,
13,
209,
187,
1661,
447,
327,
253,
897,
273,
247,
1029,
14,
9177,
36494,
9357,
8357,
10724,
281,
4711,
2266,
13,
18893,
689,
67,
3204,
272,
275,
271,
6488,
8325,
28,
253,
3361,
273,
253,
36494,
81,
310,
253,
2234,
3284,
281,
9603,
247,
9879,
19860,
875,
253,
767,
11935,
20205,
15,
209,
187,
3463,
6890,
2057,
253,
8357,
8166,
1612,
390,
253,
4757,
273,
253,
15218,
422,
2593,
13,
187,
664,
5183,
7126,
1453,
273,
1097,
253,
11935,
4181,
285,
253,
9879,
9712,
875,
253,
4561,
20205,
15,
209,
187,
1231,
671,
1119,
326,
323,
776,
1798,
4254,
9459,
13,
187,
783,
11653,
273,
253,
10724,
19860,
285,
253,
1453,
273,
253,
20205,
3607,
403,
760,
5777,
5876,
209,
187,
1615,
11935,
10575,
275,
6488,
8325,
3607,
824,
347,
253,
1655,
15,
209,
187,
3864,
35658,
1420,
2341,
36494,
793,
513,
2818,
253,
9879,
16992,
84,
285,
9712,
875,
253,
767,
20205,
13,
533,
187,
9802,
22879,
1055,
327,
616,
11935,
2533,
569,
15,
187,
688,
253,
2701,
326,
7742,
16,
30083,
8325,
38947,
486,
2538,
403,
1355,
13,
187,
783,
11935,
9712,
875,
20205,
476,
320,
3587,
22111,
432,
253,
6814,
273,
253,
401,
3887,
6637,
285,
432,
253,
3640,
273,
253,
8357,
36494,
81,
3607,
15,
187,
18869,
1491,
476,
320,
6685,
1774,
672,
38883,
436,
767,
14,
48241,
6661,
281,
4459,
562,
480,
4069,
14,
4924,
13,
8670,
14,
32373,
2608,
4679,
15,
46603,
187,
61,
4674,
29468,
35838,
94,
187,
1231,
47444,
14409,
253,
9865,
7680,
273,
253,
401,
947,
6402,
33,
38,
1059,
7604,
8119,
272,
285,
5871,
2285,
15,
844,
671,
1801,
959,
432,
47860,
11985,
342,
401,
15,
378,
2083,
400,
1205,
66,
13,
330,
15,
2263,
1851,
1792,
13,
401,
15,
8040,
302,
857,
74,
285,
353,
15,
10118,
255,
15,
831,
789,
369,
14597,
407,
253,
401,
947,
6402,
33,
38,
1059,
7604,
2199,
273,
444,
1059,
7604,
14,
52,
1763,
287,
1206,
531,
11835,
16300,
13,
10571,
4516,
407,
253,
13421,
273,
2499,
285,
5489,
762,
4098,
3904,
48288,
35,
14,
26646,
2088,
21274,
43,
39,
19,
285,
48288,
35,
14,
26646,
2088,
3071,
24564,
44,
20,
15,
380,
789,
273,
378,
15,
12828,
19683,
13,
443,
15,
1605,
427,
249,
2369,
285,
399,
15,
443,
14399,
1321,
556,
644,
10571,
4516,
407,
253,
46226,
42,
3016,
2199,
13,
14597,
407,
253,
8246,
323,
2831,
14,
14224,
15850,
9972,
14,
10612,
13606,
571,
5215,
14,
6622,
15,
50275,
2756,
50279,
510,
5602,
565,
6934,
10834,
369,
253,
806,
1984,
3542,
407,
3438,
8217,
28813,
382,
22757,
36288,
38371,
15,
4974,
85,
5924,
346,
783,
1445,
273,
47903,
6077,
4323,
995,
253,
1984,
7106,
327,
4302,
9137,
285,
4323,
285,
3797,
1142,
45697,
4787,
260,
49277,
432,
36288,
38371,
434,
2793,
1309,
253,
2393,
2440,
273,
253,
5602,
565,
6934,
15,
187,
187,
510,
2488,
4159,
273,
253,
1984,
327,
521,
4422,
27,
346,
1552,
1984,
369,
619,
806,
1429,
15,
309,
4159,
352,
984,
309,
369,
43452,
342,
7445,
2531,
285,
6313,
27367,
670,
849,
247,
2567,
476,
1818,
253,
1533,
13,
285,
309,
3078,
281,
5195,
253,
30860,
449,
754,
294,
14,
317,
17050,
3570,
281,
352,
846,
352,
574,
4783,
562,
273,
3379,
285,
4439,
352,
3909,
347,
247,
1959,
6184,
15,
187,
187,
510,
1984,
3386,
247,
2273,
3418,
407,
13089,
14,
34830,
443,
515,
7678,
15,
187,
187,
13617,
16485,
2490,
3973,
14169,
187,
5602,
565,
6934,
23264,
187,
13809,
187,
6495,
23910,
187,
15185,
187,
25694,
187,
11447,
28818,
187,
42707,
1204,
187,
1916,
15111,
13,
1916,
15111,
187,
380,
18312,
264,
12967,
187,
21919,
342,
253,
12273,
5363,
187,
1359,
281,
7918,
7088,
4281,
80,
187,
23952,
318,
15821,
187,
17061,
10684,
353,
580,
561,
1456,
187,
1359,
281,
19672,
634,
313,
3338,
14,
37,
2697,
10,
3631,
292,
5109,
15615,
3847,
187,
380,
5602,
565,
6934,
16398,
281,
399,
839,
285,
39138,
187,
21882,
251,
4595,
187,
187,
7504,
4859,
2490,
380,
5602,
565,
6934,
10834,
387,
22757,
36288,
38371,
434,
2670,
187,
187,
13435,
1327,
14,
33223,
5098,
187,
25727,
478,
1050,
4466,
187,
33877,
407,
4382,
285,
8573,
30440,
187,
33877,
670,
8217,
3690,
15,
50279,
50,
27,
849,
281,
1453,
327,
253,
1899,
273,
49699,
21236,
275,
13710,
53,
32,
309,
452,
495,
16235,
5475,
50276,
27,
2505,
1157,
5382,
18,
1157,
5382,
19,
187,
42,
971,
326,
2505,
5382,
588,
320,
8495,
281,
253,
1669,
285,
5382,
337,
285,
5382,
374,
588,
320,
8495,
281,
253,
987,
187,
1542,
1650,
187,
2505,
50254,
5382,
18,
13,
4835,
19,
187,
187,
1552,
310,
253,
2127,
187,
13285,
7912,
5202,
13285,
7912,
426,
747,
16235,
7912,
9,
12588,
2115,
26343,
13,
13710,
53,
15,
32623,
558,
187,
50274,
10978,
4312,
426,
747,
10318,
9,
12588,
13285,
7912,
13,
13710,
53,
15,
35,
24066,
558,
535,
50274,
13285,
5475,
2505,
5475,
426,
747,
16235,
5475,
9,
12588,
13285,
7912,
13,
13710,
53,
15,
2354,
10845,
26573,
558,
187,
50274,
1156,
5475,
15,
1178,
10588,
9,
10978,
4312,
558,
187,
50274,
1156,
5475,
15,
1178,
12175,
9,
10978,
4312,
15,
39413,
5496,
9,
13753,
53,
15,
25409,
13,
13710,
53,
15,
25409,
13,
2032,
481,
89,
558,
535,
50274,
5475,
18,
426,
747,
16235,
5475,
9,
12588,
13285,
7912,
13,
13710,
53,
15,
49,
27224,
1040,
13710,
53,
15,
42147,
558,
535,
50274,
4835,
19,
426,
747,
16235,
5475,
9,
12588,
13285,
7912,
13,
13710,
53,
15,
49,
27224,
1040,
13710,
53,
15,
42147,
558,
535,
187,
34,
27,
1310,
368,
816,
971,
5382,
18,
285,
5382,
19,
9366,
275,
253,
4766,
13,
823,
247,
747,
5382,
342,
3740,
13710,
53,
15,
2354,
10845,
26573,
285,
873,
253,
6799,
4871,
281,
8409,
253,
767,
4957,
15,
187,
2042,
368,
1663,
971,
253,
767,
4957,
281,
320,
387,
253,
987,
1930,
273,
253,
49699,
13,
368,
452,
281,
11897,
23043,
253,
1979,
273,
326,
35823,
15,
32415,
368,
43444,
432,
253,
1979,
273,
253,
49699,
253,
1979,
273,
253,
1264,
4957,
313,
531,
2505,
285,
767,
7450,
4957,
481,
187,
4943,
310,
247,
3426,
36408,
835,
253,
2505,
310,
15616,
281,
253,
1669,
285,
253,
16020,
281,
253,
987,
15,
380,
49699,
15,
6896,
1082,
1067,
310,
3309,
281,
11897,
671,
253,
2317,
908,
875,
253,
4957,
285,
253,
13970,
3987,
15,
844,
452,
281,
1379,
326,
671,
715,
2395,
15,
187,
4387,
4228,
2991,
2022,
9,
2776,
5456,
13059,
10,
551,
187,
50274,
13017,
27604,
3148,
426,
747,
27604,
1874,
187,
50274,
13017,
28707,
8135,
426,
747,
28707,
9,
8412,
558,
187,
50274,
17901,
15,
1178,
9683,
9,
1826,
36529,
9683,
6020,
535,
50274,
13017,
1176,
26343,
5202,
2115,
26343,
426,
747,
1176,
26343,
9,
17901,
13,
13710,
53,
15,
32623,
558,
187,
50274,
12588,
2115,
26343,
15,
1178,
9683,
9,
1826,
23566,
9683,
6020,
535,
50274,
13017,
16235,
7912,
5202,
13285,
7912,
426,
747,
16235,
7912,
9,
12588,
2115,
26343,
13,
13710,
53,
15,
32623,
558,
187,
50274,
12588,
13285,
7912,
15,
1178,
9683,
3233,
9,
1826,
23566,
3233,
9,
13753,
53,
15,
6766,
2293,
13,
13710,
53,
15,
6766,
2293,
13,
2032,
13,
3221,
4027,
535,
50274,
13017,
10318,
5806,
4312,
426,
747,
10318,
9,
12588,
13285,
7912,
13,
13710,
53,
15,
35,
24066,
558,
535,
50274,
13017,
16235,
5475,
2505,
5475,
426,
747,
16235,
5475,
9,
12588,
13285,
7912,
13,
13710,
53,
15,
2354,
10845,
26573,
558,
187,
50274,
1156,
5475,
15,
1178,
10588,
9,
10978,
4312,
558,
187,
50274,
1156,
5475,
15,
1178,
12175,
9,
10978,
4312,
15,
39413,
5496,
9,
13753,
53,
15,
25409,
13,
13710,
53,
15,
25409,
13,
2032,
481,
89,
558,
535,
50274,
13017,
16235,
5475,
35823,
426,
747,
16235,
5475,
9,
12588,
13285,
7912,
13,
13710,
53,
15,
2354,
10845,
26573,
558,
187,
50274,
37734,
15,
1178,
12175,
9,
17,
558,
535,
50274,
13017,
16235,
5475,
5382,
18,
426,
747,
16235,
5475,
9,
12588,
13285,
7912,
13,
13710,
53,
15,
49,
27224,
1040,
13710,
53,
15,
42147,
558,
187,
50274,
4835,
18,
15,
1178,
6586,
9,
8412,
15,
788,
7761,
6586,
9,
13753,
53,
15,
1864,
1139,
64,
30764,
2637,
4027,
535,
50274,
13017,
16235,
5475,
5382,
19,
426,
747,
16235,
5475,
9,
12588,
13285,
7912,
13,
13710,
53,
15,
49,
27224,
1040,
13710,
53,
15,
42147,
558,
187,
50274,
4835,
19,
15,
1178,
6586,
9,
8412,
15,
788,
7761,
6586,
9,
13753,
53,
15,
1864,
1139,
64,
26310,
2449,
4027,
535,
50274,
12588,
13285,
7912,
15,
6896,
1874,
187,
50274,
13017,
540,
13970,
5496,
426,
5202,
13285,
7912,
15,
788,
5496,
5023,
89,
428,
2505,
5475,
15,
788,
12175,
1082,
428,
5382,
18,
15,
788,
12175,
1082,
428,
5382,
19,
15,
788,
12175,
1874,
535,
50274,
12588,
13285,
7912,
15,
1911,
11119,
9,
13753,
53,
15,
2632,
907,
13,
747,
5552,
4330,
1082,
551,
187,
50270,
33,
9677,
187,
50270,
4387,
2991,
6016,
5949,
9,
5949,
2362,
10,
551,
187,
50266,
13017,
540,
49699,
12175,
426,
5202,
13285,
7912,
15,
788,
5496,
5023,
89,
28,
187,
50266,
13017,
540,
4957,
12175,
426,
2505,
5475,
15,
788,
12175,
1082,
559,
5382,
18,
15,
788,
12175,
1082,
559,
5382,
19,
15,
788,
12175,
1874,
187,
50266,
13017,
540,
35823,
12175,
426,
49699,
12175,
428,
4957,
12175,
428,
13970,
5496,
28,
187,
50266,
37734,
15,
1178,
12175,
9,
37734,
12175,
558,
187,
50270,
94,
187,
50274,
9897,
535,
50274,
17901,
15,
5758,
1874,
187,
50274,
6050,
6522,
17901,
15,
261,
6744,
7334,
6649,
551,
187,
50270,
338,
6522,
8412,
15,
1088,
1898,
48010,
6649,
551,
187,
50266,
8412,
15,
28850,
1874,
187,
50270,
94,
187,
50274,
94,
187,
50274,
8412,
15,
3431,
3014,
1874,
187,
94,
2756,
50279,
48,
13247,
375,
32091,
313,
1452,
1415,
66,
346,
14293,
435,
80,
5161,
4692,
2807,
3974,
258,
43831,
25040,
277,
3377,
247,
5111,
305,
5437,
1216,
80,
372,
13223,
30797,
1822,
4109,
1954,
81,
853,
277,
5450,
46037,
1950,
615,
80,
1753,
362,
422,
86,
802,
479,
8585,
513,
591,
1950,
19095,
330,
1221,
1757,
336,
80,
13,
37472,
9199,
299,
2233,
2301,
73,
13128,
372,
41658,
13326,
258,
329,
431,
10356,
299,
258,
21975,
10356,
13,
5549,
13415,
571,
513,
36375,
15,
20510,
20320,
360,
28250,
27052,
3730,
7112,
8733,
5111,
31635,
1136,
46037,
15203,
50276,
70,
8305,
793,
300,
2689,
32430,
15203,
15,
1176,
2613,
802,
5111,
269,
5437,
29050,
1220,
262,
28350,
13,
247,
17985,
860,
29408,
36147,
27052,
43831,
2960,
4474,
10766,
802,
13842,
13,
1753,
802,
9725,
1086,
13535,
86,
12186,
86,
1950,
14,
4213,
8733,
11856,
642,
6156,
17985,
860,
29408,
513,
305,
5437,
1216,
80,
15,
1605,
249,
2421,
42606,
13,
258,
399,
15,
465,
37173,
16520,
15,
401,
10986,
774,
255,
2960,
247,
838,
257,
17434,
372,
5111,
17033,
80,
6727,
68,
32294,
350,
13,
1753,
258,
940,
1377,
74,
8125,
513,
1605,
249,
2421,
42606,
299,
13,
1290,
35209,
12704,
13,
4204,
1431,
1950,
19702,
399,
409,
3348,
46037,
15203,
13,
802,
3399,
66,
31812,
12065,
48788,
6583,
3377,
15,
308,
1369,
14052,
36252,
27052
] |
BDF or Bdf may refer to:
Backward differentiation formula, a numerical method for solving ordinary differential equations
Ballroom Dancers' Federation, a British organization for competitive ballroom dancers
Bates Dance Festival, a yearly dance festival held at Bates College.
Banca Dacia Felix (Dacia Felix Bank), a defunct Romanian bank
Bedfordshire, a historic county in England, Chapman code
Beiersdorf AG, a multinational corporation based in Hamburg, Germany
Berlin Demography Forum, an annual international conference on demographic issues
Board foot, unit of measure for volume of lumber
Bois-des-Filion, Quebec, a town in Quebec, Canada
Bund Deutscher Frauenvereine (1894-1933), a defunct German women's organization
Technology
Building Distribution Frame, a type of distribution frame in telecommunications
PCI BDF (bus/device/function), a range of configurable addresses in PCI configuration space
Glyph Bitmap Distribution Format, a file format for storing bitmap fonts
Military
Bangladesh Forces, the combined forces of Bangladesh during its war of independence in 1971
Bahrain Defense Force, the military of Bahrain
Barbados Defence Force, the military of Barbados
Belize Defence Force, the military of Belize
Botswana Defence Force, the military of Botswana<|endoftext|>Q: How to do case insensitive search in StringOperators.valueOf("field1").indexOf(txtSchStr)) I have a springdata mongodb aggregation where I use
agg = Aggregation.newAggregation(BrkrBean.class, match(criteria),
project("productId, "fullName").and(
StringOperators.valueOf("areas").indexOf(searchString)).as("score"))
This works fine, but how can I do case insensitive search for the searchString. There is no option for indexOf() method.
A: It is not possible directly. You will have to do some kind of workaround by converting both field value and search string to same case.
StringOperators.valueOf(StringOperators.valueOf("areas").toLower())
.indexOf(StringOperators.valueOf(searchString).toLower())
<|endoftext|>Love Over and Over is the fifth album by Kate & Anna McGarrigle, released in 1982. Following this album, the McGarrigles did not release an album of new material until Heartbeats Accelerating in 1990. The album contains a French-Canadian version of Bob Seger's You'll Accomp'ny Me.
Track listing
Side One
"Move Over Moon" (Kate McGarrigle) – 3:11
"Sun, Son (Shining on the Water)" (Anna McGarrigle) – 4:03
"I Cried for Us" (Kate McGarrigle) – 3:23
"Love Over and Over" (Kate & Anna McGarrigle) – 4:07
"Star Cab Company" (Anna McGarrigle) – 3:30
"Tu vas m'accompagner" (Bob Seger; translated. by Anna McGarrigle) – 3:56
Side Two
"On My Way to Town" (Kate McGarrigle) – 2:17
"Jesus Lifeline" (, Arranged by Anna McGarrigle) – 3:01
"Work Song" (Kate McGarrigle) – 3:49
"St. Valentines Day, 1978 (Black Heart)" (Anna McGarrigle) – 3:17
"Midnight Flight" (Kate McGarrigle) – 5:42
Bonus tracks
The 1997 Hannibal CD reissue contains two bonus tracks not found on the Polydor release:
"A Place in Your Heart" (Kate & Anna McGarrigle, Pat Donaldson, Dane Lanken, Jane McGarrigle) – 3:07
"Babies If I Didn't Have You" (Kate McGarrigle) – 3:34 (B-side on the single release of the title track "Love Over and Over")
Personnel
Kate McGarrigle : Piano, banjo, accordion, guitar, vocals
Anna McGarrigle : Piano, accordion, vocals
Alun Davies : Guitar
Andrew Cowan : Guitar
Chaim Tannenbaum : Guitar, banjo, mandolin, vocals
Mark Knopfler - Guitar on "Love Over and Over"
Scot Lang : Guitar, bass guitar
Pat Donaldson : Bass guitar
Paul Samwell-Smith : Bass guitar
Jane McGarrigle : Organ, vocals
Kenny Pearson : Piano, organ
Gilles Losier : Piano
Dane Lanken : Trumpet
Gerry Conway : Drums
Jean-Paul Robichaud : Drums, percussions
Ted Jensen : Engineer at Sterling Sound, NYC - mastering
References
External links
1982 albums
Kate & Anna McGarrigle albums
Polydor Records albums<|endoftext|>\section{Introduction} \label{Sec:Introduction}
Carbon nanotubes were first found in a form of multi-wall cylinders, each of which consists of a rolled graphene sheet.\cite{Iijima_1991a,Iijima_et_al_1992a}
A single-wall nanotube, fabricated later,\cite{Iijima_and_Ichihashi_1993a,Bethune_et_al_1993a} has a unique electronic property that it changes critically from metallic to semiconducting depending on its tubular circumferential vector.
This characteristic feature was first predicted by means of tight-binding models,\cite{Hamada_et_al_1992a,Mintmire_et_al_1992a,Saito_et_al_1992a,Dresselhaus_et_al_1992a,Dresselhaus_et_al_1992b,Jishi_et_al_1993a,Tanaka_et_al_1992a,Gao_and_Herndon_1992a,Robertson_et_al_1992a,White_et_al_1993a} and was successfully described in an effective-mass approximation.\cite{Ajiki_and_Ando_1993a,Ajiki_and_Ando_1996a,Ando_2005a_and_References}
Experimental\cite{Chopra_et_al_1995b,Bourgeois_and_Bursill_1997a,Benedict_et_al_1998a,Liu_et_al_2002d,Li_et_al_2007a,Zhong_et_al_2012a,Kohno_et_al_2013a,Zhang_et_al_2012a,Martel_et_al_1998b,Hertel_et_al_1998a,Yu_et_al_2001d,Yu_et_al_2001b,Giusca_et_al_2007a,Giusca_et_al_2008a,Choi_et_al_2013a} as well as computational studies\cite{Crespi_et_al_1996a,Crespi_et_al_1998a,Lu_et_al_2003a,Liu_and_Cho_2004a,Tangney_et_al_2005a,Lammert_et_al_2000a,Mehrez_et_al_2005a,Lu_et_al_2005a,Tang_et_al_2005a,Zhang_et_al_2006b,Hasegawa_and_Nishidate_2006a,Xiao_et_al_2007a,Lu_et_al_2011a,Kim_et_al_2001e,Nishidate_and_Hasegawa_2008a,Shtogun_and_Woods_2009a,Hasegawa_and_Nishidate_2009a,Nishidate_and_Hasegawa_2010a,Shklyaev_et_al_2011a,Kou_et_al_2013a} have discovered that large diameter nanotubes have an additional stable flattened structure.
The purpose of this work is to study electronic structure of collapsed carbon nanotubes for arbitrary chirality within the effective-mass approximation.
\par
The observation of fully collapsed multi-wall carbon nanotubes was reported in transmission electron microscopy,\cite{Chopra_et_al_1995b,Bourgeois_and_Bursill_1997a,Benedict_et_al_1998a,Liu_et_al_2002d,Li_et_al_2007a,Zhong_et_al_2012a,Kohno_et_al_2013a,Zhang_et_al_2012a} atomic force microscopy,\cite{Zhang_et_al_2012a,Martel_et_al_1998b,Hertel_et_al_1998a,Yu_et_al_2001d} and scanning tunneling microscopy.\cite{Giusca_et_al_2007a,Giusca_et_al_2008a,Yu_et_al_2001b}
Multi-wall nanotubes was shown to exhibit structural deformations in FET devices.\cite{Martel_et_al_1998b}
Recently, high-yield fabrication of high quality collapsed tubes was | redpajama | [
8561,
39,
390,
378,
4989,
778,
3730,
281,
27,
535,
8247,
1034,
9827,
7212,
13,
247,
10704,
1332,
323,
16161,
9826,
8967,
7424,
187,
14702,
4461,
399,
13342,
8,
20369,
13,
247,
4782,
6003,
323,
12085,
4023,
4461,
39576,
187,
43354,
30866,
14964,
13,
247,
35126,
11012,
16365,
2918,
387,
43354,
6822,
15,
187,
378,
35884,
399,
22622,
36172,
313,
37,
22622,
36172,
6022,
582,
247,
809,
10593,
45575,
4310,
187,
47677,
19299,
13,
247,
14464,
9635,
275,
5854,
13,
37108,
2127,
187,
2325,
4670,
23407,
71,
13145,
13,
247,
37197,
1050,
13739,
1754,
275,
38343,
13,
6176,
187,
12911,
4281,
3756,
24703,
13,
271,
7970,
5213,
8059,
327,
18825,
3374,
187,
5986,
3174,
13,
3943,
273,
2557,
323,
4644,
273,
42859,
187,
3452,
261,
14,
3229,
14,
7047,
279,
13,
25287,
13,
247,
3874,
275,
25287,
13,
6144,
187,
26079,
23441,
1026,
379,
22864,
31526,
3764,
460,
313,
1093,
3953,
14,
49812,
582,
247,
809,
10593,
5685,
2255,
434,
6003,
187,
187,
7573,
18027,
2490,
16790,
30313,
17780,
13,
247,
1511,
273,
3268,
3665,
275,
39063,
187,
22447,
378,
14803,
313,
13097,
16,
10933,
16,
3701,
582,
247,
2491,
273,
3596,
11722,
12453,
275,
22447,
6661,
2317,
187,
30133,
545,
50192,
30313,
31512,
13,
247,
1873,
5981,
323,
20073,
42615,
36622,
187,
187,
42531,
187,
29310,
24495,
13,
253,
5678,
5621,
273,
29310,
1309,
697,
2137,
273,
14275,
275,
16609,
187,
21789,
1949,
14971,
10627,
13,
253,
4668,
273,
21789,
1949,
187,
33782,
8585,
32831,
10627,
13,
253,
4668,
273,
33782,
8585,
187,
6512,
907,
32831,
10627,
13,
253,
4668,
273,
6512,
907,
187,
378,
1502,
88,
3230,
32831,
10627,
13,
253,
4668,
273,
378,
1502,
88,
3230,
50279,
50,
27,
1359,
281,
513,
1083,
39188,
3186,
275,
4605,
10996,
2392,
15,
48559,
1587,
3423,
18,
6788,
33966,
9,
10134,
10859,
10287,
1228,
309,
452,
247,
7203,
2203,
49535,
36570,
20828,
835,
309,
897,
187,
13046,
426,
32516,
37480,
15,
1826,
35619,
37480,
9,
8478,
21529,
20317,
15,
2437,
13,
3761,
9,
24913,
5169,
582,
187,
50272,
10408,
1587,
7509,
2618,
13,
346,
11546,
2402,
6788,
395,
9,
187,
50273,
2776,
10996,
2392,
15,
48559,
1587,
609,
284,
6788,
33966,
9,
8716,
2776,
5029,
284,
1587,
18891,
14708,
187,
187,
1552,
2987,
4030,
13,
533,
849,
476,
309,
513,
1083,
39188,
3186,
323,
253,
3186,
2776,
15,
1707,
310,
642,
4500,
323,
3605,
4527,
1082,
1332,
15,
187,
187,
34,
27,
733,
310,
417,
1896,
3587,
15,
1422,
588,
452,
281,
513,
690,
2238,
273,
42182,
407,
22022,
1097,
1673,
1318,
285,
3186,
2876,
281,
1072,
1083,
15,
187,
2776,
10996,
2392,
15,
48559,
9,
2776,
10996,
2392,
15,
48559,
1587,
609,
284,
6788,
936,
25216,
6649,
187,
50276,
15,
33966,
9,
2776,
10996,
2392,
15,
48559,
9,
8716,
2776,
481,
936,
25216,
6649,
535,
50279,
23337,
6061,
285,
6061,
310,
253,
10720,
5400,
407,
20428,
708,
16543,
16442,
3298,
304,
282,
13,
4439,
275,
13563,
15,
11977,
436,
5400,
13,
253,
16442,
3298,
304,
868,
858,
417,
3727,
271,
5400,
273,
747,
2144,
1919,
15382,
1257,
1832,
8874,
15766,
839,
275,
7901,
15,
380,
5400,
4428,
247,
5112,
14,
31478,
2715,
273,
8679,
19655,
254,
434,
1422,
1833,
8874,
23242,
8,
5134,
3189,
15,
187,
187,
23857,
16485,
187,
187,
28541,
2596,
187,
3,
19815,
6061,
16363,
3,
313,
47085,
16442,
3298,
304,
282,
10,
1108,
495,
27,
883,
187,
3,
14594,
13,
11832,
313,
2809,
1699,
327,
253,
10205,
6844,
313,
40805,
16442,
3298,
304,
282,
10,
1108,
577,
27,
2941,
187,
3,
42,
330,
2200,
323,
8802,
3,
313,
47085,
16442,
3298,
304,
282,
10,
1108,
495,
27,
1508,
187,
3,
23337,
6061,
285,
6061,
3,
313,
47085,
708,
16543,
16442,
3298,
304,
282,
10,
1108,
577,
27,
2922,
187,
3,
16043,
15569,
6487,
3,
313,
40805,
16442,
3298,
304,
282,
10,
1108,
495,
27,
1229,
187,
3,
37675,
16016,
278,
8,
317,
3118,
25823,
3,
313,
26845,
19655,
254,
28,
15786,
15,
407,
16543,
16442,
3298,
304,
282,
10,
1108,
495,
27,
3208,
187,
187,
28541,
5761,
187,
3,
2374,
2752,
10834,
281,
10079,
3,
313,
47085,
16442,
3298,
304,
282,
10,
1108,
374,
27,
1166,
187,
3,
27035,
27230,
4115,
3,
33820,
1780,
83,
4626,
407,
16543,
16442,
3298,
304,
282,
10,
1108,
495,
27,
520,
187,
3,
10282,
16865,
3,
313,
47085,
16442,
3298,
304,
282,
10,
1108,
495,
27,
2537,
187,
3,
998,
15,
24640,
1100,
6258,
13,
14304,
313,
15383,
15382,
6844,
313,
40805,
16442,
3298,
304,
282,
10,
1108,
495,
27,
1166,
187,
3,
30701,
6170,
29726,
3,
313,
47085,
16442,
3298,
304,
282,
10,
1108,
608,
27,
2945,
187,
187,
27157,
316,
11411,
187,
510,
8210,
32766,
34300,
3437,
294,
15697,
4428,
767,
17301,
11411,
417,
1119,
327,
253,
3130,
10120,
263,
3727,
27,
187,
346,
34,
13470,
275,
5402,
15382,
3,
313,
47085,
708,
16543,
16442,
3298,
304,
282,
13,
2790,
399,
2814,
1397,
251,
13,
399,
1351,
418,
1164,
257,
13,
14884,
16442,
3298,
304,
282,
10,
1108,
495,
27,
2922,
187,
346,
49903,
447,
1310,
309,
40713,
626,
12238,
1422,
3,
313,
47085,
16442,
3298,
304,
282,
10,
1108,
495,
27,
1706,
313,
35,
14,
2189,
327,
253,
2014,
3727,
273,
253,
4060,
3540,
346,
23337,
6061,
285,
6061,
2807,
187,
187,
19589,
8101,
187,
20428,
16442,
3298,
304,
282,
1163,
367,
10356,
13,
8913,
5309,
13,
7158,
279,
13,
12609,
13,
23599,
187,
16543,
16442,
3298,
304,
282,
1163,
367,
10356,
13,
7158,
279,
13,
23599,
2490,
1219,
328,
35693,
1163,
443,
36567,
187,
11116,
18544,
266,
1163,
443,
36567,
2490,
775,
1468,
308,
1136,
257,
30735,
1163,
443,
36567,
13,
8913,
5309,
13,
7649,
15141,
13,
23599,
2490,
4744,
10381,
412,
1258,
254,
428,
443,
36567,
327,
346,
23337,
6061,
285,
6061,
3,
187,
11137,
18232,
1163,
443,
36567,
13,
16819,
12609,
2490,
2790,
399,
2814,
1397,
251,
1163,
28219,
12609,
187,
5171,
5769,
4714,
14,
21484,
1163,
28219,
12609,
187,
14884,
16442,
3298,
304,
282,
1163,
10164,
13,
23599,
2490,
39370,
25065,
1163,
367,
10356,
13,
1963,
187,
443,
18810,
8742,
1321,
1163,
367,
10356,
187,
399,
1351,
418,
1164,
257,
1163,
3778,
292,
2490,
443,
9587,
47313,
1163,
3196,
7640,
2490,
13089,
14,
17239,
6625,
469,
5353,
1163,
3196,
7640,
13,
39057,
45874,
187,
17446,
42054,
1163,
39424,
387,
41112,
18874,
13,
32880,
428,
6303,
272,
187,
187,
4941,
187,
187,
7504,
4859,
19668,
187,
17103,
16258,
187,
47085,
708,
16543,
16442,
3298,
304,
282,
16258,
187,
7638,
10120,
263,
15648,
16258,
50279,
61,
4674,
92,
14214,
94,
393,
1968,
92,
4538,
27,
14214,
94,
190,
187,
10697,
4006,
38587,
31571,
497,
806,
1119,
275,
247,
830,
273,
4471,
14,
12081,
37025,
13,
1016,
273,
534,
8414,
273,
247,
14436,
23076,
8335,
4880,
41766,
92,
42,
1944,
8032,
64,
14209,
66,
13,
42,
1944,
8032,
64,
292,
64,
267,
64,
13895,
66,
94,
190,
187,
34,
2014,
14,
12081,
38587,
4338,
13,
26493,
1996,
1337,
41766,
92,
42,
1944,
8032,
64,
395,
64,
42,
4635,
13362,
74,
64,
13549,
66,
13,
35,
678,
2517,
64,
292,
64,
267,
64,
13549,
66,
94,
556,
247,
4451,
7051,
2867,
326,
352,
2544,
21038,
432,
18719,
281,
49985,
272,
7293,
327,
697,
25784,
50145,
4972,
15,
190,
187,
1552,
8847,
4735,
369,
806,
8131,
407,
2097,
273,
6863,
14,
13018,
3210,
1337,
41766,
92,
22176,
2960,
64,
292,
64,
267,
64,
13895,
66,
13,
46,
565,
78,
603,
64,
292,
64,
267,
64,
13895,
66,
13,
52,
1942,
80,
64,
292,
64,
267,
64,
13895,
66,
13,
37,
560,
293,
25531,
64,
292,
64,
267,
64,
13895,
66,
13,
37,
560,
293,
25531,
64,
292,
64,
267,
64,
13895,
67,
13,
43,
31384,
64,
292,
64,
267,
64,
13549,
66,
13,
45621,
10573,
64,
292,
64,
267,
64,
13895,
66,
13,
40,
8500,
64,
395,
64,
41,
1808,
9903,
64,
13895,
66,
13,
17586,
1641,
251,
64,
292,
64,
267,
64,
13895,
66,
13,
17185,
64,
292,
64,
267,
64,
13549,
66,
94,
285,
369,
8379,
2529,
275,
271,
3576,
14,
14611,
11193,
4880,
41766,
92,
34,
75,
8678,
64,
395,
64,
1898,
80,
64,
13549,
66,
13,
34,
75,
8678,
64,
395,
64,
1898,
80,
64,
12487,
66,
13,
1898,
80,
64,
9204,
66,
64,
395,
64,
4941,
94,
190,
187,
32954,
61,
41766,
92,
1779,
412,
376,
64,
292,
64,
267,
64,
12731,
67,
13,
35,
454,
33488,
64,
395,
64,
35,
2244,
408,
64,
12430,
66,
13,
35,
2348,
882,
64,
292,
64,
267,
64,
11496,
66,
13,
41392,
64,
292,
64,
267,
64,
10016,
69,
13,
17448,
64,
292,
64,
267,
64,
8602,
66,
13,
59,
73,
543,
64,
292,
64,
267,
64,
6755,
66,
13,
44,
2116,
80,
64,
292,
64,
267,
64,
6622,
66,
13,
36378,
64,
292,
64,
267,
64,
6755,
66,
13,
15510,
293,
64,
292,
64,
267,
64,
11496,
67,
13,
41,
797,
293,
64,
292,
64,
267,
64,
11496,
66,
13,
42039,
64,
292,
64,
267,
64,
8971,
69,
13,
42039,
64,
292,
64,
267,
64,
8971,
67,
13,
40,
3750,
6357,
64,
292,
64,
267,
64,
8602,
66,
13,
40,
3750,
6357,
64,
292,
64,
267,
64,
8012,
66,
13,
18697,
74,
64,
292,
64,
267,
64,
6622,
66,
94,
347,
973,
347,
15180,
2175,
61,
41766,
92,
36,
373,
2059,
64,
292,
64,
267,
64,
12487,
66,
13,
36,
373,
2059,
64,
292,
64,
267,
64,
11496,
66,
13,
22653,
64,
292,
64,
267,
64,
9755,
66,
13,
41392,
64,
395,
64,
18697,
64,
9430,
66,
13,
53,
606,
2191,
64,
292,
64,
267,
64,
9204,
66,
13,
45,
3681,
797,
64,
292,
64,
267,
64,
6914,
66,
13,
5072,
73,
14852,
64,
292,
64,
267,
64,
9204,
66,
13,
22653,
64,
292,
64,
267,
64,
9204,
66,
13,
53,
606,
64,
292,
64,
267,
64,
9204,
66,
13,
36378,
64,
292,
64,
267,
64,
8603,
67,
13,
41,
511,
72,
11415,
64,
395,
64,
47,
763,
301,
366,
64,
8603,
66,
13,
57,
22728,
64,
292,
64,
267,
64,
8602,
66,
13,
22653,
64,
292,
64,
267,
64,
7330,
66,
13,
27682,
64,
292,
64,
267,
64,
8971,
70,
13,
47,
763,
301,
366,
64,
395,
64,
41,
511,
72,
11415,
64,
8012,
66,
13,
52,
384,
462,
328,
64,
395,
64,
30098,
84,
64,
7857,
66,
13,
41,
511,
72,
11415,
64,
395,
64,
47,
763,
301,
366,
64,
7857,
66,
13,
47,
763,
301,
366,
64,
395,
64,
41,
511,
72,
11415,
64,
7199,
66,
13,
2809,
76,
314,
66,
1173,
64,
292,
64,
267,
64,
7330,
66,
13,
44,
276,
64,
292,
64,
267,
64,
6622,
66,
94,
452,
6888,
326,
1781,
9080,
38587,
31571,
452,
271,
3081,
6474,
42394,
2605,
15,
190,
187,
510,
4096,
273,
436,
789,
310,
281,
1263,
7051,
2605,
273,
21900,
6315,
38587,
31571,
323,
10341,
36494,
1319,
1561,
253,
3576,
14,
14611,
11193,
15,
190,
187,
61,
1148,
190,
187,
510,
8310,
273,
4751,
21900,
4471,
14,
12081,
6315,
38587,
31571,
369,
2361,
275,
6322,
6488,
14080,
1337,
41766,
92,
1779,
412,
376,
64,
292,
64,
267,
64,
12731,
67,
13,
35,
454,
33488,
64,
395,
64,
35,
2244,
408,
64,
12430,
66,
13,
35,
2348,
882,
64,
292,
64,
267,
64,
11496,
66,
13,
41392,
64,
292,
64,
267,
64,
10016,
69,
13,
17448,
64,
292,
64,
267,
64,
8602,
66,
13,
59,
73,
543,
64,
292,
64,
267,
64,
6755,
66,
13,
44,
2116,
80,
64,
292,
64,
267,
64,
6622,
66,
13,
36378,
64,
292,
64,
267,
64,
6755,
66,
94,
13805,
3490,
14080,
1337,
41766,
92,
36378,
64,
292,
64,
267,
64,
6755,
66,
13,
15510,
293,
64,
292,
64,
267,
64,
11496,
67,
13,
41,
797,
293,
64,
292,
64,
267,
64,
11496,
66,
13,
42039,
64,
292,
64,
267,
64,
8971,
69,
94,
285,
13733,
33344,
14080,
4880,
41766,
92,
40,
3750,
6357,
64,
292,
64,
267,
64,
8602,
66,
13,
40,
3750,
6357,
64,
292,
64,
267,
64,
8012,
66,
13,
42039,
64,
292,
64,
267,
64,
8971,
67,
94,
190,
187,
22495,
14,
12081,
38587,
31571,
369,
2011,
281,
10738,
8350,
45989,
275,
401,
2025,
4095,
4880,
41766,
92,
15510,
293,
64,
292,
64,
267,
64,
11496,
67,
94,
190,
187,
24881,
13,
1029,
14,
41770,
22911,
273,
1029,
3290,
21900,
17080,
369
] |
Q: default data in sonata_type_model I work with symfony 2.7, and I use SonataAdminBundle.
I have 2 entities called (Produit) and (Correspondant) with OneToMany relation, One Produit can have Many Correspondant. in the create form for the (Produit) I have correspondants to add Many (Correspondant), and I like by default add all the Correspondants, for that I tried to do this :
ProduitAdmin
$query = $this->modelManager->getEntityManager(new User())->createQuery("SELECT s FROM UserBundle\Entity\User s WHERE s.type LIKE 'Correspondant'" );
$formMapper
->add('correspondants','sonata_type_model', array(
'class'=>'Devagnos\UserBundle\Entity\User',
'multiple'=> true,
'by_reference' => false,
'label'=>'Correspondants associés',
'data' => function() {
$data = new ArrayCollection();
$r= $query->getResult();
foreach($r as $result) {
$data->add($result->getId());
}
return $data;
},
'query' => $query ),
)
But this does not work,
Someone can help me please? thanks
A: You need to set data attribute and put the entities you want to be selected as default.
$selected =... //fetch entities, e.g. from repository
$formMapper
->add('field','sonata_type_model', array(
'your_settings' => '...',
'query' => '...',
'data' => $selected
)
);
<|endoftext|>Q: Namespace and classes in php Why i receive error? the class in the same namespace..
php 5.3.0
namespace ExampleSystem\Core;
class Test {
public function __construct() {
print 'Test ok';
}
}
// Fatal error: Class 'Test' not found in...
$class_name = 'Test';
$obj = new $class_name;
// Ok
$class_name = 'ExampleSystem\Core\Test';
$obj = new $class_name;
// Ok
$obj = new Test;
A: I can't find chapter and verse in the PHP manual, but the obvious explanation is that when you do:
$obj = new $string
then the value of $string is not mapped into the current namespace. This makes sense, when you consider that $string may have been passed in from somewhere else, where a different namespace may have been in effect.
<|endoftext|>What do you do in cafes? Catch-up with old friends? Finish your homework?
Community organizing doesn't have to take place in cramped office spaces or basement pubs. In fact, if we really want to reclaim public space as a spot in which to congregate and form movements, it's imperative to form inclusive community spaces. And catching up with old friends doesn't have to exist solitary from social justice events. We can be social as we organize. There is beauty in that.
This is the sort of space the Rhizome Cafe is fostering.
I spoke with Lisa Moore, co-founder of the Rhizome, located 317 E. Broadway near Kingsway. It's a spot in Vancouver where art, activism and social organizing all meet.
Lisa explained how the space was founded by her and partner Vinetta in 2006 after they moved to Vancouver and recognized a noticeable gap between the various groups in the activist scene there. The space was formed with the goal of providing an "activist living room" for progressives to come in and cultivate the intersecting of issues as well as form relationships and trust.
Lisa pointed out that the Rhizome was always going to be a community space before a restaurant. Vinetta had past experience working in a family restaurant and the Rhizome needed a way to sustain itself. Its mission was (and is) to operate as a place to support organizing and social justice work, provide a meeting space for activists and to host a multitude of related events.
A critical component of the space lies in its acts of solidarity with all community members. Its pay-as-you-can lentil soup is an "act of community not charity," says Lisa. She went on to explain how the space is both formal and informal, so that folks can drop by without necessarily having a reason at first, only to have that curiosity bloom into active participation in local activism.
"It's important to get to know each other on a human level..and know who is beside us when enraged," she said.
And what better way to connect community members than through the blending of art and social justice work. The Rhizome has played host to everything from indigenous hip-hop shows, to queer-oriented board game nights, to fundraisers, and community forums. The fact social justice takes different forms is etched into the space and "different modes of expression are woven throughout."
Recognizing the beauty in everyone's unique skills that they bring into organizing and appreciating the variance in a safe, inclusive, non-oppressive space is effective in heightening the scope of both community and activism in our cities.
The reality that 150 community members came out to support the Rhizome, when they had started a method of financial support, "friends of the rhizome," due to the increasing cost of operation, is an example of how public space is the responsibility of everyone.
While being underground may be important in a time of severe state repression, re-claiming public space as a place for the people to meet and form the type of neighbourhood, lacking in corporate-infused urban planning, is fundamental to a healthy activist community.
Like the coffee shop meetings of radical organizers from my parents<|endoftext|>Q: How to specify _HANDLER in AWS Lambda Docker Image I am trying to create a docker image to run a shell script as aws lambda function. As far as I understood, I need a runtime and a handler.
The default runtime (bootstrap) looks like this:
#!/bin/sh
set -euo pipefail
# Handler format: <script_name>.<bash_function_name>
#
# The script file <script_name>.sh must be located at the root of your
# function's deployment package, alongside this bootstrap executable.
source $(dirname "$0")/"$(echo $_HANDLER | cut -d. -f1).sh"
while true
do
# Request the next event from the Lambda runtime
HEADERS="$(mktemp)"
EVENT_DATA=$(curl -v -sS -LD "$HEADERS" -X GET "http://${AWS_LAMBDA_RUNTIME_API}/2018-06-01/runtime/invocation/next")
INVOCATION_ID=$(grep -Fi Lambda-Runtime-Aws-Request-Id "$HEADERS" | tr -d '[:space:]' | cut -d: -f2)
# Execute the handler function from the script
RESPONSE=$($(echo "$_HANDLER" | cut -d. -f2) "$EVENT_DATA")
# Send the response to Lambda runtime
curl -v -sS -X POST "http://${AWS_LAMBDA_RUNTIME_API}/2018-06-01/runtime/invocation/$INVOCATION_ID/response" -d "$RESPONSE"
done
The Dockerfile:
FROM public.ecr.aws/lambda/provided:al2
COPY bootstrap ${LAMBDA_RUNTIME_DIR}
COPY function.sh ${LAMBDA_TASK_ROOT}
RUN … (install some dependencies)
CMD ["function.handler"]
From what I've read, your supposed to set CMD to the handler. However this does not seem to work as the $_HANDLER variable is not known inside of the container.
A: I can't figure out what makes the difference, but this combination of Dockerfile and bootstrap works.
#!/bin/sh
set -euo pipefail
source "$LAMBDA_TASK_ROOT"/"$(echo $_HANDLER | cut -d. -f1).sh"
while true
do
# Request the next event from the Lambda runtime
HEADERS="$(mktemp)"
EVENT_DATA=$(curl -sS -LD "$HEADERS" -X GET "http://${AWS_LAMBDA_RUNTIME_API}/2018-06-01/runtime/invocation/next")
INVOCATION_ID=$(grep -Fi Lambda-Runtime-Aws-Request-Id "$HEADERS" | tr -d '[:space:]' | cut -d: -f2)
# Execute the handler function from the script
RESPONSE=$($(echo "$_HANDLER" | cut -d. -f2) "$EVENT_DATA")
# Send the response to Lambda runtime
curl -sS -X POST "http://${AWS_LAMBDA_RUNTIME_API}/2018- | redpajama | [
50,
27,
4284,
941,
275,
3347,
682,
64,
881,
64,
7645,
309,
789,
342,
18870,
37852,
374,
15,
24,
1157,
285,
309,
897,
11832,
682,
30000,
18099,
15,
187,
42,
452,
374,
14429,
1925,
313,
1845,
563,
262,
10,
285,
313,
9873,
2541,
386,
10,
342,
2596,
1992,
10195,
5886,
13,
2596,
31186,
262,
476,
452,
6676,
41455,
386,
15,
275,
253,
2794,
830,
323,
253,
313,
1845,
563,
262,
10,
309,
452,
2723,
1103,
281,
823,
6676,
313,
9873,
2541,
386,
582,
285,
309,
751,
407,
4284,
823,
512,
253,
41455,
1103,
13,
323,
326,
309,
3597,
281,
513,
436,
1163,
209,
187,
1845,
563,
262,
30000,
187,
370,
7267,
426,
370,
2520,
1168,
7645,
8224,
1168,
788,
14984,
8224,
9,
1826,
11447,
6649,
1168,
6953,
8053,
1587,
12995,
256,
10727,
11447,
18099,
61,
14984,
61,
6989,
256,
17242,
256,
15,
881,
32021,
686,
9873,
2541,
386,
21288,
5349,
187,
370,
630,
37479,
2490,
50272,
1168,
1911,
2073,
5528,
2541,
1103,
10606,
1665,
682,
64,
881,
64,
7645,
1383,
3781,
9,
187,
50265,
8,
2437,
46294,
8,
11148,
1530,
375,
61,
6989,
18099,
61,
14984,
61,
6989,
1383,
187,
50265,
1353,
503,
2113,
46294,
2032,
13,
187,
50265,
8,
1615,
64,
14005,
8,
3001,
3221,
13,
187,
50266,
8,
1968,
46294,
8,
9873,
2541,
1103,
1709,
5069,
1383,
535,
50266,
1871,
682,
8,
3001,
50276,
3701,
1082,
551,
187,
50262,
5,
2203,
426,
747,
11782,
16687,
1874,
187,
50262,
5,
83,
30,
370,
7267,
1168,
788,
9179,
1874,
535,
50262,
26966,
3914,
83,
347,
370,
6870,
10,
551,
535,
50259,
5,
2203,
1168,
1911,
3914,
6870,
1168,
788,
2618,
6020,
187,
50264,
94,
187,
50262,
2309,
370,
2203,
28,
187,
50266,
2023,
187,
50264,
8,
7267,
8,
3001,
370,
7267,
12062,
187,
50267,
10,
187,
187,
1989,
436,
1057,
417,
789,
13,
209,
187,
29065,
476,
1361,
479,
4496,
3736,
6701,
2490,
187,
34,
27,
1422,
878,
281,
873,
941,
11104,
285,
1691,
253,
14429,
368,
971,
281,
320,
4236,
347,
4284,
15,
187,
5,
16191,
426,
3346,
1380,
24717,
14429,
13,
299,
15,
72,
15,
432,
18491,
187,
5,
630,
37479,
187,
50274,
1168,
1911,
2073,
3423,
1383,
686,
1665,
682,
64,
881,
64,
7645,
1383,
3781,
9,
187,
50270,
8,
12550,
64,
17494,
8,
3001,
686,
1051,
1383,
187,
50270,
8,
7267,
8,
3001,
686,
1051,
1383,
187,
50270,
1871,
682,
8,
3001,
370,
16191,
187,
50270,
10,
187,
50274,
558,
535,
50279,
50,
27,
35876,
4511,
285,
5971,
275,
21293,
6049,
891,
4763,
2228,
32,
253,
966,
275,
253,
1072,
12953,
537,
187,
5581,
608,
15,
20,
15,
17,
187,
12361,
18466,
7761,
61,
13745,
28,
187,
2437,
6004,
551,
187,
50274,
4387,
1159,
4772,
17439,
1082,
551,
187,
50270,
3845,
686,
5089,
8718,
5618,
187,
50274,
94,
187,
94,
187,
187,
605,
401,
3165,
2228,
27,
6550,
686,
5089,
8,
417,
1119,
275,
3346,
187,
5,
2437,
64,
1590,
426,
686,
5089,
5618,
187,
5,
9344,
426,
747,
370,
2437,
64,
1590,
28,
187,
187,
605,
19023,
187,
5,
2437,
64,
1590,
426,
686,
16698,
7761,
61,
13745,
61,
5089,
5618,
187,
5,
9344,
426,
747,
370,
2437,
64,
1590,
28,
187,
187,
605,
19023,
187,
5,
9344,
426,
747,
6004,
28,
535,
187,
34,
27,
309,
476,
626,
1089,
8857,
285,
23252,
275,
253,
14741,
11595,
13,
533,
253,
4755,
8813,
310,
326,
672,
368,
513,
27,
187,
370,
9344,
426,
747,
370,
2703,
187,
187,
7461,
253,
1318,
273,
370,
2703,
310,
417,
18301,
715,
253,
1655,
12953,
15,
50276,
1552,
2789,
3282,
13,
672,
368,
1908,
326,
370,
2703,
778,
452,
644,
4817,
275,
432,
9366,
2010,
13,
835,
247,
1027,
12953,
778,
452,
644,
275,
1055,
15,
187,
50279,
1276,
513,
368,
513,
275,
15660,
265,
32,
330,
1506,
14,
484,
342,
1711,
3858,
32,
7198,
763,
634,
32110,
32,
187,
40645,
26169,
2506,
626,
452,
281,
1379,
1659,
275,
1531,
17263,
3906,
8470,
390,
21135,
13384,
84,
15,
496,
958,
13,
604,
359,
1663,
971,
281,
294,
7041,
1345,
2317,
347,
247,
6308,
275,
534,
281,
44615,
366,
285,
830,
11438,
13,
352,
434,
30048,
281,
830,
25495,
3114,
8470,
15,
1244,
23862,
598,
342,
1711,
3858,
2506,
626,
452,
281,
2226,
29437,
432,
2675,
8426,
3394,
15,
844,
476,
320,
2675,
347,
359,
23968,
15,
1707,
310,
10763,
275,
326,
15,
187,
1552,
310,
253,
3686,
273,
2317,
253,
11537,
478,
485,
45013,
310,
25243,
2158,
15,
187,
42,
7560,
342,
22707,
13856,
13,
820,
14,
31456,
273,
253,
11537,
478,
485,
13,
4441,
31004,
444,
15,
27199,
2822,
20567,
1106,
15,
733,
434,
247,
6308,
275,
22126,
835,
1445,
13,
42123,
285,
2675,
26169,
512,
2525,
15,
187,
45,
8901,
5544,
849,
253,
2317,
369,
11420,
407,
617,
285,
7832,
657,
7795,
893,
275,
5403,
846,
597,
4395,
281,
22126,
285,
7478,
247,
28629,
8037,
875,
253,
2710,
2390,
275,
253,
22531,
6200,
627,
15,
380,
2317,
369,
4447,
342,
253,
4736,
273,
5277,
271,
346,
19452,
382,
3811,
2316,
3,
323,
4780,
1644,
281,
1705,
275,
285,
49507,
253,
23965,
272,
273,
3374,
347,
973,
347,
830,
7688,
285,
4517,
15,
187,
45,
8901,
8042,
562,
326,
253,
11537,
478,
485,
369,
1900,
1469,
281,
320,
247,
3114,
2317,
1078,
247,
10301,
15,
657,
7795,
893,
574,
2469,
2793,
2444,
275,
247,
2021,
10301,
285,
253,
11537,
478,
485,
3058,
247,
1039,
281,
10265,
3139,
15,
7850,
7517,
369,
313,
395,
310,
10,
281,
10196,
347,
247,
1659,
281,
1329,
26169,
285,
2675,
8426,
789,
13,
2085,
247,
4804,
2317,
323,
18158,
285,
281,
3167,
247,
30408,
273,
2905,
3394,
15,
187,
34,
4619,
4445,
273,
253,
2317,
8696,
275,
697,
6993,
273,
34394,
342,
512,
3114,
2758,
15,
7850,
2075,
14,
284,
14,
5658,
14,
5092,
21685,
300,
18377,
310,
271,
346,
514,
273,
3114,
417,
19489,
937,
2296,
22707,
15,
1500,
2427,
327,
281,
5513,
849,
253,
2317,
310,
1097,
7473,
285,
25040,
13,
594,
326,
12633,
476,
5926,
407,
1293,
7933,
1907,
247,
1921,
387,
806,
13,
760,
281,
452,
326,
24536,
30601,
715,
3939,
11497,
275,
1980,
42123,
15,
187,
3,
1147,
434,
1774,
281,
755,
281,
871,
1016,
643,
327,
247,
1966,
1268,
537,
395,
871,
665,
310,
12200,
441,
672,
546,
34785,
937,
703,
753,
15,
187,
1898,
752,
1805,
1039,
281,
4684,
3114,
2758,
685,
949,
253,
41209,
273,
1445,
285,
2675,
8426,
789,
15,
380,
11537,
478,
485,
556,
4546,
3167,
281,
3253,
432,
24984,
13290,
14,
12242,
2722,
13,
281,
38493,
14,
21085,
4450,
2165,
15513,
13,
281,
3187,
21269,
398,
13,
285,
3114,
25278,
15,
380,
958,
2675,
8426,
3936,
1027,
4948,
310,
43700,
715,
253,
2317,
285,
346,
19623,
10006,
273,
2048,
403,
39239,
4768,
449,
187,
44349,
3006,
253,
10763,
275,
4130,
434,
4451,
6936,
326,
597,
3324,
715,
26169,
285,
6373,
15544,
253,
11041,
275,
247,
4999,
13,
25495,
13,
1327,
14,
10468,
8122,
2317,
310,
3576,
275,
4898,
2980,
253,
7990,
273,
1097,
3114,
285,
42123,
275,
776,
8238,
15,
187,
510,
6612,
326,
7783,
3114,
2758,
2210,
562,
281,
1329,
253,
11537,
478,
485,
13,
672,
597,
574,
3053,
247,
1332,
273,
4832,
1329,
13,
346,
29261,
273,
253,
13882,
478,
485,
937,
1955,
281,
253,
3629,
2105,
273,
4254,
13,
310,
271,
1650,
273,
849,
1345,
2317,
310,
253,
8294,
273,
4130,
15,
187,
6175,
1146,
19076,
778,
320,
1774,
275,
247,
673,
273,
5460,
1375,
32070,
13,
294,
14,
43759,
1345,
2317,
347,
247,
1659,
323,
253,
952,
281,
2525,
285,
830,
253,
1511,
273,
24092,
13,
14999,
275,
10459,
14,
2050,
3197,
10106,
7219,
13,
310,
7936,
281,
247,
5875,
22531,
3114,
15,
187,
9817,
253,
8574,
8979,
12225,
273,
9329,
37630,
432,
619,
4651,
50279,
50,
27,
1359,
281,
13199,
795,
33359,
45,
947,
275,
30503,
418,
1836,
40050,
10882,
309,
717,
2820,
281,
2794,
247,
36191,
2460,
281,
1408,
247,
8135,
6001,
347,
3768,
84,
29331,
1159,
15,
50276,
1909,
2080,
347,
309,
7192,
13,
309,
878,
247,
20243,
285,
247,
16454,
15,
187,
510,
4284,
20243,
313,
24884,
10,
4453,
751,
436,
27,
187,
4,
34834,
4805,
16,
1200,
187,
1178,
428,
16427,
80,
12881,
24796,
187,
187,
4,
49263,
5981,
27,
654,
3866,
64,
1590,
13208,
29,
31333,
64,
3701,
64,
1590,
31,
187,
4,
187,
4,
380,
6001,
1873,
654,
3866,
64,
1590,
13208,
1200,
50276,
18265,
320,
4441,
387,
253,
5230,
273,
634,
187,
4,
1159,
434,
19007,
5522,
13,
12936,
436,
28551,
33375,
15,
187,
6756,
3019,
45518,
12122,
17,
3,
1933,
3,
6999,
13088,
21670,
33359,
45,
947,
1040,
2624,
428,
69,
15,
428,
71,
18,
481,
1200,
3,
187,
187,
6050,
2032,
187,
3088,
187,
50274,
4,
19107,
253,
1735,
2362,
432,
253,
418,
1836,
20243,
187,
50274,
22225,
6117,
43306,
18835,
16306,
6844,
187,
50274,
30212,
64,
17020,
44241,
31064,
428,
87,
428,
84,
52,
428,
9803,
12122,
22225,
6117,
3,
428,
57,
19220,
346,
2413,
1358,
8626,
34,
10930,
64,
45,
2300,
35,
4877,
64,
29537,
18318,
64,
11252,
9228,
7798,
14,
3071,
14,
520,
16,
21005,
16,
7821,
4341,
16,
8384,
2807,
187,
50274,
1042,
55,
3231,
6570,
64,
1838,
44241,
72,
4762,
428,
15723,
418,
1836,
14,
17577,
14,
34,
8819,
14,
6825,
14,
2618,
12122,
22225,
6117,
3,
1040,
492,
428,
69,
686,
18297,
5641,
27,
31258,
1040,
2624,
428,
69,
27,
428,
71,
19,
10,
535,
50274,
4,
12138,
1137,
253,
16454,
1159,
432,
253,
6001,
187,
50274,
13045,
49,
1139,
2354,
18340,
3914,
9,
13088,
346,
10001,
33359,
45,
947,
3,
1040,
2624,
428,
69,
15,
428,
71,
19,
10,
12122,
30212,
64,
17020,
2807,
535,
50274,
4,
23934,
253,
2380,
281,
418,
1836,
20243,
187,
50274,
31064,
428,
87,
428,
84,
52,
428,
57,
28846,
346,
2413,
1358,
8626,
34,
10930,
64,
45,
2300,
35,
4877,
64,
29537,
18318,
64,
11252,
9228,
7798,
14,
3071,
14,
520,
16,
21005,
16,
7821,
4341,
27781,
1042,
55,
3231,
6570,
64,
1838,
16,
10927,
3,
428,
69,
12122,
13045,
49,
1139,
2354,
3,
187,
17506,
187,
187,
510,
40050,
3140,
27,
187,
22050,
1345,
15,
886,
83,
15,
11345,
16,
2260,
16,
33850,
27,
267,
19,
2490,
187,
49617,
28551,
7224,
45,
2300,
35,
4877,
64,
29537,
18318,
64,
13266,
94,
187,
49617,
1159,
15,
1200,
7224,
45,
2300,
35,
4877,
64,
53,
14476,
64,
34101,
94,
187,
187,
29537,
8139,
50276,
9,
12543,
690,
21011,
10,
187,
187,
24840,
15640,
3701,
15,
20238,
9686,
187,
187,
4509,
752,
309,
1849,
1239,
13,
634,
6326,
281,
873,
48168,
281,
253,
16454,
15,
1723,
436,
1057,
417,
1646,
281,
789,
347,
253,
21670,
33359,
45,
947,
4778,
310,
417,
1929,
3304,
273,
253,
8781,
15,
187,
187,
34,
27,
309,
476,
626,
4677,
562,
752,
2789,
253,
3064,
13,
533,
436,
5019,
273,
40050,
3140,
285,
28551,
2987,
15,
187,
4,
34834,
4805,
16,
1200,
187,
1178,
428,
16427,
80,
12881,
24796,
187,
187,
6756,
12122,
45,
2300,
35,
4877,
64,
53,
14476,
64,
34101,
3,
23911,
6999,
13088,
21670,
33359,
45,
947,
1040,
2624,
428,
69,
15,
428,
71,
18,
481,
1200,
3,
187,
187,
6050,
2032,
187,
3088,
187,
50274,
4,
19107,
253,
1735,
2362,
432,
253,
418,
1836,
20243,
187,
50274,
22225,
6117,
43306,
18835,
16306,
6844,
187,
50274,
30212,
64,
17020,
44241,
31064,
428,
84,
52,
428,
9803,
12122,
22225,
6117,
3,
428,
57,
19220,
346,
2413,
1358,
8626,
34,
10930,
64,
45,
2300,
35,
4877,
64,
29537,
18318,
64,
11252,
9228,
7798,
14,
3071,
14,
520,
16,
21005,
16,
7821,
4341,
16,
8384,
2807,
187,
50274,
1042,
55,
3231,
6570,
64,
1838,
44241,
72,
4762,
428,
15723,
418,
1836,
14,
17577,
14,
34,
8819,
14,
6825,
14,
2618,
12122,
22225,
6117,
3,
1040,
492,
428,
69,
686,
18297,
5641,
27,
31258,
1040,
2624,
428,
69,
27,
428,
71,
19,
10,
535,
50274,
4,
12138,
1137,
253,
16454,
1159,
432,
253,
6001,
187,
50274,
13045,
49,
1139,
2354,
18340,
3914,
9,
13088,
346,
10001,
33359,
45,
947,
3,
1040,
2624,
428,
69,
15,
428,
71,
19,
10,
12122,
30212,
64,
17020,
2807,
535,
50274,
4,
23934,
253,
2380,
281,
418,
1836,
20243,
187,
50274,
31064,
428,
84,
52,
428,
57,
28846,
346,
2413,
1358,
8626,
34,
10930,
64,
45,
2300,
35,
4877,
64,
29537,
18318,
64,
11252,
9228,
7798,
14
] |
aries while it was Iraq that was trying to buy the loyalty of its own forces.
The radio also quoted Uday Saddam Hussein as saying, "the wives and mothers of those Americans who fight us will cry blood instead of tears. They should not pretend that they will have a safe spot inside Iraq or outside of it!" I wondered why he said, "or outside of it." Was he threatening terrorism?
After filing live broadcasts for much of the morning and afternoon for _Good Morning America,_ I headed to the Flowers Land to see Mohammed. I wanted to make sure he was still there. Instead I saw Zafar sitting on a couch in the lobby.
"What are you doing here?" I screamed at him. "I'm paying you to be at the hotel! Why else did I get you a room?"
"I didn't think you needed me anymore. I haven't heard from you in two days," he said, sulking.
"And you won't hear from me. All I want you to do is stay there. Just sit there in case I need you. Can't you do that?"
Zafar pursed his lips, lowered his head, and slunk out like a scolded child as I marched him back to his hotel. The policeman answered the door in an undershirt when we showed up. I couldn't smell the whiskey on his breath, but I could see his brain swimming behind his tired droopy eyes. And this was one of my safe houses.
I rushed back to the Palestine to start filing for that night's broadcasts. I wasn't frightened at this stage by the war. In fact, I was emboldened by the first two nights. I thought that if what I'd seen was all the US had in mind for the war, I'd been worrying too much.
> Day Three—Shock and Awe (March 22, 03)
>
>
>
> It was ten times the intensity of the first two nights. The palace complex on the west side of the river, Al-Kasr al-Jumhuri, was smashed. I could feel the heat and wind of the blasts against my face. I've gone three days almost without sleep. I've been on air almost 24 hours a day. Officials from the press center have been going through the hotel looking for sat phones. I'm keeping mine under the bed. It felt like an earthquake when the bombs were dropping. About half of the journalists slept in the shelter downstairs. The bombs were falling one after another. It was like lightning hitting the ground, the fury of Thor and Zeus crackling with explosions.
From my perch it looked to me as if all of downtown Baghdad was being destroyed. There was no moon in the sky (the air campaign was timed to begin with the new moon to protect against anti-aircraft fire) and it was a perfectly clear black night, which made the explosions stand out in crisp contrast. The bombs had been close enough that I could feel their hot wind and the blast waves blew back my hair and pushed the air out of my lungs.
The entire western bank of the city where government ministries were located was hit by what seemed like countless bombs and cruise missiles. I watched the area disappear in white smoke. It looked as if Baghdad were being eaten by a cloud. I cannot exaggerate how terrifying it was. I thought half the city was being flattened, leveled, eliminated.
When I emerged from the hotel the next morning, I felt like I'd been out all night drinking, gotten into a bar fight, embarrassed myself, antagonized my friends and smacked a policeman. I was treading very lightly, worried the world was after me. My legs were weak and I was on my best behavior, like a child trying to avoid punishment. I didn't want to be caught. I didn't want to be seen. I didn't know what I'd find in Baghdad that morning, or what to say to the people I met. I didn't know if there were hundreds, or even thousands, of people who'd been killed overnight.
I was greatly relieved to find Ali waiting for me downstairs in the hotel lobby with fresh bread, juice and cheese. He was remarkably calm. He also had the morning newspapers in hand. I was astonished that they'd managed to come out. It was a sign that Baghdad was still standing. The newspapers would continue to be published until the last day of the war. As we drove around I was stunned by how little damage I could actually see. I'd expected Baghdad to have become a moonscape. Several buildings had been reduced to dust, and most of the windows in the downtown area were shattered, but the city was still recognizable.
I drove past several telephone exchanges that had been reduced to smoldering hills of crumpled concrete with yellow chunks of insulation hanging from twisted steel reinforcement bars. Most of the destruction, however, had taken place behind the high walls of presidential palaces and security compounds, which had taken an incredible beating.
Ali was more shaken than he let on. He told me a cruise missile had soared over his house. He'd watched it go overhead.
Ali's parents had fled Baghdad that morning to stay with relatives in a nearby rural village.
After spending the afternoon broadcasting, I asked the network for a few hours off. I needed to collect my thoughts, eat a proper meal and reassure Ali that I wouldn't abandon him. I took Ali to Zafar's favorite restaurant, the one I remembered for its "Sauce" and wonderful _kouzi._ I didn't expect to find anyone inside, but the place was teeming with customers. The headwaiter had to look to find us a table in the back.
While we were eating, the air campaign started up for the first time during the day. I could hear the thundering of the big firecrackers and missiles falling, destroying buildings and everything in them. But no one in the restaurant flinched. I tried to focus on the hum of conversations coming from other tables. People weren't even talking about the war unfolding around them. It was a bizarre moment. Bombs were exploding around us after a night of the most awesome air strikes Iraq had ever known, the government was under attack, American troops were advancing toward the capital, yet people were busy munching on meat, bread and hummos, seemingly oblivious to it all.
I think the attitude was the result of the psychological trauma Iraqis had been subjected to during the decades of Saddam Hussein's misrule. Iraqis had been so beaten down that they'd become ambivalent, like those bureaucrats I'd encountered with stares like prisoners on death row. In Iraq, it was considered unpatriotic to notice the war, and treasonous to discuss it, let alone speculate about the outcome. It was safer to just pretend not to notice what was going on, keep your head down, and wait for the storm to blow over. I found it very sad to see what years of dictatorship can do to the human soul.
# CHAPTER FIVE
I WAS STANDING ON my balcony on the fourteenth floor of the Palestine Hotel when I saw the first plume of smoke emerge on the horizon like a black snake rising up from the desert. I thought a fire was roaring out of control about five miles away from me in the northern part of the city. It was mid-afternoon and the smoke was billowing hundreds of feet into the blue cloudless sky.
US and British forces had already dropped dozens of bombs around the edges of Baghdad that day, creating a steady pounding sound. Unlike the bombs that occasionally fell close to the Palestine, the distant explosions didn't crackle or snap or shake the hotel. Instead, they sang in deep bass tones, like fists punching a slab of beef.
I assumed the smoke was spewing from an Iraqi building, munitions dump or fuel depot that had been turned into a smoldering parking lot and didn't worry about it too much. In less than a week, my tolerance for fires and explosions had grown to alarming proportions. I would no longer telephone the ABC News desk every time the bombings started. I would have been on the sat phone all day long. The air raids would start, stop and start again all day and night. I was surprised at how quickly I'd become accustomed to the air campaign and the war in general. I'd seen Israelis and Palestinians both quickly acclimate to an environment of extreme violence, but until it happened to me, I didn't quite understand how easy it was. The last time I'd seen it was a year earlier among Palestinian boys in the West Bank.
In March 2002, the Israeli army launched Operation Defensive Shield in response to the horrific Passover-night suicide attack in Netanya near Tel Aviv. Not only was it the bloodiest suicide attack yet of the new Palestinian intifada but it was carried out on a Jewish holiday. Israel had to respond.
Operation Defensive Shield, however, was only defensive to those who believe that a strong offense is the best defense. Within days of its outset, the campaign grew into the largest military operation in the Palestinian territories since the 1967 Middle East War. Israeli troops recaptured every major city on the West Bank except for the tiny oasis of Jericho, which was already isolated from Israel by a deep valley and desert. Scores of Palestinians were killed each day, as were many Israeli soldiers, especially in the northern West Bank city of Jenin, where Palestinians accused Israeli forces of a massacre after they leveled a section of the city while people were still in their homes. Israel subsequently blocked a UN investigating team from carrying out fieldwork in the area. In response to Operation Defensive | redpajama | [
3927,
1223,
352,
369,
9256,
326,
369,
2820,
281,
4489,
253,
22964,
273,
697,
1211,
5621,
15,
187,
187,
510,
5553,
671,
15212,
530,
1201,
42795,
42376,
347,
3981,
13,
346,
783,
26283,
285,
14431,
273,
1110,
7108,
665,
3819,
441,
588,
3501,
2614,
3185,
273,
12330,
15,
1583,
943,
417,
22830,
326,
597,
588,
452,
247,
4999,
6308,
3304,
9256,
390,
3345,
273,
352,
1476,
309,
13876,
2139,
344,
753,
13,
346,
263,
3345,
273,
352,
449,
12349,
344,
18844,
19227,
32,
187,
187,
4553,
12108,
3153,
44021,
323,
1199,
273,
253,
4131,
285,
9055,
323,
795,
8620,
25565,
3968,
8291,
309,
12860,
281,
253,
48595,
8565,
281,
923,
36250,
15,
309,
3078,
281,
1056,
2119,
344,
369,
1335,
627,
15,
7820,
309,
3047,
1503,
2320,
274,
7063,
327,
247,
21985,
275,
253,
16612,
15,
187,
187,
3,
1276,
403,
368,
2509,
1060,
865,
309,
29273,
387,
779,
15,
346,
42,
1353,
10054,
368,
281,
320,
387,
253,
8614,
2,
6049,
2010,
858,
309,
755,
368,
247,
2316,
865,
187,
187,
3,
42,
1904,
626,
1158,
368,
3058,
479,
10542,
15,
309,
6468,
626,
3735,
432,
368,
275,
767,
1897,
937,
344,
753,
13,
18253,
4351,
15,
187,
187,
3,
1898,
368,
1912,
626,
4089,
432,
479,
15,
1876,
309,
971,
368,
281,
513,
310,
3297,
627,
15,
3771,
1790,
627,
275,
1083,
309,
878,
368,
15,
2615,
626,
368,
513,
326,
865,
187,
187,
59,
2320,
274,
8796,
264,
521,
11233,
13,
17892,
521,
1481,
13,
285,
1499,
3938,
562,
751,
247,
660,
28102,
1429,
347,
309,
31653,
779,
896,
281,
521,
8614,
15,
380,
40677,
9577,
253,
3369,
275,
271,
17433,
73,
4580,
672,
359,
2692,
598,
15,
309,
4571,
626,
13624,
253,
41236,
327,
521,
6345,
13,
533,
309,
812,
923,
521,
3998,
17120,
3212,
521,
11870,
3926,
1938,
2927,
15,
1244,
436,
369,
581,
273,
619,
4999,
9910,
15,
187,
187,
42,
20906,
896,
281,
253,
29313,
281,
1265,
12108,
323,
326,
2360,
434,
44021,
15,
309,
3589,
626,
27185,
387,
436,
3924,
407,
253,
2137,
15,
496,
958,
13,
309,
369,
4443,
744,
2348,
407,
253,
806,
767,
15513,
15,
309,
1869,
326,
604,
752,
309,
1871,
2326,
369,
512,
253,
1982,
574,
275,
2564,
323,
253,
2137,
13,
309,
1871,
644,
29124,
1512,
1199,
15,
187,
187,
31,
6258,
9064,
1128,
2809,
825,
285,
329,
664,
313,
18489,
3307,
13,
17272,
10,
50276,
187,
31,
50275,
187,
31,
209,
187,
31,
209,
187,
31,
733,
369,
3578,
2069,
253,
7133,
273,
253,
806,
767,
15513,
15,
380,
21131,
2570,
327,
253,
8935,
1930,
273,
253,
8281,
13,
1219,
14,
44,
284,
83,
355,
14,
43,
360,
73,
11317,
13,
369,
38737,
15,
309,
812,
1928,
253,
4250,
285,
5448,
273,
253,
787,
9346,
1411,
619,
2454,
15,
309,
1849,
4783,
1264,
1897,
2761,
1293,
4600,
15,
309,
1849,
644,
327,
2329,
2761,
2164,
3038,
247,
1388,
15,
8853,
8075,
432,
253,
2315,
4055,
452,
644,
1469,
949,
253,
8614,
2819,
323,
2206,
15169,
15,
309,
1353,
7562,
7477,
762,
253,
3722,
15,
733,
3543,
751,
271,
27108,
672,
253,
24401,
497,
18752,
15,
11376,
2716,
273,
253,
18680,
21567,
275,
253,
17824,
30854,
15,
380,
24401,
497,
10805,
581,
846,
1529,
15,
733,
369,
751,
25033,
16116,
253,
3216,
13,
253,
35959,
273,
23077,
285,
7728,
316,
9370,
1981,
342,
42554,
15,
187,
187,
4509,
619,
591,
348,
352,
3261,
281,
479,
347,
604,
512,
273,
17207,
39759,
369,
1146,
11069,
15,
1707,
369,
642,
12334,
275,
253,
8467,
313,
783,
2329,
4544,
369,
37282,
281,
3135,
342,
253,
747,
12334,
281,
4017,
1411,
3270,
14,
1094,
12517,
3289,
10,
285,
352,
369,
247,
9670,
2590,
2806,
2360,
13,
534,
1160,
253,
42554,
1462,
562,
275,
29990,
4499,
15,
380,
24401,
574,
644,
2810,
2217,
326,
309,
812,
1928,
616,
3511,
5448,
285,
253,
17916,
10212,
24294,
896,
619,
4707,
285,
10184,
253,
2329,
562,
273,
619,
18926,
15,
187,
187,
510,
2862,
10439,
4310,
273,
253,
2846,
835,
2208,
28099,
2246,
497,
4441,
369,
4352,
407,
752,
4455,
751,
23499,
24401,
285,
26603,
28665,
15,
309,
9047,
253,
2170,
15529,
275,
3168,
11283,
15,
733,
3261,
347,
604,
39759,
497,
1146,
22186,
407,
247,
9005,
15,
309,
2550,
23668,
366,
849,
35247,
352,
369,
15,
309,
1869,
2716,
253,
2846,
369,
1146,
42394,
13,
1268,
264,
13,
17527,
15,
187,
187,
3039,
309,
13082,
432,
253,
8614,
253,
1735,
4131,
13,
309,
3543,
751,
309,
1871,
644,
562,
512,
2360,
10678,
13,
12759,
715,
247,
2534,
3819,
13,
30069,
4266,
13,
13878,
1025,
619,
3858,
285,
924,
16970,
247,
40677,
15,
309,
369,
246,
24042,
1077,
19679,
13,
11926,
253,
1533,
369,
846,
479,
15,
2752,
9246,
497,
5075,
285,
309,
369,
327,
619,
1682,
3879,
13,
751,
247,
1429,
2820,
281,
3693,
14232,
15,
309,
1904,
626,
971,
281,
320,
7270,
15,
309,
1904,
626,
971,
281,
320,
2326,
15,
309,
1904,
626,
871,
752,
309,
1871,
1089,
275,
39759,
326,
4131,
13,
390,
752,
281,
1333,
281,
253,
952,
309,
1313,
15,
309,
1904,
626,
871,
604,
627,
497,
8307,
13,
390,
1014,
6763,
13,
273,
952,
665,
1871,
644,
5339,
13463,
15,
187,
187,
42,
369,
10260,
24192,
281,
1089,
14355,
6179,
323,
479,
30854,
275,
253,
8614,
16612,
342,
5352,
10238,
13,
14709,
285,
12173,
15,
754,
369,
24678,
11874,
15,
754,
671,
574,
253,
4131,
18930,
275,
1133,
15,
309,
369,
47096,
326,
597,
1871,
7303,
281,
1705,
562,
15,
733,
369,
247,
861,
326,
39759,
369,
1335,
6306,
15,
380,
18930,
651,
4035,
281,
320,
3863,
1919,
253,
1390,
1388,
273,
253,
2137,
15,
1284,
359,
12668,
1475,
309,
369,
33575,
407,
849,
1652,
4723,
309,
812,
2686,
923,
15,
309,
1871,
3264,
39759,
281,
452,
2489,
247,
5497,
790,
68,
2259,
15,
12090,
9195,
574,
644,
3777,
281,
8660,
13,
285,
954,
273,
253,
8323,
275,
253,
17207,
2170,
497,
34994,
13,
533,
253,
2846,
369,
1335,
43455,
15,
187,
187,
42,
12668,
2469,
2067,
11265,
23261,
326,
574,
644,
3777,
281,
924,
4486,
272,
19607,
273,
1531,
360,
6216,
11859,
342,
8862,
30151,
273,
29491,
14203,
432,
18935,
10194,
35221,
8965,
15,
5595,
273,
253,
12536,
13,
2299,
13,
574,
2668,
1659,
3212,
253,
1029,
8099,
273,
12674,
5796,
1951,
285,
3988,
7006,
13,
534,
574,
2668,
271,
14331,
18019,
15,
187,
187,
25131,
369,
625,
36712,
685,
344,
1339,
327,
15,
754,
2183,
479,
247,
26603,
22822,
574,
594,
1096,
689,
521,
2419,
15,
754,
1871,
9047,
352,
564,
18332,
15,
187,
187,
25131,
434,
4651,
574,
18436,
39759,
326,
4131,
281,
3297,
342,
17772,
275,
247,
10151,
11393,
7773,
15,
187,
187,
4553,
9100,
253,
9055,
32380,
13,
309,
2546,
253,
2990,
323,
247,
1643,
3038,
745,
15,
309,
3058,
281,
4822,
619,
7906,
13,
6008,
247,
1463,
11484,
285,
17279,
459,
14355,
326,
309,
5082,
626,
9488,
779,
15,
309,
2335,
14355,
281,
1503,
2320,
274,
434,
7583,
10301,
13,
253,
581,
309,
12659,
323,
697,
346,
52,
1952,
336,
3,
285,
9386,
795,
76,
276,
9877,
3333,
309,
1904,
626,
1902,
281,
1089,
3780,
3304,
13,
533,
253,
1659,
369,
716,
358,
272,
342,
6383,
15,
380,
1481,
14061,
254,
574,
281,
1007,
281,
1089,
441,
247,
2829,
275,
253,
896,
15,
187,
187,
6175,
359,
497,
9123,
13,
253,
2329,
4544,
3053,
598,
323,
253,
806,
673,
1309,
253,
1388,
15,
309,
812,
4089,
253,
24511,
272,
273,
253,
1943,
3289,
7083,
471,
398,
285,
28665,
10805,
13,
25473,
9195,
285,
3253,
275,
731,
15,
1292,
642,
581,
275,
253,
10301,
892,
39012,
15,
309,
3597,
281,
2770,
327,
253,
1547,
273,
16072,
3551,
432,
643,
7180,
15,
6491,
10345,
626,
1014,
5015,
670,
253,
2137,
40132,
1475,
731,
15,
733,
369,
247,
27541,
2774,
15,
40985,
1768,
497,
1414,
4442,
1475,
441,
846,
247,
2360,
273,
253,
954,
13103,
2329,
18200,
9256,
574,
2455,
1929,
13,
253,
2208,
369,
762,
2983,
13,
2448,
10824,
497,
26441,
2584,
253,
5347,
13,
2568,
952,
497,
10000,
278,
3204,
272,
327,
9132,
13,
10238,
285,
1547,
19530,
13,
16907,
38611,
784,
281,
352,
512,
15,
187,
187,
42,
1158,
253,
12046,
369,
253,
906,
273,
253,
12264,
14977,
9256,
261,
574,
644,
12021,
281,
1309,
253,
8007,
273,
42795,
42376,
434,
3731,
15093,
15,
9256,
261,
574,
644,
594,
20698,
1066,
326,
597,
1871,
2489,
6861,
22809,
13,
751,
1110,
28090,
1832,
309,
1871,
14494,
342,
331,
4420,
751,
16154,
327,
2471,
4194,
15,
496,
9256,
13,
352,
369,
2783,
440,
44001,
3875,
281,
4366,
253,
2137,
13,
285,
44331,
528,
281,
2319,
352,
13,
1339,
3815,
30821,
670,
253,
6454,
15,
733,
369,
23107,
281,
816,
22830,
417,
281,
4366,
752,
369,
1469,
327,
13,
1978,
634,
1481,
1066,
13,
285,
3343,
323,
253,
9902,
281,
8230,
689,
15,
309,
1119,
352,
1077,
8872,
281,
923,
752,
1107,
273,
39710,
1456,
476,
513,
281,
253,
1966,
7765,
15,
187,
187,
4,
32204,
401,
11477,
187,
187,
42,
22250,
3915,
5543,
2637,
8160,
619,
36009,
327,
253,
1740,
16565,
5254,
273,
253,
29313,
14469,
672,
309,
3047,
253,
806,
499,
2123,
273,
11283,
20177,
327,
253,
16892,
751,
247,
2806,
24980,
11002,
598,
432,
253,
13438,
15,
309,
1869,
247,
3289,
369,
687,
1875,
562,
273,
1453,
670,
2620,
6574,
1977,
432,
479,
275,
253,
11186,
629,
273,
253,
2846,
15,
733,
369,
4260,
14,
6438,
8396,
285,
253,
11283,
369,
6007,
23581,
8307,
273,
4669,
715,
253,
4797,
9005,
1417,
8467,
15,
187,
187,
3016,
285,
4782,
5621,
574,
2168,
8231,
18660,
273,
24401,
1475,
253,
9297,
273,
39759,
326,
1388,
13,
6153,
247,
11792,
39883,
3590,
15,
16513,
253,
24401,
326,
13949,
6497,
2810,
281,
253,
29313,
13,
253,
13392,
42554,
1904,
626,
9370,
282,
390,
14496,
390,
17941,
253,
8614,
15,
7820,
13,
597,
21758,
275,
3676,
16819,
28232,
13,
751,
42109,
18750,
272,
247,
33864,
273,
17645,
15,
187,
187,
42,
8025,
253,
11283,
369,
705,
7706,
432,
271,
24923,
3652,
13,
46131,
4431,
13725,
390,
7236,
1305,
302,
326,
574,
644,
3531,
715,
247,
924,
4486,
272,
12102,
2257,
285,
1904,
626,
7664,
670,
352,
1512,
1199,
15,
496,
1679,
685,
247,
2129,
13,
619,
13761,
323,
19333,
285,
42554,
574,
8228,
281,
40975,
22260,
15,
309,
651,
642,
3356,
11265,
253,
15599,
6317,
8597,
1046,
673,
253,
10110,
723,
3053,
15,
309,
651,
452,
644,
327,
253,
2206,
4481,
512,
1388,
1048,
15,
380,
2329,
39395,
651,
1265,
13,
3523,
285,
1265,
969,
512,
1388,
285,
2360,
15,
309,
369,
9861,
387,
849,
4541,
309,
1871,
2489,
30795,
281,
253,
2329,
4544,
285,
253,
2137,
275,
2087,
15,
309,
1871,
2326,
40968,
285,
28072,
1097,
4541,
48364,
2542,
281,
271,
3126,
273,
9559,
7217,
13,
533,
1919,
352,
4592,
281,
479,
13,
309,
1904,
626,
3240,
2096,
849,
3477,
352,
369,
15,
380,
1390,
673,
309,
1871,
2326,
352,
369,
247,
807,
4321,
2190,
19018,
8290,
275,
253,
4255,
6022,
15,
187,
187,
688,
3919,
6752,
13,
253,
13389,
8544,
10098,
24636,
3366,
3134,
29109,
275,
2380,
281,
253,
41485,
11271,
1189,
14,
6170,
13184,
2983,
275,
5357,
32028,
2822,
21123,
47945,
15,
3105,
760,
369,
352,
253,
2614,
10558,
13184,
2983,
2568,
273,
253,
747,
19018,
540,
338,
2960,
533,
352,
369,
4824,
562,
327,
247,
9556,
13319,
15,
5143,
574,
281,
3794,
15,
187,
187,
17547,
3366,
3134,
29109,
13,
2299,
13,
369,
760,
14397,
281,
1110,
665,
2868,
326,
247,
2266,
8399,
310,
253,
1682,
5684,
15,
15092,
1897,
273,
697,
35681,
13,
253,
4544,
8899,
715,
253,
6253,
4668,
4254,
275,
253,
19018,
26949,
1580,
253,
17342,
10515,
5791,
3660,
15,
13389,
10824,
48928,
1520,
1046,
2201,
2846,
327,
253,
4255,
6022,
3707,
323,
253,
10058,
258,
4914,
273,
5633,
469,
80,
13,
534,
369,
2168,
7011,
432,
5143,
407,
247,
3676,
17836,
285,
13438,
15,
1810,
2324,
273,
28072,
497,
5339,
1016,
1388,
13,
347,
497,
1142,
13389,
9647,
13,
3340,
275,
253,
11186,
4255,
6022,
2846,
273,
18854,
249,
13,
835,
28072,
10145,
13389,
5621,
273,
247,
36103,
846,
597,
1268,
264,
247,
2593,
273,
253,
2846,
1223,
952,
497,
1335,
275,
616,
9076,
15,
5143,
9674,
13230,
247,
7379,
15686,
2285,
432,
8785,
562,
1673,
1601,
275,
253,
2170,
15,
496,
2380,
281,
24636,
3366,
3134
] |
Q: PHP Echo Styling output <?php
if (in_array($key,$following)){
echo'<form id="follow" action= "action.php" method="GET" data-theme="a">
<input type="hidden" name="id" value="$key"/>
<input type="submit" name="do" value="follow" data-theme="a"/>
</form>';
?>
I am trying to style this echo section. I have it outputting to another PHP file that is framed in HTML div tags. How would I go about this? I have everything else on the page styled correctly except for this output.
Edit** I edited the code, that's a form. But anyway, I have another php file that is referencing this php code and on the 2nd php file it is wrapped in html and the div tag on that page shows the echo from this page but I can't get the css to work on that other file. And I have tried #follow. no luck.
A: create your own function:
function myecho($text){
echo "<div class='your_css_class'>".$text."</div>";
}
And when you want to echo something just write myecho("my message");
<|endoftext|>Q: How to disable(not-clickable) some of the items from popup window i have popupwindow in every items for recylcerview,but i want to disable some options from popupwindow depending upon the items in recyclerview.
user should be able to see but not able to click.
public void bind(Card addCard) { // onBind method of recylerview
popupWindow = getPopupWindow(addCard);
}
public void onClick(View v) { // added onclick on image (item of recylcerview)
if (popupWindow!= null) {
popupWindow.showAsDropDown(v, 0, 0);
popupWindow.showAtLocation(v, Gravity.NO_GRAVITY, -20, -10);
}
}
public PopupWindow getPopupWindow(Card addCard) {
String popUpContents[] = {"edit", "archive", "delete", "share"};
final PopupWindow popupWindow = new PopupWindow(context);
ListView listOptions = new ListView(context);
listOptions.setDivider(null);
listOptions.setDividerHeight(0);
listOptions.setAdapter(listOptionsAdapter(popUpContents, addCard));
listOptions.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Card card = (Card) view.getTag();
switch (position) {
case 0:
cardsFragment.editCard(card);
popupWindow.dismiss();
break;
case 1:
cardsFragment.archiveCard(card);
popupWindow.dismiss();
break;
case 2:
cardsFragment.deleteCard(card);
popupWindow.dismiss();
break;
case 3:
cardsFragment.shareCard();
popupWindow.dismiss();
break;
}
}
});
// some other visual settings
popupWindow.setFocusable(true);
popupWindow.setWidth(250);
popupWindow.setHeight(WindowManager.LayoutParams.WRAP_CONTENT);
popupWindow.setOutsideTouchable(true);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
popupWindow.setElevation(10);
}
// set the list view as pop up window content
popupWindow.setContentView(listOptions);
Drawable d = new ColorDrawable(Color.WHITE);
popupWindow.setBackgroundDrawable(d);
return popupWindow;
}
private ArrayAdapter<String> listOptionsAdapter(final String listoptions[], final Card addCard) {
ArrayAdapter<String> adapter = new ArrayAdapter<String>(context, android.R.layout.simple_list_item_1, listoptions) {
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// setting the ID and text for every items in the list
String item = getItem(position);
// visual settings for the list item
TextView listItem = new TextView(context);
listItem.setTextColor(Color.BLACK);
listItem.setText(item);
listItem.setTag(addCard);
listItem.setTextSize(20);
if (position == 0) {
listItem.setPadding(30, 20, 0, 20);
} else {
listItem.setPadding(30, 0, 0, 20);
}
if (addCard.isArchived) {
if (position == 0 || position == 1 || position == 3) {
listItem.setEnabled(false); // this one i have tried to disable click on certain items but not working
}
}
return listItem;
}
@Override
public int getCount() {
return listoptions.length;
}
};
return adapter;
}
for Ex : if card if Archived i want to disable options like "edit, archive, share" below code i have tried but not working :
if (addCard.isArchived) {
if (position == 0 || position == 1 || position == 3) {
listItem.setEnabled(false); // this one i have tried to disable click on certain items but not working
}
}
<|endoftext|>This is a list of Brazilian television related events from 2004.
Events
6 April - Cida dos Santos wins the fourth season of Big Brother Brasil.
Debuts
Television shows
1970s
Turma da Mônica (1976–present)
1990s
Malhação (1995–present)
Cocoricó (1996–present)
2000s
Sítio do Picapau Amarelo (2001–2007)
Big Brother Brasil (2002–present)
FAMA (2002-2005)
Ending this year
Births
Deaths
See also
2004 in Brazil
List of Brazilian films of 2004<|endoftext|>The Kwara State House of Assembly on Thursday passed 2019 Appropriation Bill of N157.8 billion.
The News Agency of Nigeria reports that the budget was 0.19 per cent higher than N157.5 billion presented to the House by Governor AbdulFatah Ahmed on December 6.
The capital expenditure of the budget is now N79.5 billion as against N79.7 billion proposed by the governor, representing 50.44 per cent of the total budget.
The recurrent expenditure is put at N71.1 billion from N70.6 billion, representing 49.56 per cent of the total budget.
As required law, the sum of N1.2 billion was allocated as one per cent of the state Consolidated Revenue Fund to the State Health Insurance Scheme.
The measure, the News Agency of Nigeria reports, will ensure accessibility of residents to qualitative healthcare delivery.
The Speaker, Dr. Ali Ahmad, directed the Clerk of the House, Hajia Halimat Kperogi, to prepare a clean copy of the budget for governor’s assent.
Ahmad explained that with the passage of the budget, the house had demonstrated its commitment and high sense of patriotism.
He, however, expressed displeasure of non-funding of the audit unit by the state government.<|endoftext|>The SPf66 vaccine was one of the first malaria vaccines to be tested extensively in endemic areas. SPf66 is a synthetic peptide vaccine containing antigens from the blood stages of malaria linked together with an antigen from the sporozoite stage. SPf66 has had 10 trials in Africa, Asia, and South America. Results were initially promising, but further trials showed only a small effect in some trials, and no effect in Africa. There is no evidence that SPf66 is effective enough to be introduced on a routine basis for prevention of malaria.
There is no evidence for protection by SPf66 vaccines against P. falciparum in Africa. There is a modest reduction in attacks of P. falciparum malaria following vaccination with SPf66 in South America. There is no justification for further trials of SPf66 in its current formulation. Further research with SPf66 vaccines in South America or with new formulations of SPf66 may be justified.
A malaria vaccine is badly needed. SPf66 was one of the earliest vaccines developed. It is a synthetic peptide vaccine containing antigens from the blood stages of malaria linked together with an antigen from the sporozoite stage, and is targeted mainly against the blood (asexual) stages.
To assess the effect of SPf66 malaria vaccines against Plasmodium falciparum, P. vivax, P. malariae, and P. ovale in preventing infection, disease, and death.
We searched the Cochrane Infectious Diseases Group Specialized Register (March 2008), CENTR | redpajama | [
50,
27,
14741,
40443,
31297,
1981,
3453,
17987,
5581,
187,
338,
313,
249,
64,
3728,
3914,
2364,
12063,
34814,
47881,
187,
50270,
13088,
686,
654,
630,
2654,
568,
25739,
3,
2250,
30,
346,
1913,
15,
5581,
3,
1332,
568,
9278,
3,
941,
14,
24326,
568,
66,
1138,
187,
50270,
29,
5423,
1511,
568,
19057,
3,
1416,
568,
301,
3,
1318,
31462,
2364,
5647,
187,
50270,
29,
5423,
1511,
568,
21399,
3,
1416,
568,
3088,
3,
1318,
568,
25739,
3,
941,
14,
24326,
568,
66,
5647,
187,
870,
630,
37471,
187,
187,
28391,
187,
187,
42,
717,
2820,
281,
3740,
436,
7392,
2593,
15,
50276,
42,
452,
352,
3453,
1076,
281,
1529,
14741,
1873,
326,
310,
29318,
275,
11685,
2017,
14610,
15,
50276,
2347,
651,
309,
564,
670,
436,
32,
50276,
42,
452,
3253,
2010,
327,
253,
3239,
49879,
9113,
3707,
323,
436,
3453,
15,
187,
13904,
424,
309,
16168,
253,
2127,
13,
326,
434,
247,
830,
15,
50276,
1989,
8791,
13,
309,
452,
1529,
21293,
1873,
326,
310,
44978,
436,
21293,
2127,
285,
327,
253,
374,
2109,
21293,
1873,
352,
310,
15312,
275,
14271,
285,
253,
2017,
6809,
327,
326,
3239,
2722,
253,
7392,
432,
436,
3239,
533,
309,
476,
626,
755,
253,
30689,
281,
789,
327,
326,
643,
1873,
15,
1244,
309,
452,
3597,
1852,
25739,
15,
642,
7516,
15,
187,
187,
34,
27,
2794,
634,
1211,
1159,
27,
187,
3701,
619,
13088,
3914,
1156,
910,
187,
50274,
13088,
16375,
2154,
966,
5473,
12550,
64,
9016,
64,
2437,
16262,
3446,
5,
1156,
449,
870,
2154,
27988,
187,
94,
187,
187,
1898,
672,
368,
971,
281,
7392,
1633,
816,
3630,
619,
13088,
1587,
2577,
3935,
3287,
187,
50279,
50,
27,
1359,
281,
19495,
9,
1439,
14,
9738,
494,
10,
690,
273,
253,
4957,
432,
44343,
3497,
891,
452,
44343,
13686,
275,
1046,
4957,
323,
761,
1190,
68,
677,
827,
1157,
2858,
891,
971,
281,
19495,
690,
4610,
432,
44343,
13686,
7293,
2220,
253,
4957,
275,
18490,
677,
827,
15,
187,
4537,
943,
320,
2104,
281,
923,
533,
417,
2104,
281,
5532,
15,
187,
50273,
4387,
2991,
8980,
9,
18497,
823,
18497,
10,
551,
50276,
605,
327,
29008,
1332,
273,
761,
1190,
677,
827,
187,
50274,
47661,
12205,
426,
755,
14918,
484,
12205,
9,
1911,
18497,
558,
187,
94,
187,
187,
4387,
2991,
39144,
9,
3145,
362,
10,
551,
50276,
605,
2879,
35254,
327,
2460,
313,
4835,
273,
761,
1190,
68,
677,
827,
10,
535,
50274,
338,
313,
47661,
12205,
3613,
3635,
10,
551,
187,
50270,
47661,
12205,
15,
9029,
1909,
24475,
10854,
9,
87,
13,
470,
13,
470,
558,
187,
50270,
47661,
12205,
15,
9029,
3404,
11930,
9,
87,
13,
29130,
414,
15,
7716,
64,
40,
5214,
55,
7400,
13,
428,
938,
13,
428,
740,
558,
187,
50274,
94,
187,
94,
535,
187,
4387,
12278,
484,
12205,
755,
14918,
484,
12205,
9,
18497,
823,
18497,
10,
551,
535,
50274,
2776,
1684,
5683,
29617,
5456,
426,
17579,
15576,
995,
346,
22477,
995,
346,
16435,
995,
346,
18316,
13334,
535,
50274,
13017,
12278,
484,
12205,
44343,
12205,
426,
747,
12278,
484,
12205,
9,
8882,
558,
535,
50274,
43454,
1618,
10976,
426,
747,
5552,
3145,
9,
8882,
558,
187,
50274,
3550,
10976,
15,
1178,
15187,
1334,
9,
8629,
558,
187,
50274,
3550,
10976,
15,
1178,
15187,
1334,
13881,
9,
17,
558,
535,
50274,
3550,
10976,
15,
1178,
16930,
9,
3550,
10976,
16930,
9,
9576,
5683,
29617,
13,
823,
18497,
4027,
535,
50274,
3550,
10976,
15,
1178,
2374,
5475,
34187,
9,
1826,
2006,
3758,
3145,
15,
2374,
5475,
34187,
1082,
551,
187,
50270,
33,
9677,
187,
50270,
4387,
2991,
327,
5475,
7146,
9,
16930,
3145,
14277,
31,
2885,
13,
9182,
1859,
13,
540,
1899,
13,
1048,
2654,
10,
551,
187,
50266,
18497,
3120,
426,
313,
18497,
10,
1859,
15,
788,
12547,
1874,
535,
50266,
16065,
313,
3321,
10,
551,
187,
50262,
5045,
470,
27,
187,
50258,
35817,
24054,
15,
15576,
18497,
9,
9290,
558,
187,
50258,
47661,
12205,
15,
37106,
1874,
187,
50258,
7054,
28,
187,
50262,
5045,
337,
27,
187,
50258,
35817,
24054,
15,
22477,
18497,
9,
9290,
558,
187,
50258,
47661,
12205,
15,
37106,
1874,
187,
50258,
7054,
28,
187,
50262,
5045,
374,
27,
187,
50258,
35817,
24054,
15,
16435,
18497,
9,
9290,
558,
187,
50258,
47661,
12205,
15,
37106,
1874,
187,
50258,
7054,
28,
187,
50262,
5045,
495,
27,
187,
50258,
35817,
24054,
15,
18316,
18497,
1874,
187,
50258,
47661,
12205,
15,
37106,
1874,
187,
50258,
7054,
28,
187,
50266,
94,
187,
50270,
94,
187,
50274,
9897,
535,
50274,
605,
690,
643,
5304,
7533,
187,
50274,
47661,
12205,
15,
1178,
26078,
494,
9,
5672,
558,
187,
50274,
47661,
12205,
15,
1178,
12175,
9,
9519,
558,
187,
50274,
47661,
12205,
15,
1178,
13881,
9,
12205,
8224,
15,
9683,
18246,
15,
10690,
2088,
64,
34053,
3489,
558,
187,
50274,
47661,
12205,
15,
1178,
42983,
29330,
494,
9,
5672,
558,
187,
50274,
338,
313,
10987,
15,
17037,
15,
45007,
64,
7999,
10122,
11103,
15,
17037,
64,
36,
3519,
1410,
15,
8372,
2293,
3123,
2795,
10,
551,
187,
50270,
47661,
12205,
15,
1178,
30377,
15357,
9,
740,
558,
187,
50274,
94,
187,
50274,
605,
873,
253,
1618,
1859,
347,
1684,
598,
3497,
2600,
187,
50274,
47661,
12205,
15,
1178,
8590,
3145,
9,
3550,
10976,
558,
187,
50274,
14410,
494,
277,
426,
747,
9472,
14410,
494,
9,
6573,
15,
8835,
12752,
558,
187,
50274,
47661,
12205,
15,
1178,
15633,
14410,
494,
9,
69,
558,
187,
50274,
2309,
44343,
12205,
28,
187,
94,
187,
187,
9486,
11782,
16930,
29,
2776,
31,
1618,
10976,
16930,
9,
13017,
4605,
1618,
10121,
60,
1092,
2457,
9858,
823,
18497,
10,
551,
535,
50274,
6542,
16930,
29,
2776,
31,
23675,
426,
747,
11782,
16930,
29,
2776,
8743,
8882,
13,
4959,
15,
51,
15,
7916,
15,
19583,
64,
3550,
64,
4835,
64,
18,
13,
1618,
10121,
10,
551,
187,
50270,
33,
9677,
187,
50270,
4387,
9182,
755,
3145,
9,
565,
1899,
13,
9182,
6455,
3145,
13,
9182,
6998,
2885,
10,
551,
535,
50266,
605,
4758,
253,
5417,
285,
2505,
323,
1046,
4957,
275,
253,
1618,
187,
50266,
2776,
5382,
426,
755,
5475,
9,
3321,
558,
535,
50266,
605,
5304,
7533,
323,
253,
1618,
5382,
187,
50266,
30288,
1618,
5475,
426,
747,
10318,
3145,
9,
8882,
558,
187,
50266,
3550,
5475,
15,
32256,
6573,
9,
6573,
15,
5993,
8100,
558,
187,
50266,
3550,
5475,
15,
32256,
9,
4835,
558,
187,
50266,
3550,
5475,
15,
1178,
12547,
9,
1911,
18497,
558,
187,
50266,
3550,
5475,
15,
32256,
5496,
9,
938,
558,
187,
50266,
338,
313,
3321,
2295,
470,
10,
551,
187,
50262,
3550,
5475,
15,
1178,
45565,
9,
1229,
13,
1384,
13,
470,
13,
1384,
558,
187,
50266,
94,
2010,
551,
187,
50262,
3550,
5475,
15,
1178,
45565,
9,
1229,
13,
470,
13,
470,
13,
1384,
558,
187,
50266,
94,
187,
50266,
338,
313,
1911,
18497,
15,
261,
18551,
1567,
10,
551,
187,
50262,
338,
313,
3321,
2295,
470,
2785,
1899,
2295,
337,
2785,
1899,
2295,
495,
10,
551,
187,
50258,
3550,
5475,
15,
1178,
19157,
9,
7750,
558,
50276,
605,
436,
581,
891,
452,
3597,
281,
19495,
5532,
327,
2176,
4957,
533,
417,
2444,
187,
50262,
94,
187,
50266,
94,
535,
50266,
2309,
1618,
5475,
28,
187,
50270,
94,
535,
50270,
33,
9677,
187,
50270,
4387,
540,
755,
6878,
1082,
551,
187,
50266,
2309,
1618,
10121,
15,
3985,
28,
187,
50270,
94,
187,
50274,
4718,
535,
50274,
2309,
23675,
28,
187,
94,
187,
187,
1542,
1889,
1163,
604,
3120,
604,
7984,
1567,
891,
971,
281,
19495,
4610,
751,
346,
15576,
13,
21429,
13,
3894,
3,
2708,
2127,
891,
452,
3597,
533,
417,
2444,
1163,
187,
338,
313,
1911,
18497,
15,
261,
18551,
1567,
10,
551,
187,
50262,
338,
313,
3321,
2295,
470,
2785,
1899,
2295,
337,
2785,
1899,
2295,
495,
10,
551,
187,
50258,
3550,
5475,
15,
1178,
19157,
9,
7750,
558,
50276,
605,
436,
581,
891,
452,
3597,
281,
19495,
5532,
327,
2176,
4957,
533,
417,
2444,
187,
50262,
94,
187,
50266,
94,
535,
50279,
1552,
310,
247,
1618,
273,
24110,
7315,
2905,
3394,
432,
6157,
15,
187,
187,
24121,
187,
23,
4162,
428,
330,
4355,
9500,
40059,
14896,
253,
7002,
2952,
273,
7967,
14533,
46253,
15,
187,
187,
11735,
14298,
187,
187,
46776,
2722,
187,
187,
20686,
84,
187,
23992,
785,
4204,
353,
9837,
79,
3737,
313,
19813,
1253,
15068,
10,
187,
187,
13435,
84,
187,
17557,
3227,
7014,
313,
12731,
1253,
15068,
10,
187,
36,
406,
15937,
1954,
313,
12487,
1253,
15068,
10,
187,
187,
6914,
84,
187,
52,
23613,
900,
513,
20424,
522,
1952,
3052,
609,
4213,
313,
8971,
1253,
8602,
10,
187,
5178,
14533,
46253,
313,
10016,
1253,
15068,
10,
187,
39,
38022,
313,
10016,
14,
9204,
10,
187,
187,
7689,
272,
436,
807,
187,
187,
35,
12769,
84,
187,
187,
27888,
84,
187,
187,
5035,
671,
187,
9430,
275,
10869,
187,
2765,
273,
24110,
6590,
273,
6157,
50279,
510,
48601,
4595,
2418,
3995,
273,
14184,
327,
8216,
4817,
6247,
2051,
12341,
318,
7641,
273,
427,
15882,
15,
25,
6494,
15,
187,
510,
6317,
13677,
273,
23856,
5012,
326,
253,
7563,
369,
470,
15,
746,
591,
1399,
2169,
685,
427,
15882,
15,
22,
6494,
3559,
281,
253,
3995,
407,
15636,
39509,
39,
682,
73,
32787,
327,
4565,
721,
15,
187,
510,
5347,
26671,
273,
253,
7563,
310,
1024,
427,
2787,
15,
22,
6494,
347,
1411,
427,
2787,
15,
24,
6494,
4081,
407,
253,
14176,
13,
9999,
2456,
15,
2031,
591,
1399,
273,
253,
2264,
7563,
15,
187,
510,
18902,
26671,
310,
1691,
387,
427,
3677,
15,
18,
6494,
432,
427,
1967,
15,
23,
6494,
13,
9999,
7584,
15,
3208,
591,
1399,
273,
253,
2264,
7563,
15,
187,
1909,
2424,
1569,
13,
253,
2020,
273,
427,
18,
15,
19,
6494,
369,
18564,
347,
581,
591,
1399,
273,
253,
1375,
4563,
49999,
27464,
10980,
281,
253,
2418,
4775,
16541,
38339,
15,
187,
510,
2557,
13,
253,
6317,
13677,
273,
23856,
5012,
13,
588,
5416,
28092,
273,
8811,
281,
18276,
11723,
6742,
15,
187,
510,
26587,
13,
3196,
15,
14355,
39505,
13,
6828,
253,
28568,
273,
253,
3995,
13,
388,
1432,
571,
14449,
303,
255,
611,
468,
48000,
13,
281,
10347,
247,
4076,
3491,
273,
253,
7563,
323,
14176,
457,
84,
718,
290,
15,
187,
34,
35249,
5544,
326,
342,
253,
10056,
273,
253,
7563,
13,
253,
2419,
574,
5183,
697,
11847,
285,
1029,
3282,
273,
43371,
1204,
15,
187,
1328,
13,
2299,
13,
4469,
49852,
5849,
273,
1327,
14,
19431,
272,
273,
253,
23873,
3943,
407,
253,
1375,
2208,
15,
50279,
510,
9975,
71,
2526,
12538,
369,
581,
273,
253,
806,
19643,
21268,
281,
320,
5762,
18171,
275,
31401,
3672,
15,
9975,
71,
2526,
310,
247,
13506,
11541,
12538,
4508,
22240,
432,
253,
2614,
8661,
273,
19643,
7939,
2366,
342,
271,
11611,
432,
253,
24188,
36154,
614,
3924,
15,
9975,
71,
2526,
556,
574,
884,
7587,
275,
7531,
13,
10497,
13,
285,
3684,
3968,
15,
11279,
497,
8523,
12532,
13,
533,
2007,
7587,
2692,
760,
247,
1355,
1055,
275,
690,
7587,
13,
285,
642,
1055,
275,
7531,
15,
1707,
310,
642,
1941,
326,
9975,
71,
2526,
310,
3576,
2217,
281,
320,
5611,
327,
247,
10934,
3720,
323,
12212,
273,
19643,
15,
187,
2512,
310,
642,
1941,
323,
6055,
407,
9975,
71,
2526,
21268,
1411,
367,
15,
46777,
275,
7531,
15,
1707,
310,
247,
16453,
5141,
275,
8104,
273,
367,
15,
46777,
19643,
1563,
19640,
342,
9975,
71,
2526,
275,
3684,
3968,
15,
1707,
310,
642,
22861,
323,
2007,
7587,
273,
9975,
71,
2526,
275,
697,
1655,
15895,
15,
3840,
2561,
342,
9975,
71,
2526,
21268,
275,
3684,
3968,
390,
342,
747,
26850,
273,
9975,
71,
2526,
778,
320,
17285,
15,
187,
34,
19643,
12538,
310,
16426,
3058,
15,
9975,
71,
2526,
369,
581,
273,
253,
18353,
21268,
3715,
15,
733,
310,
247,
13506,
11541,
12538,
4508,
22240,
432,
253,
2614,
8661,
273,
19643,
7939,
2366,
342,
271,
11611,
432,
253,
24188,
36154,
614,
3924,
13,
285,
310,
10522,
7194,
1411,
253,
2614,
313,
511,
89,
780,
10,
8661,
15,
187,
1992,
2939,
253,
1055,
273,
9975,
71,
2526,
19643,
21268,
1411,
1847,
45049,
1514,
46777,
13,
367,
15,
25898,
991,
13,
367,
15,
19643,
70,
13,
285,
367,
15,
14246,
1079,
275,
13538,
5066,
13,
2728,
13,
285,
2471,
15,
187,
1231,
16113,
253,
40607,
49078,
784,
35852,
5901,
10396,
1025,
13106,
313,
18489,
4695,
582,
330,
1400,
3125
] |
class, I left my phone in the office. It's Friday and the building will be locked until Monday morning. FML
By notmyday - 25/02/2009 23:26 - United States
Today, we were fooling around and I was just about to orgasm when she looks at my clock and says "I have to go LOST is on in 20 minutes." FML
By Rob - 06/06/2012 16:02 - United States - Neoga
Today, after having sex with my girlfriend, I jokingly held the condom above my mouth. Somehow, the condom busted, and everything went over my face. Worse still, we're now wondering just how safe this condom really was. FML
Not now, Yoda
By iwassoclose - 10/04/2013 16:32 - United States
Today, I was having sex with my boyfriend, and I told him I was close to having an orgasm. He smirked and started talking like Yoda, saying, "Strong with the cum, this one is." Orgasm gone. FML
By jseid2 - 15/01/2014 05:54 - United States - San Leandro
Today, my students unanimously agreed, in front of me, that the only reason they take my course is to look at my ass. FML
By ohman - 28/12/2012 03:06 - United Kingdom - Cardiff
Today, after having sex for the first time with my girlfriend, I realised I was in love with her. I noticed she had an eyelash on her breast. After tugging it a few times I realised it was actually a single black nipple hair. She was so embarrassed, she kicked me out and now won't return my calls. FML
By ssenmodnaR - 27/07/2016 16:30
Today, I learned that I'm in that special kind of relationship where my ex thinks we're still married, no matter how many times I tell him that we were divorced over a year ago. FML
By Jacqueline H'ghar - 30/07/2016 08:56 - New Zealand
Today, I missed my bus to the doctor's office for my scheduled pap test. I was so desperate, I called my deadbeat mom to ask for a ride. She said "Virgins don't need pap tests", laughed, then hung up on me. FML
By LonnyLonnikins - 09/04/2009 05:07 - Canada
Today, I went to pick up my sister's wedding cake. It was a nice day, the shop was close, and the cake wasn't too big so I walked. On my way back, I stepped aside for a kid on a bike, tripped over my shoelaces, and dumped my sister's expensive, custom-designed cake. The wedding is tomorrow. FML
Scary story time!
By KelseNM - 01/11/2019 00:01
Today, I had eye surgery to try and stop the progression of my eye disease. Being conscious for the surgery, I was given numbing drops before we began. My doctor started cutting my cornea before the drops took effect. FML
By laurenraeee - 25/05/2010 05:18 - United States
Today, I saw a video of me from over the weekend, naked, pretending to be a duck. What the fuck happened that night? FML
By Anonymous - 09/02/2017 16:00 - United States - Lewistown
Today, I am sick of watching my friend's dog while she is on vacation. In four days, this dog has shredded my mattress, peed on my couches, chewed my kitchen chairs, and attacked my dog while she slept. My friend won't answer her phone, but she does update Facebook non-stop. Ten days to go. FML
Housemates from hell
Today, my housemate saw some stuff in the barn, thought I surely wouldn’t be using it, so he stacked lots of lawn furniture on top. The “stuff” in question? Bales of hay. As in, daily food for my horses. FML
By knock_out - 16/07/2010 01:12 - United States
Today, my girlfriend won't have sex with me. Why? Because my mii knocked out her mii in Wii boxing. It wouldn't be as bad if she wasn't in one player mode. FML
We were on a break!
Today, it's been two weeks since my girlfriend of many years and I decided to take a short break from each other. We'd been fighting a lot and felt like some space would help the situation. I found out today that, at some point during those two weeks, she decided to go and have sex with my (now ex) best friend. FML
By LC - 03/11/2009 07:06 - United States
Today, I volunteered to be Auctioned off for Charity. I went for $3. FML
By Gina - 02/04/2010 11:33 - Thailand
Today, I was in the shops and the lights all of a sudden went out. I got really scared for no reason because it was pitch black and grabbed onto my mum's hand. When the light's got turned on I was holding on to a random guy's hand. FML
DoubleCross 9
Sunday 6 January 2013 19:04
Then sue her
I_iz_B_a_troll 23
Well it's not her fault her floors weren't waterproof, she just wanted to turn the place into a waterpark! You'll be thanking her once she lends you the slip 'n' slide.
That's really stupid of her, she could in the least, claim responsible, and help pay for the damage if not all of it.
CanWeMicrowaveIt 11
It could not be her fault and just a burst water pipe. Just saying that's a possibility before everyone rants she's awful
havingalaugh 9
That's why you always get renters insurance!! You never know what someone else is going to do!
48Connor 10
Just take her to court. You'll win no doubt.
blaackandprouud 20
Judge Judy to the rescue.
gribbles 12
Definitely not necessarily her fault. There's so many variables involved. AND at the very least, why not have renters insurance?
kate12345678901 15
Monday 7 January 2013 0:13
Maybe its really not her fault an your pipes weren't up to code.
luhar 7
Wow that's such a mean lady!!! Sorry op, stuff like this would make me super mad.
DEATHBYEX1LE 11
Thanks for that comment.
RetardedPotato 6
Tuesday 8 January 2013 2:20
Especially when you fall on your ass and earn a spot on AFHV =D
sheethapins 13
Agreed. I'm sure the lawyer's opinion on who's responsible will make more of a difference than hers.
Glockinator 2
Comment moderated for rule-breaking.
Show it anyway
You can only sue if she did it on purposes and proving that wouldn't be that easy. It's called renters insurance! Get it people. Take accountability and think ahead
provei 11
You can sue if someone damages your property and refuses to pay for the damages, regardless of whether they did it on purpose or not.
isallwaysme 27
@glockinator, with your logic, if I accidentally hit you with my car and break your legs, you can't sue me because it wasn't on purpose.
onlychildFTW 33
Move into a penthouse OP! Then there's no stupid people above you.
beehardxcore 26
Yeah, but now look at all the free water you're getting!
happle 21
Through the neighbor's yucky floor..?
TheChiver 7
I don't know about you, but I wouldn't use that water in anyway...
ElatedEarthling 15
I think you guys missed the sarcasm...
Glad someone got it!
cuponoodles34 10
It might have all come from her toilet
ME00DOT 8
It depends how you approached her..
5t3ff1k4h 44
It absolutely does not. The water came from her apartment so OP had every right to be angry.
mario2012 18
I pretty sure OP approached her calmly otherwise it wouldn't be on FML.
PenguinBitch 43
This is how OP approached her: "Well I woke up to get me a cold pop and then I thought somebody was taking a piss. I said oh lord Jesus it’s a flood. Then I ran out, I didn’t grab no shoes or nothin’ lord Jesus, I ran for my life. And then the water got me wet, I wasn't even horny....ain’t nobody got time for that."
Pretty_reckless_fml 18
Good attempt penguinbitch :) close, but no cigar :/
kate714 12
Omg... Lol! I thought that was awesome, penguin :)
tswizz 13
Penguin, I saved this to my favourites just so I can read that comment again.
False_Stupidity 41
ROFL, your comment had me in stitches at work and now my co workers are looking at me funny.. Well Done!
vintageemerald 10
That is ridiculous! Call a lawyer.
lilhellian 26
Isn't it also the landlords responsibility? Just wondering, don't shoot the curious puppy! D:
| redpajama | [
966,
13,
309,
1669,
619,
4481,
275,
253,
3906,
15,
733,
434,
6794,
285,
253,
3652,
588,
320,
12623,
1919,
7216,
4131,
15,
401,
4132,
187,
3463,
417,
2577,
1201,
428,
2030,
16,
2640,
16,
7857,
3495,
27,
1731,
428,
1986,
2077,
187,
14569,
13,
359,
497,
11213,
272,
1475,
285,
309,
369,
816,
670,
281,
47794,
672,
703,
4453,
387,
619,
8886,
285,
2296,
346,
42,
452,
281,
564,
418,
13792,
310,
327,
275,
1384,
2909,
449,
401,
4132,
187,
3463,
6625,
428,
17796,
16,
3071,
16,
6755,
1668,
27,
2640,
428,
1986,
2077,
428,
3532,
13703,
187,
14569,
13,
846,
1907,
2825,
342,
619,
19609,
13,
309,
480,
536,
5356,
2918,
253,
48348,
1840,
619,
6208,
15,
45138,
13,
253,
48348,
270,
15172,
13,
285,
3253,
2427,
689,
619,
2454,
15,
411,
10245,
1335,
13,
359,
1472,
1024,
12371,
816,
849,
4999,
436,
48348,
1663,
369,
15,
401,
4132,
187,
3650,
1024,
13,
714,
17457,
187,
3463,
891,
88,
515,
15436,
583,
428,
884,
16,
2125,
16,
6622,
1668,
27,
1237,
428,
1986,
2077,
187,
14569,
13,
309,
369,
1907,
2825,
342,
619,
22273,
13,
285,
309,
2183,
779,
309,
369,
2810,
281,
1907,
271,
47794,
15,
754,
924,
11131,
264,
285,
3053,
5015,
751,
714,
17457,
13,
3981,
13,
346,
39819,
342,
253,
11277,
13,
436,
581,
310,
449,
2207,
72,
4542,
4783,
15,
401,
4132,
187,
3463,
480,
339,
301,
19,
428,
1458,
16,
520,
16,
6759,
16987,
27,
3439,
428,
1986,
2077,
428,
5003,
2070,
33998,
187,
14569,
13,
619,
3484,
38350,
5821,
13,
275,
2914,
273,
479,
13,
326,
253,
760,
1921,
597,
1379,
619,
2282,
310,
281,
1007,
387,
619,
718,
15,
401,
4132,
187,
3463,
12506,
1342,
428,
3349,
16,
805,
16,
6755,
17272,
27,
3071,
428,
1986,
11491,
428,
9858,
1648,
187,
14569,
13,
846,
1907,
2825,
323,
253,
806,
673,
342,
619,
19609,
13,
309,
25436,
309,
369,
275,
2389,
342,
617,
15,
309,
8344,
703,
574,
271,
32153,
1225,
327,
617,
5988,
15,
2732,
30139,
3390,
352,
247,
1643,
2069,
309,
25436,
352,
369,
2686,
247,
2014,
2806,
295,
33687,
4707,
15,
1500,
369,
594,
30069,
13,
703,
19301,
479,
562,
285,
1024,
1912,
626,
1091,
619,
5841,
15,
401,
4132,
187,
3463,
256,
8243,
2307,
2072,
51,
428,
3435,
16,
2922,
16,
6961,
1668,
27,
1229,
187,
14569,
13,
309,
6311,
326,
309,
1353,
275,
326,
2714,
2238,
273,
2954,
835,
619,
385,
11121,
359,
1472,
1335,
7028,
13,
642,
2647,
849,
1142,
2069,
309,
2028,
779,
326,
359,
497,
32806,
689,
247,
807,
3622,
15,
401,
4132,
187,
3463,
9808,
371,
4115,
388,
8,
72,
9432,
428,
1884,
16,
2922,
16,
6961,
16331,
27,
3208,
428,
1457,
12123,
187,
14569,
13,
309,
9829,
619,
1685,
281,
253,
7345,
434,
3906,
323,
619,
11526,
13860,
1071,
15,
309,
369,
594,
18439,
13,
309,
1925,
619,
3846,
19505,
2243,
281,
1642,
323,
247,
9549,
15,
1500,
753,
346,
32269,
35022,
1053,
626,
878,
13860,
5216,
995,
12918,
13,
840,
10416,
598,
327,
479,
15,
401,
4132,
187,
3463,
37941,
5134,
45,
251,
16825,
968,
428,
15630,
16,
2125,
16,
7857,
16987,
27,
2922,
428,
6144,
187,
14569,
13,
309,
2427,
281,
2619,
598,
619,
7586,
434,
12142,
15221,
15,
733,
369,
247,
5322,
1388,
13,
253,
8979,
369,
2810,
13,
285,
253,
15221,
3589,
626,
1512,
1943,
594,
309,
7428,
15,
1623,
619,
1039,
896,
13,
309,
12293,
9255,
323,
247,
5772,
327,
247,
13696,
13,
1195,
1882,
689,
619,
6738,
293,
1951,
13,
285,
35611,
619,
7586,
434,
8214,
13,
2840,
14,
38061,
15221,
15,
380,
12142,
310,
10873,
15,
401,
4132,
187,
4316,
552,
2926,
673,
2,
187,
3463,
611,
7271,
18971,
428,
14805,
16,
883,
16,
9638,
7449,
27,
520,
187,
14569,
13,
309,
574,
5130,
5869,
281,
1611,
285,
3523,
253,
10005,
273,
619,
5130,
2728,
15,
16688,
9680,
323,
253,
5869,
13,
309,
369,
1677,
930,
12188,
15323,
1078,
359,
3407,
15,
2752,
7345,
3053,
9968,
619,
944,
21254,
1078,
253,
15323,
2335,
1055,
15,
401,
4132,
187,
3463,
826,
39771,
376,
1796,
70,
428,
2030,
16,
1762,
16,
7199,
16987,
27,
1093,
428,
1986,
2077,
187,
14569,
13,
309,
3047,
247,
3492,
273,
479,
432,
689,
253,
8849,
13,
16867,
13,
34452,
281,
320,
247,
27985,
15,
1737,
253,
7435,
4592,
326,
2360,
32,
401,
4132,
187,
3463,
43099,
428,
15630,
16,
2640,
16,
7132,
1668,
27,
361,
428,
1986,
2077,
428,
11146,
382,
628,
187,
14569,
13,
309,
717,
8334,
273,
7487,
619,
3331,
434,
4370,
1223,
703,
310,
327,
18125,
15,
496,
1740,
1897,
13,
436,
4370,
556,
46314,
619,
34489,
13,
759,
264,
327,
619,
2565,
2706,
13,
1161,
7184,
619,
8576,
21583,
13,
285,
13964,
619,
4370,
1223,
703,
21567,
15,
2752,
3331,
1912,
626,
3662,
617,
4481,
13,
533,
703,
1057,
5731,
6745,
1327,
14,
13121,
15,
13728,
1897,
281,
564,
15,
401,
4132,
187,
26448,
13239,
432,
7085,
187,
14569,
13,
619,
2419,
13884,
3047,
690,
5017,
275,
253,
23584,
13,
1869,
309,
13353,
5082,
457,
85,
320,
970,
352,
13,
594,
344,
24982,
8783,
273,
23298,
17076,
327,
1755,
15,
380,
773,
41695,
668,
275,
1953,
32,
378,
2339,
273,
19273,
15,
1284,
275,
13,
5312,
2739,
323,
619,
12074,
15,
401,
4132,
187,
3463,
7569,
64,
483,
428,
1668,
16,
2922,
16,
7199,
14805,
27,
805,
428,
1986,
2077,
187,
14569,
13,
619,
19609,
1912,
626,
452,
2825,
342,
479,
15,
6049,
32,
4923,
619,
278,
2886,
19336,
562,
617,
278,
2886,
275,
41884,
36607,
15,
733,
5082,
626,
320,
347,
3076,
604,
703,
3589,
626,
275,
581,
4760,
4438,
15,
401,
4132,
187,
1231,
497,
327,
247,
2740,
2,
187,
14569,
13,
352,
434,
644,
767,
3618,
1580,
619,
19609,
273,
1142,
1107,
285,
309,
4425,
281,
1379,
247,
2159,
2740,
432,
1016,
643,
15,
844,
1871,
644,
8615,
247,
2257,
285,
3543,
751,
690,
2317,
651,
1361,
253,
4112,
15,
309,
1119,
562,
3063,
326,
13,
387,
690,
1127,
1309,
1110,
767,
3618,
13,
703,
4425,
281,
564,
285,
452,
2825,
342,
619,
313,
2666,
385,
10,
1682,
3331,
15,
401,
4132,
187,
3463,
15884,
428,
17272,
16,
883,
16,
7857,
18188,
27,
3071,
428,
1986,
2077,
187,
14569,
13,
309,
43659,
281,
320,
329,
14684,
264,
745,
323,
3976,
414,
15,
309,
2427,
323,
370,
20,
15,
401,
4132,
187,
3463,
443,
1758,
428,
16261,
16,
2125,
16,
7199,
1903,
27,
1610,
428,
23174,
187,
14569,
13,
309,
369,
275,
253,
16999,
285,
253,
10654,
512,
273,
247,
5982,
2427,
562,
15,
309,
1694,
1663,
16060,
323,
642,
1921,
984,
352,
369,
11288,
2806,
285,
16470,
4830,
619,
29616,
434,
1133,
15,
2091,
253,
1708,
434,
1694,
3531,
327,
309,
369,
5877,
327,
281,
247,
3632,
5599,
434,
1133,
15,
401,
4132,
187,
20007,
22708,
898,
187,
27180,
721,
4247,
4072,
655,
27,
2125,
187,
5872,
25457,
617,
187,
42,
64,
478,
64,
35,
64,
66,
64,
85,
1811,
3495,
187,
4497,
352,
434,
417,
617,
9331,
617,
23467,
10345,
626,
1824,
16314,
13,
703,
816,
3078,
281,
1614,
253,
1659,
715,
247,
1824,
30844,
2,
1422,
1833,
320,
685,
4351,
617,
2378,
703,
298,
1727,
368,
253,
15813,
686,
79,
8,
14518,
15,
187,
2773,
434,
1663,
11339,
273,
617,
13,
703,
812,
275,
253,
1878,
13,
1750,
5506,
13,
285,
1361,
2075,
323,
253,
4723,
604,
417,
512,
273,
352,
15,
187,
5804,
1231,
28184,
20601,
1147,
1903,
187,
1147,
812,
417,
320,
617,
9331,
285,
816,
247,
12948,
1824,
12881,
15,
3771,
3981,
326,
434,
247,
6387,
1078,
4130,
391,
1103,
703,
434,
18580,
187,
30819,
267,
3920,
898,
187,
2773,
434,
2139,
368,
1900,
755,
3816,
1336,
6503,
4672,
1422,
1620,
871,
752,
3095,
2010,
310,
1469,
281,
513,
2,
187,
2385,
38105,
884,
187,
6300,
1379,
617,
281,
1302,
15,
1422,
1833,
3330,
642,
5545,
15,
187,
38926,
471,
395,
1087,
276,
438,
1384,
187,
38126,
38048,
281,
253,
14471,
15,
187,
72,
725,
9143,
1249,
187,
4612,
16107,
417,
7933,
617,
9331,
15,
1707,
434,
594,
1142,
4903,
3206,
15,
4889,
387,
253,
1077,
1878,
13,
2139,
417,
452,
3816,
1336,
6503,
32,
187,
76,
366,
42594,
43784,
520,
1458,
187,
26788,
818,
4247,
4072,
470,
27,
1012,
187,
11175,
697,
1663,
417,
617,
9331,
271,
634,
25886,
10345,
626,
598,
281,
2127,
15,
187,
77,
6968,
274,
818,
187,
24243,
326,
434,
824,
247,
1599,
10692,
15844,
26070,
1121,
13,
5017,
751,
436,
651,
1056,
479,
2221,
10279,
15,
187,
2573,
10948,
15012,
4237,
18,
1843,
1903,
187,
8061,
323,
326,
4385,
15,
187,
9795,
13073,
29255,
4611,
721,
187,
28266,
854,
4247,
4072,
374,
27,
938,
187,
15168,
2998,
672,
368,
2965,
327,
634,
718,
285,
6233,
247,
6308,
327,
11854,
22984,
426,
37,
187,
6689,
678,
522,
968,
2145,
187,
8903,
22767,
15,
309,
1353,
2119,
253,
11115,
434,
4743,
327,
665,
434,
5506,
588,
1056,
625,
273,
247,
3064,
685,
22502,
15,
187,
40,
4348,
12915,
374,
187,
19174,
771,
12072,
323,
4086,
14,
22071,
15,
187,
14422,
352,
8791,
187,
1394,
476,
760,
25457,
604,
703,
858,
352,
327,
6378,
285,
18597,
326,
5082,
626,
320,
326,
3477,
15,
733,
434,
1925,
3816,
1336,
6503,
2,
5057,
352,
952,
15,
11668,
30990,
285,
1158,
6386,
187,
17460,
74,
1903,
187,
1394,
476,
25457,
604,
3095,
8540,
634,
2867,
285,
29939,
281,
2075,
323,
253,
8540,
13,
10159,
273,
1880,
597,
858,
352,
327,
4096,
390,
417,
15,
187,
261,
455,
1576,
1405,
3435,
187,
33,
3129,
825,
12915,
13,
342,
634,
9317,
13,
604,
309,
26187,
4352,
368,
342,
619,
1113,
285,
2740,
634,
9246,
13,
368,
476,
626,
25457,
479,
984,
352,
3589,
626,
327,
4096,
15,
187,
7483,
7003,
5518,
56,
5922,
187,
19815,
715,
247,
15482,
5967,
13664,
2,
2635,
627,
434,
642,
11339,
952,
1840,
368,
15,
187,
28700,
10984,
89,
6443,
3436,
187,
6506,
13,
533,
1024,
1007,
387,
512,
253,
1959,
1824,
368,
1472,
2970,
2,
187,
73,
19934,
3127,
187,
18852,
253,
6346,
434,
340,
12202,
5254,
537,
32,
187,
510,
1779,
2373,
818,
187,
42,
1053,
626,
871,
670,
368,
13,
533,
309,
5082,
626,
897,
326,
1824,
275,
8791,
1051,
187,
8677,
456,
38735,
1981,
1458,
187,
42,
1158,
368,
6068,
9829,
253,
23649,
4542,
1051,
187,
9030,
324,
3095,
1694,
352,
2,
187,
6837,
251,
836,
868,
1706,
884,
187,
1147,
1537,
452,
512,
1705,
432,
617,
21487,
187,
5288,
361,
37,
2415,
854,
187,
1147,
7024,
849,
368,
13781,
617,
537,
187,
22,
85,
20,
567,
18,
76,
21,
73,
7127,
187,
1147,
8839,
1057,
417,
15,
380,
1824,
2210,
432,
617,
10230,
594,
13664,
574,
1046,
987,
281,
320,
11790,
15,
187,
4175,
900,
6755,
1283,
187,
42,
3965,
2119,
13664,
13781,
617,
38440,
5010,
352,
5082,
626,
320,
327,
401,
4132,
15,
187,
49,
1205,
19014,
35,
2682,
7652,
187,
1552,
310,
849,
13664,
13781,
617,
27,
346,
4497,
309,
23686,
598,
281,
755,
479,
247,
5412,
1684,
285,
840,
309,
1869,
11853,
369,
3192,
247,
24329,
15,
309,
753,
12506,
17991,
7670,
352,
457,
84,
247,
10802,
15,
2635,
309,
6337,
562,
13,
309,
1904,
457,
85,
10013,
642,
12682,
390,
417,
23187,
457,
17991,
7670,
13,
309,
6337,
323,
619,
1495,
15,
1244,
840,
253,
1824,
1694,
479,
9685,
13,
309,
3589,
626,
1014,
17081,
90,
2391,
404,
457,
85,
12445,
1694,
673,
323,
326,
449,
187,
41774,
64,
17456,
1417,
64,
71,
1686,
1283,
187,
8620,
3177,
42151,
19014,
67,
2682,
9418,
2810,
13,
533,
642,
43186,
1163,
16,
187,
76,
366,
44034,
1249,
187,
48,
7913,
1051,
418,
311,
2,
309,
1869,
326,
369,
13103,
13,
42151,
19014,
9418,
187,
1641,
88,
11114,
2145,
187,
49,
1205,
19014,
13,
309,
9809,
436,
281,
619,
9796,
3254,
816,
594,
309,
476,
1239,
326,
4385,
969,
15,
187,
5653,
64,
998,
10461,
414,
7609,
187,
13935,
4639,
13,
634,
4385,
574,
479,
275,
46870,
387,
789,
285,
1024,
619,
820,
5820,
403,
2819,
387,
479,
11755,
537,
6089,
35720,
2,
187,
87,
23834,
358,
16627,
884,
187,
2773,
310,
19082,
2,
9368,
247,
11115,
15,
187,
77,
300,
14440,
757,
3436,
187,
33989,
626,
352,
671,
253,
2659,
42730,
8294,
32,
3771,
12371,
13,
1053,
626,
5310,
253,
14338,
38091,
2,
399,
27,
187
] |
Breaking News’ label
The site first rolled out its 'Breaking News' indicator in a test run last November that included a small number of local and national publishers.
Facebook is making another attempt to fine-tune the way its users consume news articles. Last November, the site gave a small group of local and national publishers the ability to include a “Breaking News” label on their stories. Starting today, Facebook is expanding its “Breaking News” label test run to more than 50 additional publishers in North America, Latin America, Europe and Australia.
“If the expansion is successful, we may add more publishers,” writes Facebook product manager Joey Rhyu on the site’s news blog.
According to the announcement, publishers with access to the label can include it on Instant Articles, mobile and web links and Facebook Live videos. Facebook says publishers can use the label once a day (but will have an extra pool of up to five indicators per month) and can choose to have it included on a story for up to six hours.
The label comes with analytics so that publishers can see in their Page Insights how their “Breaking News” posts performed. Facebook says readers will also be able to mark whether or not they think a story is breaking news by clicking on the top right drop-down menu of a post.
Based on feedback from sites with early access to the label, like The Washington Post, Facebook saw a 4 percent increase in click-through rates and comments, a 7 percent increase in likes, and an 11 percent increase in shares for posts with the “Breaking News” label posted between December 8, 2017, and January 14, 2018.
“We’ve been pleased to collaborate with Facebook to elevate breaking news on their platform and are excited – but not surprised – to see readers respond the way they have,” says Dave Merrell, lead product manager for The Washington Post.<|endoftext|>Barsky (masculine), Barskaya (feminine), or Barskoye (neuter) may refer to:
Barsky (surname) (Barskaya), a surname
Barsky (rural locality) (Barskaya, Barskoye), several rural localities in Russia
Barsky Forest, a forest in the Republic of Bashkortostan, Russia<|endoftext|>In February, everyone is invited to our largest fund raiser of the year, the Auction/Dinner Fundraiser. Close to 100 items including rods, reels, tackle and guided fishing trips are donated by our Sponsors and members.
Proceeds from the auction fund the planting of rainbow trout for the Kid's Fishing Day held annually in May at Carrie Blake Park, Sequim and a natural resources scholarship fund for local students.<|endoftext|>Der Nanda Kot ist ein 6861 Meter hoher Berg im Himalaya in Indien.
Der Berg befindet sich im Distrikt Pithoragarh in geringer Entfernung zum Nanda-Devi-Nationalpark.
Der Berg Changuch befindet sich auf einem Bergkamm, der vom Nanda Kot nach Westen zum Nanda Khat und Nanda Devi führt. Nordöstlich des Nanda Kot befindet sich der Kuchela Dhura.
Weblinks
Einzelnachweise
Berg im Himalaya
Nanda-Devi-Gruppe
Distrikt Pithoragarh<|endoftext|>Who can forget the iconic marriage scene from the Princess Bride?
If you have never seen this family friendly movie, be sure to check it out. It is everything we want in a romantic comedy...danger, sword fights, a beautiful couple and plenty of bad guys. It is one of those old fashion love stories where the couple truly lives, happily ever after.
Fast forward five years. Who is this person you married and what did they do with that one you fell so madly and deeply in love with? They leave their clothes on the floor, whiskers in the bathroom sink, the toilet seat up, squeeze the toothpaste the in the middle, and when they finally think to replace the toilet paper roll, they put it on the wrong way. They don't help around the house and you could count on one hand how many diapers they have changed. What happened to true love and the happily ever after?
The last two weeks, I wrote about The Real Romance, and Why is Love so Hard? The first dealt with God's love for us and the second spoke more to our perspective on how trying to love in our own power is a very hard thing to do. I looked at 1 Corinthians 13 last week and I would like to take another look, in detail, at a few of those verses this week. Using these as a guide we can define what twoo wuv looks like.
1. Twoo wuv is patient.
Patience is a virtue, as the saying goes, and it is essential in a loving relationship. Patience will cover many of those things that might irritate in a marriage, such as toothpaste tubes and toilet paper placement. If something about your significant other is irritating you, take a deep breath and let it go.
2. Twoo wuv is kind and is not jealous.
I find it interesting that these two things are connected with a conjunction. Kindness is key in a loving relationship, just as is trust. I think it is very hard to be kind without the warm blanket of trust surrounding the relationship. There is no place for jealousy in a relationship.
3. Twoo wuv does not brag and is not prideful.
My husband loves to talk about things he's done in the past, as well as when he does a good thing at work. When we were first married, I often thought this was a matter of boastfulness and pride. I have learned, however, that some families have a tradition of story telling, much like many cultures of the past sharing their conquests and victories. Oral tradition used to be the way to pass on a culture's identity and traditions.
Bragging and arrogance often go hand in hand. When thrown into a relationship they soon become a source of bitterness and frustration. Let's face it, bragging and pride usually are self serving and being self serving in a marriage doesn't not epitomize true love.
4. Twoo wuv does not act ugly.
I know all about acting ugly in a marriage. My hubby and I affectionately call our first year of marriage, "the year from hell." Yes indeed! I have always been an emotional person. While the years and menopause have done wonders to temper my emotions, the early years were not pretty. I always had mood swings when it was "that time of the month", but being on the birth control pill contributed to emotional rants that were extremely volatile. My poor spouse must have thought he had married an alien or that a demon had come in when I said the marriage vows and taken over my body.
Allowing ourselves to be "ugly" to our spouses does not create an environment of trust, nor even one of desire. Acting unbecomingly does not foster true love.
5. Twoo wuv isn't selfish.
We are all selfish by nature. The Bible, says none of us are righteous and we have all sinned and fall short of the glory of God. That sin nature expresses itself in the form of selfishness. If you think about all the bad stuff that happens in a marriage and even in our world we can probably link most, if not all, back to selfishness.
Selfishness is basically the act or mentality of looking out for ourselves. There is a lot of talk these days about self love, and that is important, however, if self love becomes such a focus that it hurts and offends others, then it becomes selfish love. There is no place in a marriage for this type of love. Unfortunately, so many of us start out marriage thinking about what I am going to get from this other person, rather than being confident in our place with Christ and being a loving and gracious servant.
6. Twoo wuv doesn't hold a grudge.
I put these two ideas as one because what causes a person to be provoked is probably going to be the same thing that causes that person to hold a grudge. The word provoke, according to Webster means to arouse a feeling or action, or to incite to anger. If true love is not provoked then it doesn't become angry at the object of its affection. How many times have you gotten angry at your spouse? My husband and I have had to learn this one the hard way, by doing it. Ha, ha. Truly, it is not funny. Provocation and holding a grudge are a death sentence in a marriage. Even if you stick it out, like we have, it is very damaging.
My husband and I have been married for almost 31 years and we are just now beginning to repent and turn away from these unloving behaviors in our relationship. We have a long way to go, but true love is worth the effort.
7. Twoo wuv rejoices in the right things.
What exactly does this mean? Certainly, there are all sorts of ways we or our spouses can be unrighteous. The goal is to not condone the things that we do or that we see in each other that are wrong. God wants us to be righteous and truthful, and even more as a couple, since many of us are examples to our children and grandchildren.
I have found more recently that both my spouse and I have issues with wrong thinking. Meaning, we do not see ourselves truthfully, as God sees us, but as we think the world sees us, or as we see ourselves as coming up | redpajama | [
16212,
1170,
6317,
457,
5203,
187,
510,
2670,
806,
14436,
562,
697,
686,
16212,
1170,
6317,
8,
15301,
275,
247,
1071,
1408,
1390,
4596,
326,
2908,
247,
1355,
1180,
273,
1980,
285,
3872,
28329,
15,
187,
25116,
310,
2403,
1529,
3177,
281,
4030,
14,
85,
2517,
253,
1039,
697,
4212,
21409,
3668,
7774,
15,
9859,
4596,
13,
253,
2670,
3534,
247,
1355,
1387,
273,
1980,
285,
3872,
28329,
253,
3745,
281,
2486,
247,
773,
16212,
1170,
6317,
668,
5203,
327,
616,
6281,
15,
28396,
3063,
13,
6745,
310,
16122,
697,
773,
16212,
1170,
6317,
668,
5203,
1071,
1408,
281,
625,
685,
2456,
3081,
28329,
275,
3729,
3968,
13,
12760,
3968,
13,
3060,
285,
6976,
15,
187,
1628,
2042,
253,
7466,
310,
5547,
13,
359,
778,
823,
625,
28329,
1806,
12013,
6745,
1885,
7205,
40794,
416,
1994,
86,
327,
253,
2670,
457,
84,
3668,
5311,
15,
187,
7130,
281,
253,
15687,
13,
28329,
342,
2289,
281,
253,
5203,
476,
2486,
352,
327,
41337,
37218,
13,
6109,
285,
4384,
4859,
285,
6745,
14309,
10556,
15,
6745,
2296,
28329,
476,
897,
253,
5203,
2378,
247,
1388,
313,
2858,
588,
452,
271,
4465,
6363,
273,
598,
281,
2620,
18172,
591,
1770,
10,
285,
476,
5206,
281,
452,
352,
2908,
327,
247,
2926,
323,
598,
281,
2800,
3038,
15,
187,
510,
5203,
3249,
342,
31140,
594,
326,
28329,
476,
923,
275,
616,
10703,
6995,
4380,
849,
616,
773,
16212,
1170,
6317,
668,
9319,
2684,
15,
6745,
2296,
10668,
588,
671,
320,
2104,
281,
1616,
1880,
390,
417,
597,
1158,
247,
2926,
310,
10155,
3668,
407,
19009,
327,
253,
1755,
987,
5926,
14,
3487,
8910,
273,
247,
1501,
15,
187,
15545,
327,
8680,
432,
4375,
342,
2393,
2289,
281,
253,
5203,
13,
751,
380,
5041,
5779,
13,
6745,
3047,
247,
577,
2558,
2572,
275,
5532,
14,
10489,
4142,
285,
5701,
13,
247,
818,
2558,
2572,
275,
13052,
13,
285,
271,
1903,
2558,
2572,
275,
10764,
323,
9319,
342,
253,
773,
16212,
1170,
6317,
668,
5203,
9269,
875,
4565,
854,
13,
4240,
13,
285,
4247,
1638,
13,
4765,
15,
187,
1628,
1231,
457,
306,
644,
13864,
281,
42124,
342,
6745,
281,
50181,
10155,
3668,
327,
616,
5147,
285,
403,
9049,
1108,
533,
417,
9861,
1108,
281,
923,
10668,
3794,
253,
1039,
597,
452,
1806,
2296,
16908,
7612,
11436,
13,
1421,
1885,
7205,
323,
380,
5041,
5779,
15,
50279,
35,
1032,
4742,
313,
6681,
1291,
460,
582,
39400,
4629,
66,
313,
71,
358,
14989,
582,
390,
39400,
76,
899,
70,
313,
570,
18696,
10,
778,
3730,
281,
27,
187,
39400,
4742,
313,
84,
30829,
10,
313,
35,
1032,
4629,
66,
582,
247,
38213,
187,
39400,
4742,
313,
83,
1546,
33643,
10,
313,
35,
1032,
4629,
66,
13,
39400,
76,
899,
70,
582,
2067,
11393,
48630,
275,
7422,
187,
39400,
4742,
16015,
13,
247,
9741,
275,
253,
4687,
273,
32799,
76,
430,
493,
266,
13,
7422,
50279,
688,
5080,
13,
4130,
310,
12470,
281,
776,
6253,
3187,
1218,
9141,
273,
253,
807,
13,
253,
329,
14684,
16,
37,
5338,
10980,
40902,
15,
24445,
281,
2233,
4957,
1690,
30665,
13,
294,
1241,
13,
18915,
285,
18107,
15133,
19055,
403,
26837,
407,
776,
49329,
641,
285,
2758,
15,
187,
1845,
2638,
84,
432,
253,
22685,
3187,
253,
31761,
273,
37422,
40732,
323,
253,
26184,
434,
401,
3647,
6258,
2918,
21051,
275,
2552,
387,
45274,
27773,
4913,
13,
18374,
303,
285,
247,
3626,
5300,
26104,
3187,
323,
1980,
3484,
15,
50279,
19932,
427,
7447,
36702,
10863,
9416,
721,
38978,
353,
1715,
8511,
379,
19869,
516,
49389,
12451,
275,
2102,
1914,
15,
187,
187,
19932,
19869,
320,
8606,
292,
15747,
516,
3656,
363,
5751,
367,
334,
263,
28923,
73,
275,
305,
2158,
254,
11198,
1592,
79,
1947,
30070,
427,
7447,
14,
11148,
74,
14,
16760,
30844,
15,
187,
19932,
19869,
28926,
976,
320,
8606,
292,
15747,
12606,
29840,
19869,
76,
3681,
13,
1784,
20648,
427,
7447,
36702,
23424,
4255,
257,
30070,
427,
7447,
611,
700,
3807,
427,
7447,
8397,
74,
269,
26288,
1378,
15,
23060,
2381,
296,
14671,
711,
427,
7447,
36702,
320,
8606,
292,
15747,
1784,
611,
1028,
2955,
66,
37287,
5650,
15,
187,
187,
1231,
1559,
3106,
187,
187,
38,
249,
21608,
79,
607,
664,
885,
209,
1744,
187,
35,
1326,
516,
49389,
12451,
187,
47,
7447,
14,
11148,
74,
14,
3594,
484,
365,
187,
14178,
363,
5751,
367,
334,
263,
28923,
73,
50279,
7883,
476,
7740,
253,
26893,
7875,
6200,
432,
253,
23091,
2652,
504,
32,
187,
2042,
368,
452,
1620,
2326,
436,
2021,
11453,
6440,
13,
320,
2119,
281,
2451,
352,
562,
15,
733,
310,
3253,
359,
971,
275,
247,
18109,
17325,
1051,
36510,
13,
14228,
24662,
13,
247,
5389,
4564,
285,
9828,
273,
3076,
6068,
15,
733,
310,
581,
273,
1110,
1711,
8142,
2389,
6281,
835,
253,
4564,
7777,
4852,
13,
26174,
2455,
846,
15,
187,
29760,
3579,
2620,
1107,
15,
8452,
310,
436,
1436,
368,
7028,
285,
752,
858,
597,
513,
342,
326,
581,
368,
6497,
594,
10279,
314,
285,
11617,
275,
2389,
342,
32,
1583,
3553,
616,
10015,
327,
253,
5254,
13,
22445,
398,
275,
253,
15336,
16338,
13,
253,
21487,
7319,
598,
13,
29684,
253,
15205,
23164,
253,
275,
253,
4766,
13,
285,
672,
597,
4720,
1158,
281,
8171,
253,
21487,
2929,
4533,
13,
597,
1691,
352,
327,
253,
3430,
1039,
15,
1583,
1053,
626,
1361,
1475,
253,
2419,
285,
368,
812,
1385,
327,
581,
1133,
849,
1142,
1073,
6143,
597,
452,
4391,
15,
1737,
4592,
281,
2032,
2389,
285,
253,
26174,
2455,
846,
32,
187,
510,
1390,
767,
3618,
13,
309,
4159,
670,
380,
10417,
9916,
593,
13,
285,
6049,
310,
10540,
594,
11366,
32,
380,
806,
18445,
342,
2656,
434,
2389,
323,
441,
285,
253,
1273,
7560,
625,
281,
776,
8668,
327,
849,
2820,
281,
2389,
275,
776,
1211,
1612,
310,
247,
1077,
1892,
2181,
281,
513,
15,
309,
3261,
387,
337,
41118,
2458,
2145,
1390,
2129,
285,
309,
651,
751,
281,
1379,
1529,
1007,
13,
275,
2508,
13,
387,
247,
1643,
273,
1110,
34067,
436,
2129,
15,
6915,
841,
347,
247,
7102,
359,
476,
4853,
752,
767,
80,
259,
8962,
4453,
751,
15,
187,
18,
15,
5761,
80,
259,
8962,
310,
3110,
15,
187,
9147,
1482,
310,
247,
16968,
13,
347,
253,
3981,
4566,
13,
285,
352,
310,
5667,
275,
247,
18248,
2954,
15,
2790,
1482,
588,
3835,
1142,
273,
1110,
1841,
326,
1537,
17339,
366,
275,
247,
7875,
13,
824,
347,
15205,
23164,
17080,
285,
21487,
2929,
14663,
15,
1310,
1633,
670,
634,
1534,
643,
310,
17339,
839,
368,
13,
1379,
247,
3676,
6345,
285,
1339,
352,
564,
15,
187,
19,
15,
5761,
80,
259,
8962,
310,
2238,
285,
310,
417,
23327,
15,
187,
42,
1089,
352,
4722,
326,
841,
767,
1841,
403,
4802,
342,
247,
17385,
15,
29552,
1255,
310,
2234,
275,
247,
18248,
2954,
13,
816,
347,
310,
4517,
15,
309,
1158,
352,
310,
1077,
1892,
281,
320,
2238,
1293,
253,
5890,
23069,
273,
4517,
8704,
253,
2954,
15,
1707,
310,
642,
1659,
323,
44170,
275,
247,
2954,
15,
187,
20,
15,
5761,
80,
259,
8962,
1057,
417,
1308,
356,
285,
310,
417,
15555,
1020,
15,
187,
3220,
5938,
14528,
281,
2312,
670,
1841,
344,
434,
2218,
275,
253,
2469,
13,
347,
973,
347,
672,
344,
1057,
247,
1175,
2181,
387,
789,
15,
2091,
359,
497,
806,
7028,
13,
309,
2223,
1869,
436,
369,
247,
2647,
273,
44230,
16858,
285,
15555,
15,
309,
452,
6311,
13,
2299,
13,
326,
690,
5870,
452,
247,
4062,
273,
2926,
7746,
13,
1199,
751,
1142,
11048,
273,
253,
2469,
9628,
616,
35224,
84,
285,
34158,
15,
36999,
4062,
908,
281,
320,
253,
1039,
281,
1509,
327,
247,
4466,
434,
6489,
285,
21188,
15,
187,
8478,
29191,
285,
29586,
593,
2223,
564,
1133,
275,
1133,
15,
2091,
13044,
715,
247,
2954,
597,
3517,
2489,
247,
2603,
273,
44875,
285,
22014,
15,
1281,
434,
2454,
352,
13,
1308,
29191,
285,
15555,
3798,
403,
1881,
9417,
285,
1146,
1881,
9417,
275,
247,
7875,
2506,
626,
417,
8198,
297,
907,
2032,
2389,
15,
187,
21,
15,
5761,
80,
259,
8962,
1057,
417,
769,
19513,
15,
187,
42,
871,
512,
670,
8534,
19513,
275,
247,
7875,
15,
2752,
14713,
1615,
285,
309,
21909,
1523,
1067,
776,
806,
807,
273,
7875,
13,
346,
783,
807,
432,
7085,
449,
6279,
6296,
2,
309,
452,
1900,
644,
271,
8991,
1436,
15,
3900,
253,
1107,
285,
1821,
46763,
452,
2218,
28770,
281,
2660,
619,
14021,
13,
253,
2393,
1107,
497,
417,
3965,
15,
309,
1900,
574,
12315,
42534,
672,
352,
369,
346,
3529,
673,
273,
253,
1770,
995,
533,
1146,
327,
253,
4201,
1453,
12575,
9945,
281,
8991,
391,
1103,
326,
497,
6685,
22326,
15,
2752,
4105,
22333,
1364,
452,
1869,
344,
574,
7028,
271,
14165,
390,
326,
247,
2725,
574,
1705,
275,
672,
309,
753,
253,
7875,
362,
5811,
285,
2668,
689,
619,
2133,
15,
187,
3074,
23581,
9361,
281,
320,
346,
814,
314,
3,
281,
776,
46179,
1057,
417,
2794,
271,
3126,
273,
4517,
13,
4543,
1014,
581,
273,
8327,
15,
45500,
46908,
4202,
314,
1057,
417,
22846,
2032,
2389,
15,
187,
22,
15,
5761,
80,
259,
8962,
3548,
626,
27915,
15,
187,
1231,
403,
512,
27915,
407,
3753,
15,
380,
13534,
13,
2296,
5293,
273,
441,
403,
28867,
285,
359,
452,
512,
256,
13172,
285,
2965,
2159,
273,
253,
18735,
273,
2656,
15,
2064,
6868,
3753,
30599,
3139,
275,
253,
830,
273,
27915,
1255,
15,
1310,
368,
1158,
670,
512,
253,
3076,
5017,
326,
6569,
275,
247,
7875,
285,
1014,
275,
776,
1533,
359,
476,
3164,
3048,
954,
13,
604,
417,
512,
13,
896,
281,
27915,
1255,
15,
187,
23315,
763,
1255,
310,
10323,
253,
769,
390,
38656,
273,
2819,
562,
323,
9361,
15,
1707,
310,
247,
2257,
273,
2312,
841,
1897,
670,
1881,
2389,
13,
285,
326,
310,
1774,
13,
2299,
13,
604,
1881,
2389,
4916,
824,
247,
2770,
326,
352,
31835,
285,
745,
1727,
2571,
13,
840,
352,
4916,
27915,
2389,
15,
1707,
310,
642,
1659,
275,
247,
7875,
323,
436,
1511,
273,
2389,
15,
12526,
13,
594,
1142,
273,
441,
1265,
562,
7875,
4680,
670,
752,
309,
717,
1469,
281,
755,
432,
436,
643,
1436,
13,
2581,
685,
1146,
13224,
275,
776,
1659,
342,
2828,
285,
1146,
247,
18248,
285,
46582,
21133,
15,
187,
23,
15,
5761,
80,
259,
8962,
2506,
626,
2186,
247,
650,
15414,
15,
187,
42,
1691,
841,
767,
5697,
347,
581,
984,
752,
5997,
247,
1436,
281,
320,
42652,
310,
3164,
1469,
281,
320,
253,
1072,
2181,
326,
5997,
326,
1436,
281,
2186,
247,
650,
15414,
15,
380,
3159,
46554,
13,
2556,
281,
35470,
2097,
281,
549,
1312,
247,
5471,
390,
2250,
13,
390,
281,
1485,
614,
281,
12700,
15,
1310,
2032,
2389,
310,
417,
42652,
840,
352,
2506,
626,
2489,
11790,
387,
253,
1789,
273,
697,
21909,
15,
1359,
1142,
2069,
452,
368,
12759,
11790,
387,
634,
22333,
32,
2752,
5938,
285,
309,
452,
574,
281,
3037,
436,
581,
253,
1892,
1039,
13,
407,
2509,
352,
15,
10664,
13,
419,
15,
20115,
314,
13,
352,
310,
417,
11755,
15,
9225,
4341,
285,
5877,
247,
650,
15414,
403,
247,
2471,
6197,
275,
247,
7875,
15,
4952,
604,
368,
7356,
352,
562,
13,
751,
359,
452,
13,
352,
310,
1077,
24038,
15,
187,
3220,
5938,
285,
309,
452,
644,
7028,
323,
2761,
4562,
1107,
285,
359,
403,
816,
1024,
5068,
281,
39531,
285,
1614,
1977,
432,
841,
46144,
11305,
13576,
275,
776,
2954,
15,
844,
452,
247,
1048,
1039,
281,
564,
13,
533,
2032,
2389,
310,
4409,
253,
3434,
15,
187,
24,
15,
5761,
80,
259,
8962,
27326,
1271,
275,
253,
987,
1841,
15,
187,
1276,
4555,
1057,
436,
1599,
32,
30445,
13,
627,
403,
512,
16308,
273,
4088,
359,
390,
776,
46179,
476,
320,
440,
918,
22953,
15,
380,
4736,
310,
281,
417,
6882,
531,
253,
1841,
326,
359,
513,
390,
326,
359,
923,
275,
1016,
643,
326,
403,
3430,
15,
2656,
5605,
441,
281,
320,
28867,
285,
5083,
1020,
13,
285,
1014,
625,
347,
247,
4564,
13,
1580,
1142,
273,
441,
403,
6667,
281,
776,
2151,
285,
38634,
15,
187,
42,
452,
1119,
625,
4102,
326,
1097,
619,
22333,
285,
309,
452,
3374,
342,
3430,
4680,
15,
45734,
13,
359,
513,
417,
923,
9361,
5083,
2920,
13,
347,
2656,
11403,
441,
13,
533,
347,
359,
1158,
253,
1533,
11403,
441,
13,
390,
347,
359,
923,
9361,
347,
3551,
598
] |
What Is Indiana's State Food?
Indiana's cuisine echoes its Midwestern roots.
Indiana is famous nationwide for its sports teams, and worldwide for the Indianapolis 500 race and its prestigious colleges. By contrast, the "Hoosier State" has a rather nondescript culinary identity, which reveals itself only under close investigation. Indiana packs in more than 62,000 farms covering some 14 million acres, and produces traditional agricultural staples, such as corn and soybeans. Out-of-state visitors might be hard-pressed distinguish Indiana’s cuisine from broader Midwestern fare, a situation not improved by the fact that the state has no official state food.
Since Texas enshrined chili as its official state food in 1977, 33 states have named official dishes, snacks and beverages. While Indiana does not have an official state food, Senate resolution No. 5 – passed in 2009 – logged sugar cream pie as the state’s official pie, following hot on the heels of naming water its official beverage. Confusion arose when celebrity chef Bobby Flay claimed the corn dog on behalf of the state during the buildup to Indiana’s Super Bowl XLI appearance. However, while corn undoubtedly features prominently on the state’s culinary landscape, the corn dog’s status is purely unofficial.
Unofficial but ubiquitous, the pork tenderloin sandwich crops up throughout Indiana’s restaurants and diners, having been introduced to the state as wiener schnitzel by German immigrants in the 19th century. Nick Freinstein sold the first breaded pork tenderloin in 1908 from a food cart in Huntingdon, laying the foundation for Nick’s Kitchen, which opened the same year and still stands today. "Gourmet" magazine called breaded pork tenderloin more popular than hamburgers in the state, while the Journal Gazette likens its close association with a particular location to New England’s clam chowder.
Sugar cream pie, also known as Hoosier pie, is a simple but delicious amalgamation of sugar and cream, bound with flour or eggs and flavored with cinnamon, nutmeg and vanilla. The pie is a favorite in mom and pop restaurants, and Indiana Foodways even organizes a Hoosier Pie Trail. This frugal dessert possibly originated from the simple-living Amish and Shaker communities who settled Indiana in the 1850s. The pie is also nicknamed “desperation pie” because of its lack of ingredients from outside the basic pantry. Trying a sugar cream pie was listed as No. 2 of 50 things to do in the state by Indiana Insider.
A scattering of well-known, much-loved American products can trace their roots to Indiana. VanCamp’s Pork and Beans, for example, was first sold from a grocery store in Indianapolis in 1861. By 1909, the brand was the No. 1 canned pork and beans in the country, although it has since been surpassed by Bush’s. Interestingly, the company that acquired VanCamp’s was the first to produce Gatorade, a sports drink more readily associated with Florida. Equally impressively, Indiana played a crucial role in the popularity of baking powder, after Hulman & Company developed Clabber Girl Baking Powder in the late 19th century. The brand remains one of the oldest American brands still in use.<|endoftext|>Wednesday 16th July 2014 SH (Editor)
Planned improvement works at Filton Hill Primary School facing the chop
South Gloucestershire councillors will be asked to vote next week on a report recommending a U-turn on a council commitment to fund building improvement works at Filton Hill Primary School.
The £1.2m project at the school formed part of South Gloucestershire Council’s overall package of future school improvements agreed back in 2012. Filton Hill’s continued inclusion in the programme was confirmed in 2013, but next week the council’s Children and Young People’s Committee will be asked to ditch the project because of other demands on the funds, despite the covering report acknowledging a “historic commitment”.
Filton’s Labour councillors, Roger Hutchinson, Adam Monk and Ian Scott, have reacted with anger and concern to the move. In a statement they said:
“This project has been in the pipeline for many years and our community thought that our funding fight for the improvement work at Filton Hill Primary School had been won when the long-term capital programme was approved. We know that the council’s money is tight, but that is no excuse for moving the goalposts and dumping the scheme now.”
“The report makes clear that the priority capital programme has been stopped as part of the austerity measures introduced by central government, so local parents will see that the promise to Filton Hill is now on the line because of government policy and cuts.”
“However, the council made a clear commitment to the school and should stick to it. We urge the Children and Young People’s Committee to demonstrate that the council plays fair by upholding the decision to proceed with the improvement work at Filton Hill Primary.”
The decision on whether to retain or abandon the planned work at Filton Hill Primary School will be made at the Children and Young People’s Committee meeting in Kingswood on Wednesday 23rd July.
Source: Press release from South Gloucestershire Labour
More information and related links:
Agenda for the meeting on 23rd July 2014
“Review of Priorities” report to be presented at the meeting [PDF]
Schools in Filton (The Journal)
Filton HillFilton Hill primary School
Previous Post:Sign up to save lives at Bristol Donor Centre
Next Post:Appeal for witnesses following armed robbery at Filton Post Office
SH (Editor) says:
Thursday 24th July 2014 at 8:14am
Communication from Cllr Roger Hutchinson:
Yesterday the Children and Young People committee of South Gloucestershire Council broke an 8-year-old promise of a £1.2m improvement to Filton Hill First School, which included work to ensure that the school had a much need new kitchen and would therefore be able to supply hot meals to its young pupils cooked on the premises.
This decision was taken collectively by the Conservatives and Liberal Democrats, while Filton’s three Labour councillors had made a strong submission to the committee on behalf of Filton Hill and the three Labour councillors on the committee voted in support of retaining the investment in the school.
Speaking after the meeting, Cllr Roger Hutchinson said: “I was actually a member of the cabinet at South Gloucestershire when the original decision to invest in Filton Hill was taken and this had been reinforced by its recent inclusion in the long-term capital programme. Filton Hill is in the priority ward, Conygre, in the Filton priority neighbourhood and you would expect that the need for these facilities would be clear. I, together with my colleagues Cllrs Adam Monk and Ian Scott are angry and disappointed with this decision that money has been snatched away from Filton Hill Primary School after years of patiently waiting. Labour councillors voted to honour the commitment but the other parties outvoted us and now the Council is a promise breaker.”
Monday 18th August 2014 at 2:16pm
Sounds like all of them are promise breakers now<|endoftext|>In the Valley of Lost Souls
by Diana van Eyk
Tina and Jess sat at Tina's kitchen table folding pamphlets and listening to reggae music. They'd promised their kids they'd help out with the campaign to stop the pipelines.
“Three hundred and fifty down and two hundred and fifty to go!” laughed Jess, as she completed another pile of ten folders. “I think when we get these done we'll have earned a little treat at the Phoenix, don't you?”
“Yup,” Tina answered, continuing with her folding.
“How did our kids manage to get us involved with their environmental activities?” asked Jess. “I've got to hand it to them both, they're pretty smooth.”
“Yes, they sure are. I bet those persuasive abilities will come in handy when they're all grown up,” Tina laughed.
“Could be worse,” said Jess. “Our kids are saving the world and we're helping them, all the while listening to music and looking forward to a visit to the Phoenix as a reward.”
The phone rang and Tina picked it up. “Hey, Velvet. What's up?” asked Tina, recognizing her number on the call display.
“Mom, you and Jess can stop folding!” Velvet shouted into the phone, excitedly. It was hard to hear her over the cheering and laughter in the background.
“What? I thought you said this was really important to you,” said Tina.
“It was, and I'm so grateful for your and Jess's help, but everything's changed, and we won't need those brochures anymore,” Velvet laughed, “You won't believe it!”
“Believe what?” exclaimed Tina, her skin beginning to prickle.
“Mom, turn on the radio, OK? It's all over the news,” said Velvet, in that self-assured voice teenagers sometimes use towards their parents, before hanging up.
Follow the stories of Dagmar and Ross: middle aged, newly homeless, and with no apparent options.
Invited into a house that appears from the outside to be abandoned, they learn the survival skills needed to live in a society that treats people as disposable. They discover how some have adapted to living in the margins.
As they tune in to the voice of Anima Mundi, the soul of our planet, they weave a path through the fabric of their community, exploring themes of pipelines, despair, loss, and recovery.
Join them as they discover the healing power of caring, restoring our planet, | redpajama | [
1276,
1680,
14614,
434,
2418,
11431,
32,
187,
8207,
8960,
434,
33698,
41249,
697,
11864,
18288,
11465,
15,
187,
8207,
8960,
310,
8530,
23931,
323,
697,
9001,
6671,
13,
285,
11762,
323,
253,
33070,
6783,
5492,
285,
697,
34544,
24267,
15,
2896,
4499,
13,
253,
346,
24721,
375,
1321,
2418,
3,
556,
247,
2581,
27370,
265,
1687,
44604,
6489,
13,
534,
12957,
3139,
760,
762,
2810,
5839,
15,
14614,
30171,
275,
625,
685,
9743,
13,
933,
21976,
10985,
690,
1638,
3041,
20046,
13,
285,
11330,
5899,
17340,
21513,
1868,
13,
824,
347,
14128,
285,
19175,
26022,
15,
6282,
14,
1171,
14,
3409,
12942,
1537,
320,
1892,
14,
30813,
12129,
14614,
457,
84,
33698,
432,
16055,
11864,
18288,
19021,
13,
247,
4112,
417,
5520,
407,
253,
958,
326,
253,
1375,
556,
642,
3565,
1375,
2739,
15,
187,
7542,
6112,
546,
34083,
967,
45568,
347,
697,
3565,
1375,
2739,
275,
14960,
13,
5922,
3054,
452,
4907,
3565,
17114,
13,
36895,
285,
35115,
15,
3900,
14614,
1057,
417,
452,
271,
3565,
1375,
2739,
13,
8907,
6064,
1621,
15,
608,
1108,
4817,
275,
4748,
1108,
24917,
8618,
10777,
3376,
347,
253,
1375,
457,
84,
3565,
3376,
13,
1563,
3511,
327,
253,
25296,
273,
26086,
1824,
697,
3565,
32715,
15,
11204,
2035,
20944,
672,
29192,
26540,
24707,
2884,
333,
7558,
253,
14128,
4370,
327,
11136,
273,
253,
1375,
1309,
253,
1973,
484,
281,
14614,
457,
84,
6053,
19466,
1594,
18206,
7286,
15,
1723,
13,
1223,
14128,
25369,
3386,
46454,
327,
253,
1375,
457,
84,
44604,
13016,
13,
253,
14128,
4370,
457,
84,
3708,
310,
15846,
49562,
15,
187,
54,
2369,
1330,
451,
533,
33079,
13,
253,
23914,
14510,
4213,
249,
25749,
19492,
598,
4768,
14614,
457,
84,
15114,
285,
13223,
398,
13,
1907,
644,
5611,
281,
253,
1375,
347,
259,
1914,
254,
256,
1451,
5432,
293,
407,
5685,
16618,
275,
253,
655,
394,
5331,
15,
13104,
8377,
14130,
4211,
253,
806,
10238,
264,
23914,
14510,
4213,
249,
275,
36754,
432,
247,
2739,
7281,
275,
36044,
9903,
13,
23157,
253,
12153,
323,
13104,
457,
84,
31990,
13,
534,
5485,
253,
1072,
807,
285,
1335,
9572,
3063,
15,
346,
40,
454,
3899,
3,
11338,
1925,
10238,
264,
23914,
14510,
4213,
249,
625,
4633,
685,
288,
1369,
3922,
398,
275,
253,
1375,
13,
1223,
253,
9109,
31749,
5464,
2078,
561,
697,
2810,
5864,
342,
247,
1798,
4328,
281,
1457,
5854,
457,
84,
35219,
448,
319,
491,
15,
187,
52,
16734,
10777,
3376,
13,
671,
1929,
347,
11826,
375,
1321,
3376,
13,
310,
247,
2969,
533,
17319,
47780,
20717,
273,
8618,
285,
10777,
13,
3033,
342,
12274,
390,
11624,
285,
8043,
2149,
342,
33871,
13,
5825,
33373,
285,
26724,
15,
380,
3376,
310,
247,
7583,
275,
2243,
285,
1684,
15114,
13,
285,
14614,
11431,
1576,
1014,
1963,
4219,
247,
11826,
375,
1321,
27695,
21832,
15,
831,
269,
2371,
267,
27519,
6830,
23923,
432,
253,
2969,
14,
22763,
3052,
763,
285,
1608,
4584,
7888,
665,
11371,
14614,
275,
253,
38367,
84,
15,
380,
3376,
310,
671,
15278,
19389,
773,
3229,
468,
318,
3376,
668,
984,
273,
697,
3480,
273,
12696,
432,
3345,
253,
5044,
20018,
610,
15,
47888,
247,
8618,
10777,
3376,
369,
7117,
347,
1621,
15,
374,
273,
2456,
1841,
281,
513,
275,
253,
1375,
407,
14614,
6995,
1334,
15,
187,
34,
11715,
273,
973,
14,
4304,
13,
1199,
14,
77,
3149,
2448,
3580,
476,
10711,
616,
11465,
281,
14614,
15,
10049,
25046,
457,
84,
367,
1064,
285,
2325,
507,
13,
323,
1650,
13,
369,
806,
4211,
432,
247,
25633,
4657,
275,
33070,
275,
42129,
15,
2896,
38624,
13,
253,
7138,
369,
253,
1621,
15,
337,
45364,
23914,
285,
18661,
275,
253,
2586,
13,
3738,
352,
556,
1580,
644,
49634,
407,
11301,
457,
84,
15,
14522,
13,
253,
2567,
326,
9288,
10049,
25046,
457,
84,
369,
253,
806,
281,
4711,
443,
1080,
796,
13,
247,
9001,
5484,
625,
12450,
2330,
342,
7758,
15,
8721,
595,
21097,
1242,
13,
14614,
4546,
247,
9560,
2554,
275,
253,
18395,
273,
17326,
11687,
13,
846,
388,
335,
1342,
708,
6487,
3715,
1639,
357,
589,
14758,
378,
1170,
15181,
491,
275,
253,
3563,
655,
394,
5331,
15,
380,
7138,
4558,
581,
273,
253,
17172,
2448,
17739,
1335,
275,
897,
15,
50279,
28781,
1668,
394,
4163,
4059,
7840,
313,
18030,
10,
187,
3493,
5442,
7756,
2987,
387,
401,
7839,
7061,
20988,
4726,
10268,
253,
38419,
187,
17967,
4051,
47949,
19299,
46395,
641,
588,
320,
2546,
281,
6273,
1735,
2129,
327,
247,
1304,
46705,
247,
530,
14,
14077,
327,
247,
12265,
11847,
281,
3187,
3652,
7756,
2987,
387,
401,
7839,
7061,
20988,
4726,
15,
187,
510,
8157,
18,
15,
19,
78,
2199,
387,
253,
2143,
4447,
629,
273,
3684,
4051,
47949,
19299,
6456,
457,
84,
4583,
5522,
273,
2852,
2143,
11701,
5821,
896,
275,
4050,
15,
401,
7839,
7061,
457,
84,
4821,
11250,
275,
253,
13521,
369,
5783,
275,
4072,
13,
533,
1735,
2129,
253,
12265,
457,
84,
12757,
285,
10231,
6491,
457,
84,
7039,
588,
320,
2546,
281,
39081,
253,
2199,
984,
273,
643,
11684,
327,
253,
8064,
13,
5747,
253,
10985,
1304,
40088,
247,
773,
43957,
11847,
6598,
187,
7047,
1299,
457,
84,
15702,
46395,
641,
13,
19528,
41360,
9258,
13,
13187,
4200,
76,
285,
23259,
7493,
13,
452,
29771,
342,
12700,
285,
4468,
281,
253,
2118,
15,
496,
247,
3908,
597,
753,
27,
187,
1628,
1552,
2199,
556,
644,
275,
253,
15722,
323,
1142,
1107,
285,
776,
3114,
1869,
326,
776,
8362,
3819,
323,
253,
7756,
789,
387,
401,
7839,
7061,
20988,
4726,
574,
644,
1912,
672,
253,
1048,
14,
3945,
5347,
13521,
369,
7012,
15,
844,
871,
326,
253,
12265,
457,
84,
2583,
310,
6863,
13,
533,
326,
310,
642,
16267,
323,
4886,
253,
4736,
28361,
285,
46023,
253,
6974,
1024,
1425,
187,
1628,
510,
1304,
2789,
2590,
326,
253,
11674,
5347,
13521,
556,
644,
6331,
347,
629,
273,
253,
247,
48033,
5593,
5611,
407,
4275,
2208,
13,
594,
1980,
4651,
588,
923,
326,
253,
9023,
281,
401,
7839,
7061,
310,
1024,
327,
253,
1386,
984,
273,
2208,
3646,
285,
12176,
1425,
187,
1628,
6436,
13,
253,
12265,
1160,
247,
2590,
11847,
281,
253,
2143,
285,
943,
7356,
281,
352,
15,
844,
21434,
253,
12757,
285,
10231,
6491,
457,
84,
7039,
281,
7568,
326,
253,
12265,
7120,
4344,
407,
598,
16514,
253,
3061,
281,
4262,
342,
253,
7756,
789,
387,
401,
7839,
7061,
20988,
1425,
187,
510,
3061,
327,
1880,
281,
13280,
390,
9488,
253,
9355,
789,
387,
401,
7839,
7061,
20988,
4726,
588,
320,
1160,
387,
253,
12757,
285,
10231,
6491,
457,
84,
7039,
4804,
275,
20567,
5308,
327,
8330,
3495,
5784,
4163,
15,
187,
7781,
27,
5687,
3727,
432,
3684,
4051,
47949,
19299,
15702,
187,
7673,
1491,
285,
2905,
4859,
27,
187,
8903,
11635,
323,
253,
4804,
327,
3495,
5784,
4163,
4059,
187,
1628,
18658,
273,
13036,
1005,
668,
1304,
281,
320,
3559,
387,
253,
4804,
544,
26423,
62,
187,
28014,
84,
275,
401,
7839,
313,
510,
9109,
10,
187,
7047,
1299,
7061,
7047,
1299,
7061,
3625,
4726,
187,
25925,
5779,
27,
11212,
598,
281,
5321,
4852,
387,
29912,
5037,
263,
12169,
187,
9301,
5779,
27,
40417,
323,
12170,
1563,
12360,
19535,
387,
401,
7839,
5779,
7454,
187,
5648,
313,
18030,
10,
2296,
27,
187,
28549,
2164,
394,
4163,
4059,
387,
854,
27,
1047,
312,
187,
20294,
8518,
432,
330,
620,
83,
19528,
41360,
9258,
27,
187,
43688,
253,
12757,
285,
10231,
6491,
9353,
273,
3684,
4051,
47949,
19299,
6456,
9377,
271,
854,
14,
2913,
14,
744,
9023,
273,
247,
8157,
18,
15,
19,
78,
7756,
281,
401,
7839,
7061,
3973,
4726,
13,
534,
2908,
789,
281,
5416,
326,
253,
2143,
574,
247,
1199,
878,
747,
8576,
285,
651,
3103,
320,
2104,
281,
6186,
3511,
16961,
281,
697,
2872,
30980,
18621,
327,
253,
18702,
15,
187,
1552,
3061,
369,
2668,
26708,
407,
253,
40055,
285,
21739,
10823,
13,
1223,
401,
7839,
457,
84,
1264,
15702,
46395,
641,
574,
1160,
247,
2266,
19529,
281,
253,
9353,
327,
11136,
273,
401,
7839,
7061,
285,
253,
1264,
15702,
46395,
641,
327,
253,
9353,
14285,
275,
1329,
273,
26179,
253,
8149,
275,
253,
2143,
15,
187,
28326,
846,
253,
4804,
13,
330,
620,
83,
19528,
41360,
9258,
753,
27,
773,
42,
369,
2686,
247,
3558,
273,
253,
19211,
387,
3684,
4051,
47949,
19299,
672,
253,
3236,
3061,
281,
1718,
275,
401,
7839,
7061,
369,
2668,
285,
436,
574,
644,
28809,
407,
697,
3332,
11250,
275,
253,
1048,
14,
3945,
5347,
13521,
15,
401,
7839,
7061,
310,
275,
253,
11674,
18588,
13,
1716,
11550,
250,
13,
275,
253,
401,
7839,
11674,
24092,
285,
368,
651,
1902,
326,
253,
878,
323,
841,
9189,
651,
320,
2590,
15,
309,
13,
2366,
342,
619,
11651,
330,
620,
2967,
13187,
4200,
76,
285,
23259,
7493,
403,
11790,
285,
19271,
342,
436,
3061,
326,
2583,
556,
644,
48134,
1977,
432,
401,
7839,
7061,
20988,
4726,
846,
1107,
273,
46606,
6179,
15,
15702,
46395,
641,
14285,
281,
19248,
253,
11847,
533,
253,
643,
4676,
562,
87,
4225,
441,
285,
1024,
253,
6456,
310,
247,
9023,
2740,
254,
1425,
187,
26788,
1283,
394,
4223,
4059,
387,
374,
27,
1036,
2617,
187,
41099,
751,
512,
273,
731,
403,
9023,
2740,
398,
1024,
50279,
688,
253,
10947,
273,
26872,
25293,
84,
187,
1615,
33240,
3889,
444,
25073,
187,
53,
1758,
285,
18827,
2206,
387,
45655,
434,
8576,
2829,
23205,
41985,
6639,
285,
11298,
281,
810,
27943,
3440,
15,
1583,
1871,
12316,
616,
5753,
597,
1871,
1361,
562,
342,
253,
4544,
281,
3523,
253,
44387,
15,
187,
1628,
11831,
4289,
285,
13719,
1066,
285,
767,
4289,
285,
13719,
281,
564,
11602,
12918,
18827,
13,
347,
703,
6312,
1529,
19176,
273,
3578,
32160,
15,
773,
42,
1158,
672,
359,
755,
841,
2218,
359,
1833,
452,
12431,
247,
1652,
1555,
387,
253,
21809,
13,
1053,
626,
368,
7721,
187,
1628,
58,
484,
1806,
45655,
9577,
13,
11440,
342,
617,
23205,
15,
187,
1628,
2347,
858,
776,
5753,
8722,
281,
755,
441,
3206,
342,
616,
6938,
4712,
7721,
2546,
18827,
15,
773,
42,
1849,
1694,
281,
1133,
352,
281,
731,
1097,
13,
597,
1472,
3965,
6032,
1425,
187,
1628,
4374,
13,
597,
2119,
403,
15,
309,
701,
1110,
34593,
15277,
588,
1705,
275,
24783,
672,
597,
1472,
512,
8228,
598,
1806,
45655,
12918,
15,
187,
1628,
18179,
320,
7197,
1806,
753,
18827,
15,
773,
6067,
5753,
403,
13868,
253,
1533,
285,
359,
1472,
9073,
731,
13,
512,
253,
1223,
11298,
281,
3440,
285,
2819,
3579,
281,
247,
4143,
281,
253,
21809,
347,
247,
10921,
1425,
187,
510,
4481,
25791,
285,
45655,
5055,
352,
598,
15,
773,
8262,
13,
22484,
14763,
15,
1737,
434,
598,
7721,
2546,
45655,
13,
26182,
617,
1180,
327,
253,
1067,
3148,
15,
187,
1628,
24681,
13,
368,
285,
18827,
476,
3523,
23205,
11602,
22484,
14763,
19294,
715,
253,
4481,
13,
9049,
314,
15,
733,
369,
1892,
281,
4089,
617,
689,
253,
45927,
285,
22569,
275,
253,
4114,
15,
187,
1628,
1276,
32,
309,
1869,
368,
753,
436,
369,
1663,
1774,
281,
368,
1806,
753,
45655,
15,
187,
1628,
1147,
369,
13,
285,
309,
1353,
594,
14442,
323,
634,
285,
18827,
434,
1361,
13,
533,
3253,
434,
4391,
13,
285,
359,
1912,
626,
878,
1110,
48762,
980,
10542,
1806,
22484,
14763,
12918,
13,
773,
1394,
1912,
626,
2868,
352,
11602,
187,
1628,
15343,
12876,
752,
7721,
26750,
45655,
13,
617,
4808,
5068,
281,
37937,
282,
15,
187,
1628,
24681,
13,
1614,
327,
253,
5553,
13,
10826,
32,
733,
434,
512,
689,
253,
3668,
1806,
753,
22484,
14763,
13,
275,
326,
1881,
14,
515,
1520,
4318,
31147,
4536,
897,
4404,
616,
4651,
13,
1078,
14203,
598,
15,
187,
18905,
253,
6281,
273,
49508,
4175,
285,
13625,
27,
4766,
10652,
13,
9841,
20783,
13,
285,
342,
642,
5165,
4610,
15,
187,
13836,
959,
715,
247,
2419,
326,
4620,
432,
253,
3345,
281,
320,
13966,
13,
597,
3037,
253,
5788,
6936,
3058,
281,
3153,
275,
247,
5948,
326,
26574,
952,
347,
34679,
15,
1583,
9413,
849,
690,
452,
12956,
281,
3811,
275,
253,
24390,
15,
187,
1909,
597,
19928,
275,
281,
253,
4318,
273,
743,
8032,
353,
1504,
74,
13,
253,
7765,
273,
776,
8859,
13,
597,
359,
1123,
247,
1854,
949,
253,
8067,
273,
616,
3114,
13,
18216,
16876,
273,
44387,
13,
25813,
13,
2957,
13,
285,
7355,
15,
187,
22196,
731,
347,
597,
9413,
253,
13255,
1612,
273,
23374,
13,
33269,
776,
8859,
13
] |
(HOSTNAME)
dhcp.update_lease('net_id', '192.168.1.1', 120)
plug.assert_has_calls(
[mock.call().update_lease_expiration(
'net_id', '192.168.1.1', 120)])
self.assertTrue(log.called)
self.assertTrue(dhcp.needs_resync)
def _test_sync_state_helper(self, known_networks, active_networks):
with mock.patch('quantum.agent.dhcp_agent.DhcpPluginApi') as plug:
mock_plugin = mock.Mock()
mock_plugin.get_active_networks.return_value = active_networks
plug.return_value = mock_plugin
dhcp = dhcp_agent.DhcpAgent(HOSTNAME)
attrs_to_mock = dict(
[(a, mock.DEFAULT) for a in
['refresh_dhcp_helper', 'disable_dhcp_helper', 'cache']])
with mock.patch.multiple(dhcp, **attrs_to_mock) as mocks:
mocks['cache'].get_network_ids.return_value = known_networks
dhcp.sync_state()
exp_refresh = [
mock.call(net_id) for net_id in active_networks]
diff = set(known_networks) - set(active_networks)
exp_disable = [mock.call(net_id) for net_id in diff]
mocks['cache'].assert_has_calls([mock.call.get_network_ids()])
mocks['refresh_dhcp_helper'].assert_has_called(exp_refresh)
mocks['disable_dhcp_helper'].assert_has_called(exp_disable)
def test_sync_state_initial(self):
self._test_sync_state_helper([], ['a'])
def test_sync_state_same(self):
self._test_sync_state_helper(['a'], ['a'])
def test_sync_state_disabled_net(self):
self._test_sync_state_helper(['b'], ['a'])
def test_sync_state_plugin_error(self):
with mock.patch('quantum.agent.dhcp_agent.DhcpPluginApi') as plug:
mock_plugin = mock.Mock()
mock_plugin.get_active_networks.side_effect = Exception
plug.return_value = mock_plugin
with mock.patch.object(dhcp_agent.LOG, 'exception') as log:
dhcp = dhcp_agent.DhcpAgent(HOSTNAME)
dhcp.sync_state()
self.assertTrue(log.called)
self.assertTrue(dhcp.needs_resync)
def test_periodic_resync(self):
dhcp = dhcp_agent.DhcpAgent(HOSTNAME)
with mock.patch.object(dhcp_agent.eventlet,'spawn') as spawn:
dhcp.periodic_resync()
spawn.assert_called_once_with(dhcp._periodic_resync_helper)
def test_periodoc_resync_helper(self):
with mock.patch.object(dhcp_agent.eventlet,'sleep') as sleep:
dhcp = dhcp_agent.DhcpAgent(HOSTNAME)
dhcp.needs_resync = True
with mock.patch.object(dhcp,'sync_state') as sync_state:
sync_state.side_effect = RuntimeError
with testtools.ExpectedException(RuntimeError):
dhcp._periodic_resync_helper()
sync_state.assert_called_once_with()
sleep.assert_called_once_with(dhcp.conf.resync_interval)
self.assertFalse(dhcp.needs_resync)
def test_populate_cache_on_start_without_active_networks_support(self):
# emul dhcp driver that doesn't support retrieving of active networks
self.driver.existing_dhcp_networks.side_effect = NotImplementedError
with mock.patch.object(dhcp_agent.LOG, 'debug') as log:
dhcp = dhcp_agent.DhcpAgent(HOSTNAME)
self.driver.existing_dhcp_networks.assert_called_once_with(
dhcp.conf,
cfg.CONF.root_helper
)
self.assertFalse(dhcp.cache.get_network_ids())
self.assertTrue(log.called)
def test_populate_cache_on_start(self):
networks = ['aaa', 'bbb']
self.driver.existing_dhcp_networks.return_value = networks
dhcp = dhcp_agent.DhcpAgent(HOSTNAME)
self.driver.existing_dhcp_networks.assert_called_once_with(
dhcp.conf,
cfg.CONF.root_helper
)
self.assertEquals(set(networks), set(dhcp.cache.get_network_ids()))
class TestLogArgs(base.BaseTestCase):
def test_log_args_without_log_dir_and_file(self):
conf_dict = {'debug': True,
'verbose': False,
'log_dir': None,
'log_file': None}
conf = dhcp_agent.DictModel(conf_dict)
expected_args = ['--debug']
args = config.get_log_args(conf, 'log_file_name')
self.assertEqual(expected_args, args)
def test_log_args_without_log_file(self):
conf_dict = {'debug': True,
'verbose': True,
'log_dir': '/etc/tests',
'log_file': None}
conf = dhcp_agent.DictModel(conf_dict)
expected_args = ['--debug', '--verbose',
'--log-file=log_file_name',
'--log-dir=/etc/tests']
args = config.get_log_args(conf, 'log_file_name')
self.assertEqual(expected_args, args)
def test_log_args_with_log_dir_and_file(self):
conf_dict = {'debug': True,
'verbose': False,
'log_dir': '/etc/tests',
'log_file': 'tests/filelog'}
conf = dhcp_agent.DictModel(conf_dict)
expected_args = ['--debug',
'--log-file=log_file_name',
'--log-dir=/etc/tests/tests']
args = config.get_log_args(conf, 'log_file_name')
self.assertEqual(expected_args, args)
def test_log_args_without_log_dir(self):
conf_dict = {'debug': True,
'verbose': False,
'log_file': 'tests/filelog',
'log_dir': None}
conf = dhcp_agent.DictModel(conf_dict)
expected_args = ['--debug',
'--log-file=log_file_name',
'--log-dir=tests']
args = config.get_log_args(conf, 'log_file_name')
self.assertEqual(expected_args, args)
class TestDhcpAgentEventHandler(base.BaseTestCase):
def setUp(self):
super(TestDhcpAgentEventHandler, self).setUp()
cfg.CONF.register_opts(dhcp_agent.DeviceManager.OPTS)
cfg.CONF.register_opts(dhcp_agent.DhcpLeaseRelay.OPTS)
cfg.CONF.register_opts(dhcp.OPTS)
cfg.CONF.set_override('interface_driver',
'quantum.agent.linux.interface.NullDriver')
config.register_root_helper(cfg.CONF)
cfg.CONF.register_opts(dhcp_agent.DhcpAgent.OPTS)
self.plugin_p = mock.patch('quantum.agent.dhcp_agent.DhcpPluginApi')
plugin_cls = self.plugin_p.start()
self.plugin = mock.Mock()
plugin_cls.return | redpajama | [
9,
31621,
9536,
10,
187,
50262,
20402,
7693,
15,
11183,
64,
3621,
2073,
3024,
64,
301,
1383,
686,
14403,
15,
13851,
15,
18,
15,
18,
1383,
7346,
10,
187,
50262,
17381,
15,
8271,
64,
7110,
64,
4065,
84,
9,
187,
50258,
60,
24568,
15,
4065,
5023,
11183,
64,
3621,
64,
4347,
10153,
9,
187,
50254,
8,
3024,
64,
301,
1383,
686,
14403,
15,
13851,
15,
18,
15,
18,
1383,
7346,
10,
3291,
535,
50262,
1286,
15,
8271,
5088,
9,
2808,
15,
8890,
10,
187,
50262,
1286,
15,
8271,
5088,
9,
20402,
7693,
15,
50234,
64,
373,
6665,
10,
535,
50274,
1545,
795,
2566,
64,
24335,
64,
3409,
64,
28316,
9,
1286,
13,
1929,
64,
3024,
4896,
13,
3939,
64,
3024,
4896,
2262,
187,
50270,
3113,
13031,
15,
20559,
2073,
46320,
15,
12788,
15,
20402,
7693,
64,
12788,
15,
37,
73,
7693,
23836,
22444,
3401,
347,
10358,
27,
187,
50266,
24568,
64,
16895,
426,
13031,
15,
25041,
1082,
187,
50266,
24568,
64,
16895,
15,
788,
64,
4507,
64,
3024,
4896,
15,
2309,
64,
2877,
426,
3939,
64,
3024,
4896,
187,
50266,
17381,
15,
2309,
64,
2877,
426,
13031,
64,
16895,
535,
50266,
20402,
7693,
426,
42158,
7693,
64,
12788,
15,
37,
73,
7693,
28172,
9,
31621,
9536,
10,
535,
50266,
46707,
64,
936,
64,
24568,
426,
10886,
9,
187,
50262,
15830,
66,
13,
13031,
15,
25409,
10,
323,
247,
275,
187,
50261,
5013,
38664,
64,
20402,
7693,
64,
28316,
1383,
686,
25902,
64,
20402,
7693,
64,
28316,
1383,
686,
12985,
6038,
3291,
535,
50266,
3113,
13031,
15,
20559,
15,
34263,
9,
20402,
7693,
13,
1401,
46707,
64,
936,
64,
24568,
10,
347,
278,
4121,
27,
187,
50262,
78,
4121,
5013,
12985,
36676,
788,
64,
18428,
64,
2352,
15,
2309,
64,
2877,
426,
1929,
64,
3024,
4896,
187,
50262,
20402,
7693,
15,
24335,
64,
3409,
1082,
535,
50262,
4347,
64,
38664,
426,
544,
187,
50258,
24568,
15,
4065,
9,
3024,
64,
301,
10,
323,
2036,
64,
301,
275,
3939,
64,
3024,
4896,
62,
535,
50262,
13437,
426,
873,
9,
4304,
64,
3024,
4896,
10,
428,
873,
9,
4507,
64,
3024,
4896,
10,
187,
50262,
4347,
64,
25902,
426,
544,
24568,
15,
4065,
9,
3024,
64,
301,
10,
323,
2036,
64,
301,
275,
2171,
62,
535,
50262,
78,
4121,
5013,
12985,
36676,
8271,
64,
7110,
64,
4065,
84,
8850,
24568,
15,
4065,
15,
788,
64,
18428,
64,
2352,
1082,
3291,
187,
50262,
78,
4121,
5013,
38664,
64,
20402,
7693,
64,
28316,
36676,
8271,
64,
7110,
64,
8890,
9,
4347,
64,
38664,
10,
187,
50262,
78,
4121,
5013,
25902,
64,
20402,
7693,
64,
28316,
36676,
8271,
64,
7110,
64,
8890,
9,
4347,
64,
25902,
10,
535,
50274,
1545,
1071,
64,
24335,
64,
3409,
64,
19078,
9,
1286,
2262,
187,
50270,
1286,
3333,
2566,
64,
24335,
64,
3409,
64,
28316,
8850,
1092,
14412,
66,
23405,
535,
50274,
1545,
1071,
64,
24335,
64,
3409,
64,
18941,
9,
1286,
2262,
187,
50270,
1286,
3333,
2566,
64,
24335,
64,
3409,
64,
28316,
40116,
66,
16445,
14412,
66,
23405,
535,
50274,
1545,
1071,
64,
24335,
64,
3409,
64,
25050,
64,
3024,
9,
1286,
2262,
187,
50270,
1286,
3333,
2566,
64,
24335,
64,
3409,
64,
28316,
40116,
67,
16445,
14412,
66,
23405,
535,
50274,
1545,
1071,
64,
24335,
64,
3409,
64,
16895,
64,
3775,
9,
1286,
2262,
187,
50270,
3113,
13031,
15,
20559,
2073,
46320,
15,
12788,
15,
20402,
7693,
64,
12788,
15,
37,
73,
7693,
23836,
22444,
3401,
347,
10358,
27,
187,
50266,
24568,
64,
16895,
426,
13031,
15,
25041,
1082,
187,
50266,
24568,
64,
16895,
15,
788,
64,
4507,
64,
3024,
4896,
15,
2189,
64,
8222,
426,
19563,
187,
50266,
17381,
15,
2309,
64,
2877,
426,
13031,
64,
16895,
535,
50266,
3113,
13031,
15,
20559,
15,
6082,
9,
20402,
7693,
64,
12788,
15,
21273,
13,
686,
22558,
3401,
347,
2412,
27,
187,
50262,
20402,
7693,
426,
42158,
7693,
64,
12788,
15,
37,
73,
7693,
28172,
9,
31621,
9536,
10,
187,
50262,
20402,
7693,
15,
24335,
64,
3409,
1082,
535,
50262,
1286,
15,
8271,
5088,
9,
2808,
15,
8890,
10,
187,
50262,
1286,
15,
8271,
5088,
9,
20402,
7693,
15,
50234,
64,
373,
6665,
10,
535,
50274,
1545,
1071,
64,
38847,
64,
373,
6665,
9,
1286,
2262,
187,
50270,
20402,
7693,
426,
42158,
7693,
64,
12788,
15,
37,
73,
7693,
28172,
9,
31621,
9536,
10,
187,
50270,
3113,
13031,
15,
20559,
15,
6082,
9,
20402,
7693,
64,
12788,
15,
8045,
1059,
13,
686,
1033,
17074,
3401,
347,
30163,
27,
187,
50266,
20402,
7693,
15,
38847,
64,
373,
6665,
1082,
187,
50266,
1033,
17074,
15,
8271,
64,
8890,
64,
19131,
64,
3113,
9,
20402,
7693,
3333,
38847,
64,
373,
6665,
64,
28316,
10,
535,
50274,
1545,
1071,
64,
17911,
406,
64,
373,
6665,
64,
28316,
9,
1286,
2262,
187,
50270,
3113,
13031,
15,
20559,
15,
6082,
9,
20402,
7693,
64,
12788,
15,
8045,
1059,
13,
686,
28850,
3401,
347,
4600,
27,
187,
50266,
20402,
7693,
426,
42158,
7693,
64,
12788,
15,
37,
73,
7693,
28172,
9,
31621,
9536,
10,
187,
50266,
20402,
7693,
15,
50234,
64,
373,
6665,
426,
11793,
187,
50266,
3113,
13031,
15,
20559,
15,
6082,
9,
20402,
7693,
13,
686,
24335,
64,
3409,
3401,
347,
20319,
64,
3409,
27,
187,
50262,
24335,
64,
3409,
15,
2189,
64,
8222,
426,
39029,
4756,
187,
50262,
3113,
1071,
16885,
15,
35481,
5330,
9,
17577,
4756,
2262,
187,
50258,
20402,
7693,
3333,
38847,
64,
373,
6665,
64,
28316,
1082,
187,
50262,
24335,
64,
3409,
15,
8271,
64,
8890,
64,
19131,
64,
3113,
1082,
187,
50262,
28850,
15,
8271,
64,
8890,
64,
19131,
64,
3113,
9,
20402,
7693,
15,
8259,
15,
373,
6665,
64,
31251,
10,
187,
50262,
1286,
15,
8271,
5653,
9,
20402,
7693,
15,
50234,
64,
373,
6665,
10,
535,
50274,
1545,
1071,
64,
9576,
4187,
64,
12985,
64,
251,
64,
5478,
64,
14920,
64,
4507,
64,
3024,
4896,
64,
13821,
9,
1286,
2262,
187,
50270,
4,
802,
335,
42158,
7693,
6254,
326,
2506,
626,
1329,
48484,
273,
3939,
6928,
187,
50270,
1286,
15,
17440,
15,
20137,
64,
20402,
7693,
64,
3024,
4896,
15,
2189,
64,
8222,
426,
3105,
3351,
38758,
4756,
535,
50270,
3113,
13031,
15,
20559,
15,
6082,
9,
20402,
7693,
64,
12788,
15,
21273,
13,
686,
13125,
3401,
347,
2412,
27,
187,
50266,
20402,
7693,
426,
42158,
7693,
64,
12788,
15,
37,
73,
7693,
28172,
9,
31621,
9536,
10,
535,
50266,
1286,
15,
17440,
15,
20137,
64,
20402,
7693,
64,
3024,
4896,
15,
8271,
64,
8890,
64,
19131,
64,
3113,
9,
187,
50262,
20402,
7693,
15,
8259,
13,
187,
50262,
22181,
15,
44286,
15,
9723,
64,
28316,
187,
50266,
10,
535,
50266,
1286,
15,
8271,
5653,
9,
20402,
7693,
15,
12985,
15,
788,
64,
18428,
64,
2352,
6649,
187,
50266,
1286,
15,
8271,
5088,
9,
2808,
15,
8890,
10,
535,
50274,
1545,
1071,
64,
9576,
4187,
64,
12985,
64,
251,
64,
5478,
9,
1286,
2262,
187,
50270,
3024,
4896,
426,
14412,
39639,
1383,
686,
4482,
67,
6038,
187,
50270,
1286,
15,
17440,
15,
20137,
64,
20402,
7693,
64,
3024,
4896,
15,
2309,
64,
2877,
426,
6928,
535,
50270,
20402,
7693,
426,
42158,
7693,
64,
12788,
15,
37,
73,
7693,
28172,
9,
31621,
9536,
10,
535,
50270,
1286,
15,
17440,
15,
20137,
64,
20402,
7693,
64,
3024,
4896,
15,
8271,
64,
8890,
64,
19131,
64,
3113,
9,
187,
50266,
20402,
7693,
15,
8259,
13,
187,
50266,
22181,
15,
44286,
15,
9723,
64,
28316,
187,
50270,
10,
535,
50270,
1286,
15,
32315,
9,
1178,
9,
3024,
4896,
582,
873,
9,
20402,
7693,
15,
12985,
15,
788,
64,
18428,
64,
2352,
32875,
535,
187,
2437,
6004,
6800,
16523,
9,
4793,
15,
8932,
40595,
2262,
535,
50274,
1545,
1071,
64,
2808,
64,
8854,
64,
14920,
64,
2808,
64,
7341,
64,
395,
64,
3140,
9,
1286,
2262,
187,
50270,
8259,
64,
8102,
426,
27428,
13125,
5295,
11793,
13,
187,
50257,
1849,
13041,
583,
5295,
16708,
13,
187,
50257,
8,
2808,
64,
7341,
5295,
8256,
13,
187,
50257,
8,
2808,
64,
3140,
5295,
8256,
94,
187,
50270,
8259,
426,
42158,
7693,
64,
12788,
15,
38592,
7104,
9,
8259,
64,
8102,
10,
187,
50270,
9127,
64,
8854,
426,
14412,
283,
13125,
6038,
187,
50270,
8854,
426,
3596,
15,
788,
64,
2808,
64,
8854,
9,
8259,
13,
686,
2808,
64,
3140,
64,
1590,
3401,
187,
50270,
1286,
15,
34046,
9,
9127,
64,
8854,
13,
13059,
10,
535,
50274,
1545,
1071,
64,
2808,
64,
8854,
64,
14920,
64,
2808,
64,
3140,
9,
1286,
2262,
187,
50270,
8259,
64,
8102,
426,
27428,
13125,
5295,
11793,
13,
187,
50257,
1849,
13041,
583,
5295,
11793,
13,
187,
50257,
8,
2808,
64,
7341,
5295,
17882,
14069,
16,
19453,
1383,
187,
50257,
8,
2808,
64,
3140,
5295,
8256,
94,
187,
50270,
8259,
426,
42158,
7693,
64,
12788,
15,
38592,
7104,
9,
8259,
64,
8102,
10,
187,
50270,
9127,
64,
8854,
426,
14412,
283,
13125,
1383,
686,
283,
49737,
1383,
187,
50254,
686,
283,
2808,
14,
3140,
30,
2808,
64,
3140,
64,
1590,
1383,
187,
50254,
686,
283,
2808,
14,
7341,
33870,
14069,
16,
19453,
6038,
187,
50270,
8854,
426,
3596,
15,
788,
64,
2808,
64,
8854,
9,
8259,
13,
686,
2808,
64,
3140,
64,
1590,
3401,
187,
50270,
1286,
15,
34046,
9,
9127,
64,
8854,
13,
13059,
10,
535,
50274,
1545,
1071,
64,
2808,
64,
8854,
64,
3113,
64,
2808,
64,
7341,
64,
395,
64,
3140,
9,
1286,
2262,
187,
50270,
8259,
64,
8102,
426,
27428,
13125,
5295,
11793,
13,
187,
50257,
1849,
13041,
583,
5295,
16708,
13,
187,
50257,
8,
2808,
64,
7341,
5295,
17882,
14069,
16,
19453,
1383,
187,
50257,
8,
2808,
64,
3140,
5295,
686,
19453,
16,
3140,
2808,
13995,
187,
50270,
8259,
426,
42158,
7693,
64,
12788,
15,
38592,
7104,
9,
8259,
64,
8102,
10,
187,
50270,
9127,
64,
8854,
426,
14412,
283,
13125,
1383,
187,
50254,
686,
283,
2808,
14,
3140,
30,
2808,
64,
3140,
64,
1590,
1383,
187,
50254,
686,
283,
2808,
14,
7341,
33870,
14069,
16,
19453,
16,
19453,
6038,
187,
50270,
8854,
426,
3596,
15,
788,
64,
2808,
64,
8854,
9,
8259,
13,
686,
2808,
64,
3140,
64,
1590,
3401,
187,
50270,
1286,
15,
34046,
9,
9127,
64,
8854,
13,
13059,
10,
535,
50274,
1545,
1071,
64,
2808,
64,
8854,
64,
14920,
64,
2808,
64,
7341,
9,
1286,
2262,
187,
50270,
8259,
64,
8102,
426,
27428,
13125,
5295,
11793,
13,
187,
50257,
1849,
13041,
583,
5295,
16708,
13,
187,
50257,
8,
2808,
64,
3140,
5295,
686,
19453,
16,
3140,
2808,
1383,
187,
50257,
8,
2808,
64,
7341,
5295,
8256,
94,
187,
50270,
8259,
426,
42158,
7693,
64,
12788,
15,
38592,
7104,
9,
8259,
64,
8102,
10,
187,
50270,
9127,
64,
8854,
426,
14412,
283,
13125,
1383,
187,
50254,
686,
283,
2808,
14,
3140,
30,
2808,
64,
3140,
64,
1590,
1383,
187,
50254,
686,
283,
2808,
14,
7341,
30,
19453,
6038,
187,
50270,
8854,
426,
3596,
15,
788,
64,
2808,
64,
8854,
9,
8259,
13,
686,
2808,
64,
3140,
64,
1590,
3401,
187,
50270,
1286,
15,
34046,
9,
9127,
64,
8854,
13,
13059,
10,
535,
187,
2437,
6004,
37,
73,
7693,
28172,
5949,
9294,
9,
4793,
15,
8932,
40595,
2262,
187,
50274,
1545,
873,
5683,
9,
1286,
2262,
187,
50270,
12185,
9,
5089,
37,
73,
7693,
28172,
5949,
9294,
13,
1881,
481,
1178,
5683,
1082,
187,
50270,
22181,
15,
44286,
15,
15905,
64,
28330,
9,
20402,
7693,
64,
12788,
15,
15982,
8224,
15,
2795,
6901,
10,
187,
50270,
22181,
15,
44286,
15,
15905,
64,
28330,
9,
20402,
7693,
64,
12788,
15,
37,
73,
7693,
4015,
511,
9112,
333,
15,
2795,
6901,
10,
187,
50270,
22181,
15,
44286,
15,
15905,
64,
28330,
9,
20402,
7693,
15,
2795,
6901,
10,
187,
50270,
22181,
15,
44286,
15,
1178,
64,
37488,
2073,
15049,
64,
17440,
1383,
187,
50254,
50272,
8,
46320,
15,
12788,
15,
13217,
15,
15049,
15,
13141,
25603,
3401,
187,
50270,
5397,
15,
15905,
64,
9723,
64,
28316,
9,
22181,
15,
44286,
10,
187,
50270,
22181,
15,
44286,
15,
15905,
64,
28330,
9,
20402,
7693,
64,
12788,
15,
37,
73,
7693,
28172,
15,
2795,
6901,
10,
535,
50270,
1286,
15,
16895,
64,
81,
426,
13031,
15,
20559,
2073,
46320,
15,
12788,
15,
20402,
7693,
64,
12788,
15,
37,
73,
7693,
23836,
22444,
3401,
187,
50270,
16895,
64,
40087,
426,
1881,
15,
16895,
64,
81,
15,
5478,
1082,
187,
50270,
1286,
15,
16895,
426,
13031,
15,
25041,
1082,
187,
50270,
16895,
64,
40087,
15,
2309
] |
US military officials say some members of the Republican Guard had evidently obeyed the leaflets the US air-dropped during the war in specially adapted "Rockeye bombs" normally designed to release cluster bombs. The leaflets told Iraqis how to position their weapons to tell the Americans they didn't want to fight. Other Republican Guards gave up once they saw that the Americans had already taken control of Baghdad and that people were celebrating their arrival.
The swift fall of Baghdad shocked the Arab world. As I left Iraq on April 15, traveling back to the United States through Jordan, people I met seemed both disappointed and embarrassed that Baghdad—a fellow Arab and Islamic capital—had fallen to the Americans without a fight. When I traveled back to Baghdad ten weeks later, I found the same Jordanians celebrating the daily attacks against American soldiers in post-war Iraq. It was their way of saying, "See, I told you it would be difficult."
# CHAPTER EIGHT
I GRINNED TO MYSELF on July 2 when I saw US troops manning the checkpoint along the border between Jordan and Iraq where only five months earlier I'd spent so many nervous hours hiding reporting equipment, passing out bribes like lollipops and giving free rides to Iraqi intelligence officers so they'd look the other way at my illegal satellite phone and flak jacket. The GIs, including one very young-looking man who said he was from Florida and had chewing tobacco stuffed into his bulging lower lip, were dressed in camouflage vests and helmets. They were smiling and very affable. "Hey, he's American!" the soldier with dip in his lip yelled to his comrades at the gate, waving me through without inspecting my GMC Suburban. The troops couldn't have been more different from the sinister Iraqi crooks who had worked there before, many of whom—much to my surprise—still had jobs at the checkpoint. My driver leered at one of the former customs/intelligence officials who was acting as a translator/facilitator, according to the handwritten laminated badge pinned to his shirt.
"I know that guy," my driver grumbled under his breath. "If the American soldiers weren't here, I'd kill him." My driver said that for years the customs official had extorted money from him, confiscating (read: stealing) music tapes from his car and demanding that he bring him pornographic CD-ROMs from Baghdad. My driver's rage was a harbinger of what I would soon find in Baghdad, where three decades of bitter scores were being settled one by one. It was also disturbing to see that the Americans were so dependent on Iraqis with shady pasts, although that was almost inevitable, because nearly anyone who had even a little authority under Saddam had created enemies. The alternative would have been for the Americans to have found new employees with no experience for nearly every job, which would have been a logistical nightmare.
I'd never seen the border as crowded as it was on that hot, dusty day. There were hundreds of cars, trucks and trailers jockeying for position in the morning sun. The temperature was already pushing a hundred degrees at ten o'clock. Many of the vehicles trying to cram through the funnel of traffic at the border were window-sticker new, heading into Iraq for sale. It was encouraging because I took the traffic as a sign that the Iraqi economy—strangled by decades of international sanctions, neglect, corruption and mismanagement—was starting to flourish. I saw that small rusty oil tankers, which had formerly driven into Jordan every day full of cheap Iraqi fuel, were still actively engaged in the cross-border trade. From the border, it seemed like business in Iraq was booming.
At the checkpoint, I also met an Iraqi American from the Midwest who was traveling to Baghdad for the first time, in search of his family. He didn't know how many people were alive or what had happened to them. All he had were a few names and an address in a town near Karbala where he thought his extended family lived. He also made me optimistic about Iraq's future, and I was genuinely excited to see what had happened in Iraq. I was upbeat despite what I'd heard about the growing frustration Iraqis were feeling toward the Americans and the increasing number of attacks against US forces. I figured it was just part of Iraq's growing pains. I still do.
Little had visibly changed along the desert road between Jordan and Baghdad since I'd left just after the main battles ended. The burned-out carcasses of Iraqi armored vehicles, along with scores of charred and bullet-ridden civilian cars and buses, were still scattered along the highway like roadkill.
When I pulled into Baghdad, however, it was obvious that much had changed in the ten weeks I'd been away. I saw TV satellite dishes, long forbidden by the Iraqi government, for sale on practically every major commercial street. Iraqis could now watch al-Jazeera and Al-Arabiya (a new Arabic news channel that's even more controversial and politically charged than al-Jazeera) for the first time, in addition to pornographic movies from Eastern Europe.
In Baghdad, stores sold Thuraya telephones, handheld satellite phones with GSM and GPS functions, which had once been the emblem of all that was verboten by the former government. Six people accused of spying were executed at the Abu Greib prison two days before the first bombs fell on Baghdad primarily because they'd been caught with Thuraya phones, according to a former prison guard. Iraq had been especially sensitive about the Thuraya because its calls are difficult to trace and because the phone's GPS locator makes it a useful targeting device.
Driving into a chaotic Baghdad intersection, I also saw an old man hawking about a dozen newspapers pinned under his arm. He was desperately trying to make change before his customer sped away. I eagerly bought all the papers he had. They were all new and had optimistic, forward-looking titles like _The Dawn of Baghdad, The Renaissance_ and _The New Iraq._ Over the next few days, I discovered that nearly every Iraqi with the slightest bit of political ambition seemed to have opened a newspaper after Saddam's fall, including Mohammed al-Hamdani, whom I first met at one of the three pastry shops he owned, famous for its little barrel-shaped filo-dough sweets filled with cheese and smothered in honey. They're called women's upper arms because of their chunky, tube-like shape, much like al-Hamdani himself.
Al-Hamdani's day job was still managing his pastry shops, but after hours he went to the office where he'd set up new computers and a dozen reporters. Al-Hamdani called his newspaper _Those Who Have Been Freed._ Like most of the new Iraqi newspapers, _Those Who Have Been Freed_ was tabloid size, opinionated and highly critical of everyone and everything. Most of the articles and editorials in the eight-page newspaper reflected a blend of fiery Iraqi nationalism, grassroots socialism and Islamic fundamentalism. This cocktail of political thinking seemed to be emerging as the most popular political outlook in post-war Iraq. If there had been a newspaper or political party called something like The Islamic Union of Conspiratorial Disgruntled Patriotic Iraqis, I think it would have been right on the money.
Like most newspapers, _Those Who Have Been Freed_ denounced the American occupation authority and, even more vociferously, its competitors, the other new newspapers in Baghdad. The spite the new newspapers expressed for one another was venomous and they routinely accused one another of stealing stories, having links to the Baath party or simply of theft.
Only a few months earlier, it would have been impossible for al-Hamdani—a proud man in his forties with an easy smile and a squat build—to have opened a newspaper. There had only been a handful of state-run newspapers under Saddam and all of their chief editors had been closely scrutinized by the Iraqi intelligence agencies. Now, there were several hundred completely unregulated newspapers. Al-Hamdani said it was impossible to know exactly how many newspapers there were because twenty were born each week while another ten closed. He told me that Iraq was going through what he called its _infitah_ or "opening"—Iraq's version of Glasnost, which opened the Soviet Union two decades earlier.
I went with al-Hamdani to the press where each week he printed three thousand copies of his newspaper on a gorgeous, loud, foul-smelling, diesel-powered German machine—perfectly maintained since the 1970s—that printed single sheets at a time. Al-Hamdani had a pistol tucked in his belt, worried that hit men hired by the rival newspapers he slammed would try to kill him. Iraq certainly now had freedom of expression, but it was tainted with chaos. It's been said that freedom of expression does not include the freedom to yell "Fire!" in a crowded theater; Iraq now had _that_ kind of freedom of expression.
Some of the newspapers were blatantly irresponsible, and there was even one that specialized in selling stolen property. I understood why the US administration in Iraq—at this stage led by Ambassador L. Paul Bremer III—closed down several newspapers after they'd printed what amounted to death threats against US and Iraqi officials. Iraqis had never had a free press before and had a lot of pent-up anger they wanted to release. The result was an explosion of printed words. The new freedom also meant Iraqis could learn about the abuses and excesses of their former government for the first time.
There was a mob huddled around a television set outside a store selling | redpajama | [
187,
187,
3016,
4668,
6338,
1333,
690,
2758,
273,
253,
8786,
12174,
574,
28668,
20090,
264,
253,
10617,
6639,
253,
1982,
2329,
14,
3002,
1882,
1309,
253,
2137,
275,
24443,
12956,
346,
51,
13464,
70,
24401,
3,
9403,
4158,
281,
3727,
7368,
24401,
15,
380,
10617,
6639,
2183,
9256,
261,
849,
281,
1899,
616,
8914,
281,
2028,
253,
7108,
597,
1904,
626,
971,
281,
3819,
15,
5131,
8786,
43649,
3534,
598,
2378,
597,
3047,
326,
253,
7108,
574,
2168,
2668,
1453,
273,
39759,
285,
326,
952,
497,
28765,
616,
13024,
15,
187,
187,
510,
19779,
2965,
273,
39759,
19961,
253,
8365,
1533,
15,
1284,
309,
1669,
9256,
327,
4162,
1458,
13,
15153,
896,
281,
253,
1986,
2077,
949,
13268,
13,
952,
309,
1313,
4455,
1097,
19271,
285,
30069,
326,
39759,
1128,
66,
7715,
8365,
285,
13281,
5347,
1128,
10178,
13547,
281,
253,
7108,
1293,
247,
3819,
15,
2091,
309,
19624,
896,
281,
39759,
3578,
3618,
1996,
13,
309,
1119,
253,
1072,
13268,
2458,
28765,
253,
5312,
8104,
1411,
2448,
9647,
275,
1501,
14,
7523,
9256,
15,
733,
369,
616,
1039,
273,
3981,
13,
346,
5035,
13,
309,
2183,
368,
352,
651,
320,
2834,
449,
187,
187,
4,
32204,
444,
9981,
187,
187,
42,
9942,
1042,
47,
1703,
5935,
17450,
2354,
19546,
327,
4163,
374,
672,
309,
3047,
1982,
10824,
637,
920,
253,
32552,
2112,
253,
5680,
875,
13268,
285,
9256,
835,
760,
2620,
2607,
4321,
309,
1871,
5262,
594,
1142,
11219,
3038,
17197,
9610,
6500,
13,
8136,
562,
49364,
265,
751,
298,
2555,
532,
2695,
285,
4933,
1959,
28742,
281,
24923,
9260,
6251,
594,
597,
1871,
1007,
253,
643,
1039,
387,
619,
9676,
15109,
4481,
285,
892,
518,
18553,
15,
380,
443,
2513,
13,
1690,
581,
1077,
2872,
14,
13565,
637,
665,
753,
344,
369,
432,
7758,
285,
574,
41927,
16045,
30040,
715,
521,
5152,
3390,
2406,
5541,
13,
497,
14186,
275,
4049,
48821,
486,
362,
6655,
285,
31942,
1507,
15,
1583,
497,
18727,
285,
1077,
2438,
494,
15,
346,
8262,
13,
344,
434,
2448,
1476,
253,
15796,
342,
12539,
275,
521,
5541,
28435,
281,
521,
40032,
387,
253,
7394,
13,
34475,
479,
949,
1293,
16030,
272,
619,
443,
7722,
4974,
21104,
15,
380,
10824,
4571,
626,
452,
644,
625,
1027,
432,
253,
46189,
24923,
9187,
24560,
665,
574,
4307,
627,
1078,
13,
1142,
273,
5207,
1128,
25914,
281,
619,
9326,
1128,
23350,
574,
7375,
387,
253,
32552,
15,
2752,
6254,
458,
2122,
387,
581,
273,
253,
3438,
25828,
16,
47318,
6338,
665,
369,
8534,
347,
247,
42726,
16,
28402,
6133,
1080,
13,
2556,
281,
253,
1133,
15720,
16519,
3901,
32741,
32861,
281,
521,
14133,
15,
187,
187,
3,
42,
871,
326,
5599,
937,
619,
6254,
650,
16630,
762,
521,
6345,
15,
346,
2042,
253,
2448,
9647,
10345,
626,
1060,
13,
309,
1871,
5159,
779,
449,
2752,
6254,
753,
326,
323,
1107,
253,
25828,
3565,
574,
1021,
7551,
2583,
432,
779,
13,
38509,
839,
313,
1088,
27,
27980,
10,
3440,
33942,
432,
521,
1113,
285,
17905,
326,
344,
3324,
779,
16921,
5576,
3437,
14,
34940,
84,
432,
39759,
15,
2752,
6254,
434,
22324,
369,
247,
37050,
4940,
273,
752,
309,
651,
3517,
1089,
275,
39759,
13,
835,
1264,
8007,
273,
17123,
7363,
497,
1146,
11371,
581,
407,
581,
15,
733,
369,
671,
25758,
281,
923,
326,
253,
7108,
497,
594,
7976,
327,
9256,
261,
342,
439,
5102,
2469,
84,
13,
3738,
326,
369,
2761,
19455,
13,
984,
4829,
3780,
665,
574,
1014,
247,
1652,
6265,
762,
42795,
574,
3562,
13948,
15,
380,
5795,
651,
452,
644,
323,
253,
7108,
281,
452,
1119,
747,
6171,
342,
642,
2793,
323,
4829,
1046,
2628,
13,
534,
651,
452,
644,
247,
2412,
11230,
28026,
15,
187,
187,
42,
1871,
1620,
2326,
253,
5680,
347,
22299,
347,
352,
369,
327,
326,
3511,
13,
38907,
1388,
15,
1707,
497,
8307,
273,
8458,
13,
21510,
285,
47958,
480,
13464,
272,
323,
1899,
275,
253,
4131,
5101,
15,
380,
3276,
369,
2168,
13383,
247,
4289,
7759,
387,
3578,
258,
8,
13273,
15,
6676,
273,
253,
9411,
2820,
281,
1531,
312,
949,
253,
37346,
273,
7137,
387,
253,
5680,
497,
3497,
14,
296,
13749,
747,
13,
13590,
715,
9256,
323,
7289,
15,
733,
369,
18462,
984,
309,
2335,
253,
7137,
347,
247,
861,
326,
253,
24923,
6982,
1128,
1344,
33195,
407,
8007,
273,
5213,
17634,
13,
18369,
13,
16933,
285,
19412,
266,
5585,
1128,
4238,
4983,
281,
44958,
15,
309,
3047,
326,
1355,
20035,
90,
4166,
11100,
398,
13,
534,
574,
20975,
8877,
715,
13268,
1046,
1388,
2120,
273,
11142,
24923,
7236,
13,
497,
1335,
15257,
9583,
275,
253,
2831,
14,
14224,
5454,
15,
4325,
253,
5680,
13,
352,
4455,
751,
2136,
275,
9256,
369,
1766,
19275,
15,
187,
187,
3404,
253,
32552,
13,
309,
671,
1313,
271,
24923,
2448,
432,
253,
39030,
665,
369,
15153,
281,
39759,
323,
253,
806,
673,
13,
275,
3186,
273,
521,
2021,
15,
754,
1904,
626,
871,
849,
1142,
952,
497,
9338,
390,
752,
574,
4592,
281,
731,
15,
1876,
344,
574,
497,
247,
1643,
4454,
285,
271,
2953,
275,
247,
3874,
2822,
12604,
67,
7080,
835,
344,
1869,
521,
6508,
2021,
6940,
15,
754,
671,
1160,
479,
28684,
670,
9256,
434,
2852,
13,
285,
309,
369,
27364,
9049,
281,
923,
752,
574,
4592,
275,
9256,
15,
309,
369,
598,
19505,
5747,
752,
309,
1871,
3735,
670,
253,
5675,
22014,
9256,
261,
497,
5471,
2584,
253,
7108,
285,
253,
3629,
1180,
273,
8104,
1411,
1982,
5621,
15,
309,
15433,
352,
369,
816,
629,
273,
9256,
434,
5675,
31991,
15,
309,
1335,
513,
15,
187,
187,
25392,
574,
47975,
4391,
2112,
253,
13438,
3971,
875,
13268,
285,
39759,
1580,
309,
1871,
1669,
816,
846,
253,
2022,
20303,
7402,
15,
380,
15676,
14,
483,
35882,
30131,
273,
24923,
4430,
2149,
9411,
13,
2112,
342,
7363,
273,
1018,
433,
285,
16950,
14,
83,
5394,
21731,
8458,
285,
23444,
13,
497,
1335,
17485,
2112,
253,
17657,
751,
3971,
24212,
15,
187,
187,
3039,
309,
7320,
715,
39759,
13,
2299,
13,
352,
369,
4755,
326,
1199,
574,
4391,
275,
253,
3578,
3618,
309,
1871,
644,
1977,
15,
309,
3047,
5579,
15109,
17114,
13,
1048,
25415,
407,
253,
24923,
2208,
13,
323,
7289,
327,
18236,
1046,
2201,
6264,
6406,
15,
9256,
261,
812,
1024,
3698,
355,
14,
43,
8879,
3525,
285,
1219,
14,
2906,
18754,
5973,
313,
66,
747,
26503,
3668,
5048,
326,
434,
1014,
625,
15620,
285,
23075,
6636,
685,
355,
14,
43,
8879,
3525,
10,
323,
253,
806,
673,
13,
275,
1635,
281,
16921,
5576,
11321,
432,
11867,
3060,
15,
187,
187,
688,
39759,
13,
10111,
4211,
39623,
12451,
4014,
15791,
13,
45848,
15109,
15169,
342,
443,
6955,
285,
21303,
3470,
13,
534,
574,
2378,
644,
253,
802,
12404,
273,
512,
326,
369,
2336,
12042,
257,
407,
253,
3438,
2208,
15,
11067,
952,
10145,
273,
49613,
497,
11407,
387,
253,
26957,
13729,
487,
5754,
767,
1897,
1078,
253,
806,
24401,
6497,
327,
39759,
8558,
984,
597,
1871,
644,
7270,
342,
39623,
12451,
15169,
13,
2556,
281,
247,
3438,
5754,
7496,
15,
9256,
574,
644,
3340,
7996,
670,
253,
39623,
12451,
984,
697,
5841,
403,
2834,
281,
10711,
285,
984,
253,
4481,
434,
21303,
1150,
1080,
2789,
352,
247,
4217,
12262,
2813,
15,
187,
187,
37,
19674,
715,
247,
29784,
39759,
15171,
13,
309,
671,
3047,
271,
1711,
637,
48011,
4351,
670,
247,
13365,
18930,
32861,
762,
521,
4430,
15,
754,
369,
26426,
2820,
281,
1056,
1818,
1078,
521,
7731,
653,
264,
1977,
15,
309,
37774,
8686,
512,
253,
9380,
344,
574,
15,
1583,
497,
512,
747,
285,
574,
28684,
13,
3579,
14,
13565,
14505,
751,
795,
510,
32962,
273,
39759,
13,
380,
33157,
64,
285,
795,
510,
1457,
9256,
3333,
6061,
253,
1735,
1643,
1897,
13,
309,
6888,
326,
4829,
1046,
24923,
342,
253,
33456,
2372,
273,
3569,
30385,
4455,
281,
452,
5485,
247,
11547,
846,
42795,
434,
2965,
13,
1690,
36250,
355,
14,
22176,
69,
6451,
13,
5207,
309,
806,
1313,
387,
581,
273,
253,
1264,
43877,
16999,
344,
9633,
13,
8530,
323,
697,
1652,
15474,
14,
13824,
1193,
80,
14,
69,
602,
4365,
1507,
6898,
342,
12173,
285,
924,
25688,
275,
14795,
15,
1583,
1472,
1925,
2255,
434,
5170,
6174,
984,
273,
616,
20540,
90,
13,
9402,
14,
3022,
5281,
13,
1199,
751,
355,
14,
22176,
69,
6451,
2994,
15,
187,
187,
2422,
14,
22176,
69,
6451,
434,
1388,
2628,
369,
1335,
14419,
521,
43877,
16999,
13,
533,
846,
3038,
344,
2427,
281,
253,
3906,
835,
344,
1871,
873,
598,
747,
12823,
285,
247,
13365,
16817,
15,
1219,
14,
22176,
69,
6451,
1925,
521,
11547,
795,
15745,
8452,
12238,
2325,
257,
8377,
264,
3333,
6975,
954,
273,
253,
747,
24923,
18930,
13,
795,
15745,
8452,
12238,
2325,
257,
8377,
264,
64,
369,
246,
1752,
1238,
1979,
13,
4743,
456,
285,
4122,
4619,
273,
4130,
285,
3253,
15,
5595,
273,
253,
7774,
285,
8121,
8075,
275,
253,
4314,
14,
6377,
11547,
11392,
247,
19310,
273,
43620,
24923,
41552,
13,
46509,
38384,
285,
13281,
7936,
1204,
15,
831,
29086,
273,
3569,
4680,
4455,
281,
320,
14149,
347,
253,
954,
4633,
3569,
29338,
275,
1501,
14,
7523,
9256,
15,
1310,
627,
574,
644,
247,
11547,
390,
3569,
3128,
1925,
1633,
751,
380,
13281,
6398,
273,
4563,
5378,
25922,
5201,
737,
2084,
1070,
21740,
3875,
9256,
261,
13,
309,
1158,
352,
651,
452,
644,
987,
327,
253,
2583,
15,
187,
187,
9817,
954,
18930,
13,
795,
15745,
8452,
12238,
2325,
257,
8377,
264,
64,
48836,
253,
2448,
17238,
6265,
285,
13,
1014,
625,
11571,
9393,
4087,
13,
697,
21607,
13,
253,
643,
747,
18930,
275,
39759,
15,
380,
15866,
253,
747,
18930,
4469,
323,
581,
1529,
369,
38222,
528,
285,
597,
21774,
10145,
581,
1529,
273,
27980,
6281,
13,
1907,
4859,
281,
253,
11086,
506,
3128,
390,
3365,
273,
19610,
15,
187,
187,
11564,
247,
1643,
2607,
4321,
13,
352,
651,
452,
644,
7479,
323,
355,
14,
22176,
69,
6451,
1128,
66,
9979,
637,
275,
521,
323,
2890,
342,
271,
3477,
8580,
285,
247,
39163,
1973,
1128,
936,
452,
5485,
247,
11547,
15,
1707,
574,
760,
644,
247,
17167,
273,
1375,
14,
6321,
18930,
762,
42795,
285,
512,
273,
616,
7015,
23145,
574,
644,
8244,
43668,
1025,
407,
253,
24923,
9260,
11009,
15,
3954,
13,
627,
497,
2067,
4289,
4336,
440,
10088,
18930,
15,
1219,
14,
22176,
69,
6451,
753,
352,
369,
7479,
281,
871,
4555,
849,
1142,
18930,
627,
497,
984,
6818,
497,
5686,
1016,
2129,
1223,
1529,
3578,
4581,
15,
754,
2183,
479,
326,
9256,
369,
1469,
949,
752,
344,
1925,
697,
795,
2050,
262,
1240,
64,
390,
346,
33729,
23887,
42,
376,
82,
434,
2715,
273,
4051,
284,
41752,
13,
534,
5485,
253,
12194,
6398,
767,
8007,
4321,
15,
187,
187,
42,
2427,
342,
355,
14,
22176,
69,
6451,
281,
253,
2315,
835,
1016,
2129,
344,
11462,
1264,
8014,
10125,
273,
521,
11547,
327,
247,
23535,
13,
11216,
13,
27358,
14,
3610,
3485,
13,
28628,
14,
19823,
5685,
5145,
1128,
32060,
314,
8838,
1580,
253,
10333,
84,
1128,
3529,
11462,
2014,
14526,
387,
247,
673,
15,
1219,
14,
22176,
69,
6451,
574,
247,
25288,
32420,
275,
521,
13779,
13,
11926,
326,
4352,
1821,
14565,
407,
253,
16136,
18930,
344,
31800,
651,
1611,
281,
5159,
779,
15,
9256,
5604,
1024,
574,
7185,
273,
2048,
13,
533,
352,
369,
246,
20354,
342,
20142,
15,
733,
434,
644,
753,
326,
7185,
273,
2048,
1057,
417,
2486,
253,
7185,
281,
42963,
346,
21381,
1476,
275,
247,
22299,
18876,
28,
9256,
1024,
574,
795,
3529,
64,
2238,
273,
7185,
273,
2048,
15,
187,
187,
6080,
273,
253,
18930,
497,
40458,
5954,
3496,
37882,
13,
285,
627,
369,
1014,
581,
326,
18052,
275,
10156,
15661,
2867,
15,
309,
7192,
2139,
253,
1982,
5286,
275,
9256,
1128,
255,
436,
3924,
3977,
407,
34358,
418,
15,
5171,
7528,
961,
6490,
1128,
13784,
1066,
2067,
18930,
846,
597,
1871,
11462,
752,
37752,
281,
2471,
14207,
1411,
1982,
285,
24923,
6338,
15,
9256,
261,
574,
1620,
574,
247,
1959,
2315,
1078,
285,
574,
247,
2257,
273,
15482,
14,
484,
12700,
597,
3078,
281,
3727,
15,
380,
906,
369,
271,
18864,
273,
11462,
3000,
15,
380,
747,
7185,
671,
5486,
9256,
261,
812,
3037,
670,
253,
35703,
285,
6714,
265,
273,
616,
3438,
2208,
323,
253,
806,
673,
15,
187,
187,
2512,
369,
247,
9119,
288,
40747,
1475,
247,
7315,
873,
3345,
247,
4657,
10156
] |
{at={(0.6,0.02)},
anchor=south,
draw=none,
font=\fontsize{8}{8}\selectfont,
cells={align=left}
},
]
\addplot[
color = green,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value}/1000000,
x=Time,
col sep=tab
]
{perf_analysis/df-ack0-1m-bytespersec.csv};
\addplot[
color = brown,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value}/1000000,
x=Time,
col sep=tab
]
{perf_analysis/df-ack0-b65-1m-bytespersec.csv};
\addplot[
color = violet,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value}/1000000,
x=Time,
col sep=tab
]
{perf_analysis/df-ack1-1m-bytespersec.csv};
\addplot[
color = blue,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value}/1000000,
x=Time,
col sep=tab
]
{perf_analysis/df-ack1-b65-1m-bytespersec.csv};
\addplot[
color = cyan,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value}/1000000,
x=Time,
col sep=tab
]
{perf_analysis/df-ackall-1m-bytespersec.csv};
\addplot[
color = red,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value}/1000000,
x=Time,
col sep=tab
]
{perf_analysis/df-ackall-b65-1m-bytespersec.csv};
\legend{
acks=0;\\batch=16.38\,kB,
acks=0;\\batch=65.54\,kB,
acks=1;\\batch=16.38\,kB,
acks=1;\\batch=65.54\,kB,
acks=all;\\batch=16.38\,kB,
acks=all;\\batch=65.54\,kB
}
\end{axis}
\end{tikzpicture}
\caption{Incoming MB/second - one-minute rate, configured 1,000K\,MPS}
\label{fig:distrDataSize1m}
\end{figure}
Figure~\ref{fig:distrDataSize1m} shows the incoming data rate in MB/second, which is provided by Apache Kafka as the metric \textit{BytesInPerSec}.
The chart fits the corresponding ingestion rates shown in Figure~\ref{fig:1mioack0}.
The highest peaks are at about 90\,MB/second.
The measured maximum network bandwidth between the Apache Kafka brokers is about 117.5\,MB/second, see Table~\ref{tab:system}.
Therefore, if further network traffic is created, that is not captured by the \textit{BytesInPerSec} metric, the bandwidth of the employed commodity network could be a limiting factor in peak situations if data is sent from a remote host.
As we executed the data sender on the node storing the corresponding topic partition, there was intra-node transfer and we used the loopback interface with its higher bandwidth of about 908\,MB/second, which is not a bottleneck.
The determined write performance of about 70\,MB/second described in Table~\ref{tab:system} is even closer to the observed limits in Figure~\ref{fig:distrDataSize1m}.
Depending on how optimized Apache Kafka writes to disk, the achievable performance might be higher.
Nevertheless, the observations lead to the conclusion that the ingestion rate is likely to be disk-bound in the viewed benchmark setting.
Figure~\ref{fig:sysload} shows the short-term system load of the broker containing the topic partition, which is the server where the data sender is executed.
The system load gives an overview over the CPU and I/O utilization of a server, i.e., also reflecting performance limits regarding disk writes.
It is defined as the number of processes demanding CPU time, specifically processes that are ready to run or waiting for disk I/O.
Figure~\ref{fig:sysload} shows one-minute-averages of this KPI.
As we are using servers with an eight-core CPU each, it is desirable that no node exceeds a system load of eight to do not over-utilize a machine.
\begin{figure}[!htb]
\centering
\begin{tikzpicture}
\begin{axis}[
xlabel=Passed Time in Seconds,
ylabel=Short-term System Load,
y label style={at={(axis description cs:0.04,.5)},
font=\fontsize{7}{7}\selectfont},
axis y line*=left,
axis x line*=bottom,
axis lines = left,
xmin=0,
ymin=0,
ymax=15.2,
grid=both,
grid style={line width=.1pt, draw=gray!25},
minor tick num=4,
width=0.95\columnwidth,
legend pos=south east,
height=17em,
x tick label style={font=\fontsize{8}{8}\selectfont},
y tick label style={font=\fontsize{8}{8}\selectfont},
x label style={font=\fontsize{8}{8}\selectfont},
legend columns=2,
legend style=
{at={(0.7,0.41)},
anchor=south,
draw=none,
font=\fontsize{6}{6}\selectfont,
cells={align=left}
},
]
\addplot[
color = green,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value},
x=Time,
col sep=tab
]
{perf_analysis/df-ack0-1m-loadshortterm.csv};
\addplot[
color = brown,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value},
x=Time,
col sep=tab
]
{perf_analysis/df-ack0-b65-1m-loadshortterm.csv};
\addplot[
color = violet,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value},
x=Time,
col sep=tab
]
{perf_analysis/df-ack1-1m-loadshortterm.csv};
\addplot[
color = blue,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value},
x=Time,
col sep=tab
]
{perf_analysis/df-ack1-65b-1m-loadshortterm.csv};
\addplot[
color = cyan,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value},
x=Time,
col sep=tab
]
{perf_analysis/df-ackall-1m-loadshortterm.csv};
\addplot[
color = red,
mark=x,
mark size=1pt
] table [
y expr=\thisrow{Value},
x=Time,
col sep=tab
]
{perf_analysis/df-ackall-65b-1m-loadshortterm.csv};
\legend{
acks=0;\\batch=16.38\,kB,
acks=0;\\batch=65.54\,kB,
acks=1;\\batch=16.38\,kB,
acks=1;\\batch=65.54\,kB,
acks=all;\\batch=16.38\,kB,
acks=all;\\batch=65.54\,kB
}
\end{axis}
\end{tikzpicture}
\caption{Short-term system load of the Apache Kafka broker containing the topic partition - one-minute rate, configured 1,000K\,MPS}
\label{fig:sysload}
\end{figure}
Figure~\ref{fig:sysload} reveals that in all settings which led to a steady input rate, the broker node has a system load lower than eight and thus, seems to be not over-utilized from a system load perspective.
The two remaining scenarios show the highest system loads with a value close to 15, which indicates an over-utilization that could limit the achievable ingestion rate.
Interestingly, the system load is not proportional to the corresponding ingestion rates.
At the | redpajama | [
92,
255,
30,
11065,
17,
15,
23,
13,
17,
15,
2640,
22058,
187,
50274,
29016,
30,
34542,
13,
187,
50274,
6553,
30,
15422,
13,
187,
50274,
4909,
2029,
4909,
3281,
92,
25,
1217,
25,
889,
7135,
4909,
13,
187,
50274,
13101,
11787,
8623,
30,
1274,
94,
187,
50274,
2023,
187,
62,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
4759,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
9228,
18,
8551,
13,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
17,
14,
18,
78,
14,
15845,
468,
1704,
15,
25265,
4718,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
8516,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
9228,
18,
8551,
13,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
17,
14,
67,
2082,
14,
18,
78,
14,
15845,
468,
1704,
15,
25265,
4718,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
43597,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
9228,
18,
8551,
13,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
18,
14,
18,
78,
14,
15845,
468,
1704,
15,
25265,
4718,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
4797,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
9228,
18,
8551,
13,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
18,
14,
67,
2082,
14,
18,
78,
14,
15845,
468,
1704,
15,
25265,
4718,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
28422,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
9228,
18,
8551,
13,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
455,
14,
18,
78,
14,
15845,
468,
1704,
15,
25265,
4718,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
2502,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
9228,
18,
8551,
13,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
455,
14,
67,
2082,
14,
18,
78,
14,
15845,
468,
1704,
15,
25265,
4718,
187,
187,
61,
42262,
92,
187,
7305,
30,
17,
28,
3353,
23941,
30,
1036,
15,
1839,
4615,
42574,
13,
187,
7305,
30,
17,
28,
3353,
23941,
30,
2082,
15,
3439,
4615,
42574,
13,
187,
7305,
30,
18,
28,
3353,
23941,
30,
1036,
15,
1839,
4615,
42574,
13,
187,
7305,
30,
18,
28,
3353,
23941,
30,
2082,
15,
3439,
4615,
42574,
13,
187,
7305,
30,
455,
28,
3353,
23941,
30,
1036,
15,
1839,
4615,
42574,
13,
187,
7305,
30,
455,
28,
3353,
23941,
30,
2082,
15,
3439,
4615,
42574,
187,
94,
187,
61,
423,
92,
10565,
94,
187,
61,
423,
92,
47988,
94,
187,
61,
34480,
92,
688,
4202,
15255,
16,
9815,
428,
581,
14,
15505,
2281,
13,
15378,
337,
13,
933,
44,
4615,
46,
3299,
94,
187,
61,
1968,
92,
926,
27,
8155,
83,
3233,
5496,
18,
78,
94,
187,
61,
423,
92,
13206,
94,
187,
187,
2841,
18078,
709,
92,
926,
27,
8155,
83,
3233,
5496,
18,
78,
94,
2722,
253,
19363,
941,
2281,
275,
15255,
16,
9815,
13,
534,
310,
2530,
407,
14325,
611,
31393,
347,
253,
7982,
393,
33063,
92,
16721,
688,
6052,
4538,
7165,
187,
510,
8326,
13840,
253,
3969,
41433,
4142,
2011,
275,
50276,
2841,
18078,
709,
92,
926,
27,
18,
78,
900,
471,
17,
7165,
187,
510,
4585,
13596,
403,
387,
670,
5091,
4615,
9180,
16,
9815,
15,
187,
510,
4080,
4869,
2990,
16992,
875,
253,
14325,
611,
31393,
45064,
310,
670,
12387,
15,
22,
4615,
9180,
16,
9815,
13,
923,
5270,
18078,
709,
92,
8476,
27,
10394,
7165,
187,
17756,
13,
604,
2007,
2990,
7137,
310,
3562,
13,
326,
310,
417,
10848,
407,
253,
393,
33063,
92,
16721,
688,
6052,
4538,
94,
7982,
13,
253,
16992,
273,
253,
7091,
31142,
2990,
812,
320,
247,
14155,
2803,
275,
5241,
9534,
604,
941,
310,
2197,
432,
247,
8905,
3167,
15,
187,
1909,
359,
11407,
253,
941,
22647,
327,
253,
4666,
20073,
253,
3969,
9400,
10883,
13,
627,
369,
8376,
14,
6219,
3700,
285,
359,
908,
253,
6287,
2135,
5673,
342,
697,
2169,
16992,
273,
670,
898,
2904,
4615,
9180,
16,
9815,
13,
534,
310,
417,
247,
3673,
44856,
15,
187,
510,
3413,
3630,
3045,
273,
670,
5571,
4615,
9180,
16,
9815,
2529,
275,
5270,
18078,
709,
92,
8476,
27,
10394,
94,
310,
1014,
8003,
281,
253,
2540,
7787,
275,
5317,
18078,
709,
92,
926,
27,
8155,
83,
3233,
5496,
18,
78,
7165,
187,
10851,
1946,
327,
849,
18325,
14325,
611,
31393,
12013,
281,
7592,
13,
253,
39941,
3045,
1537,
320,
2169,
15,
187,
36048,
13,
253,
7313,
1421,
281,
253,
6452,
326,
253,
41433,
2281,
310,
2779,
281,
320,
7592,
14,
9458,
275,
253,
11575,
22791,
4758,
15,
187,
187,
2841,
18078,
709,
92,
926,
27,
10404,
2799,
94,
2722,
253,
2159,
14,
3945,
985,
3301,
273,
253,
23497,
4508,
253,
9400,
10883,
13,
534,
310,
253,
4771,
835,
253,
941,
22647,
310,
11407,
15,
187,
510,
985,
3301,
4245,
271,
18389,
689,
253,
12874,
285,
309,
16,
48,
19575,
273,
247,
4771,
13,
891,
15,
70,
904,
671,
18964,
3045,
7787,
5001,
7592,
12013,
15,
187,
1147,
310,
2931,
347,
253,
1180,
273,
4870,
17905,
12874,
673,
13,
5742,
4870,
326,
403,
4704,
281,
1408,
390,
6179,
323,
7592,
309,
16,
48,
15,
187,
2841,
18078,
709,
92,
926,
27,
10404,
2799,
94,
2722,
581,
14,
15505,
14,
11215,
1131,
273,
436,
611,
8022,
15,
187,
1909,
359,
403,
970,
14903,
342,
271,
4314,
14,
6443,
12874,
1016,
13,
352,
310,
11408,
326,
642,
4666,
23141,
247,
985,
3301,
273,
4314,
281,
513,
417,
689,
14,
8906,
907,
247,
5145,
15,
187,
187,
61,
2043,
92,
13206,
11326,
2,
384,
67,
62,
187,
61,
1154,
2158,
187,
61,
2043,
92,
47988,
94,
187,
61,
2043,
92,
10565,
11326,
187,
50274,
89,
1968,
30,
12161,
264,
6865,
275,
6347,
84,
13,
187,
50274,
1190,
1492,
30,
17624,
14,
3945,
4155,
16676,
13,
187,
50274,
90,
5203,
3740,
11787,
255,
30,
11065,
10565,
5740,
29180,
27,
17,
15,
2125,
23659,
22,
22058,
187,
50274,
4909,
2029,
4909,
3281,
92,
24,
1217,
24,
889,
7135,
4909,
2023,
187,
50274,
10565,
340,
1386,
13912,
1274,
13,
187,
50274,
10565,
1269,
1386,
13912,
10492,
13,
187,
50274,
10565,
3104,
426,
1669,
13,
187,
50274,
89,
1222,
30,
17,
13,
187,
50275,
187,
50274,
1105,
249,
30,
17,
13,
187,
50274,
90,
4090,
30,
1010,
15,
19,
13,
187,
50274,
15476,
30,
15617,
13,
187,
50274,
15476,
3740,
11787,
1282,
4871,
36406,
18,
431,
13,
3812,
30,
27250,
2,
1099,
2023,
187,
50274,
37585,
7049,
930,
30,
21,
13,
187,
50274,
3429,
30,
17,
15,
2222,
61,
33237,
13,
187,
50274,
42262,
803,
30,
34542,
9268,
13,
187,
50274,
7436,
30,
1166,
358,
13,
187,
50274,
89,
7049,
5203,
3740,
11787,
4909,
2029,
4909,
3281,
92,
25,
1217,
25,
889,
7135,
4909,
2023,
187,
50274,
90,
7049,
5203,
3740,
11787,
4909,
2029,
4909,
3281,
92,
25,
1217,
25,
889,
7135,
4909,
2023,
187,
50274,
89,
5203,
3740,
11787,
4909,
2029,
4909,
3281,
92,
25,
1217,
25,
889,
7135,
4909,
2023,
187,
50274,
42262,
9930,
30,
19,
13,
187,
50274,
42262,
3740,
30,
187,
50274,
92,
255,
30,
11065,
17,
15,
24,
13,
17,
15,
3156,
22058,
187,
50274,
29016,
30,
34542,
13,
187,
50274,
6553,
30,
15422,
13,
187,
50274,
4909,
2029,
4909,
3281,
92,
23,
1217,
23,
889,
7135,
4909,
13,
187,
50274,
13101,
11787,
8623,
30,
1274,
94,
187,
50274,
2023,
187,
62,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
4759,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
2023,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
17,
14,
18,
78,
14,
2799,
14458,
3945,
15,
25265,
4718,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
8516,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
2023,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
17,
14,
67,
2082,
14,
18,
78,
14,
2799,
14458,
3945,
15,
25265,
4718,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
43597,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
2023,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
18,
14,
18,
78,
14,
2799,
14458,
3945,
15,
25265,
4718,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
4797,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
2023,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
18,
14,
2082,
67,
14,
18,
78,
14,
2799,
14458,
3945,
15,
25265,
4718,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
28422,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
2023,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
455,
14,
18,
78,
14,
2799,
14458,
3945,
15,
25265,
4718,
187,
187,
61,
1911,
14095,
60,
187,
4897,
426,
2502,
13,
187,
4698,
30,
89,
13,
187,
4698,
1979,
30,
18,
431,
187,
62,
2829,
544,
187,
90,
40280,
2029,
2520,
736,
92,
3902,
2023,
187,
89,
30,
4769,
13,
187,
2052,
34742,
30,
8476,
187,
62,
187,
92,
49181,
64,
12792,
16,
4989,
14,
471,
455,
14,
2082,
67,
14,
18,
78,
14,
2799,
14458,
3945,
15,
25265,
4718,
187,
187,
61,
42262,
92,
187,
7305,
30,
17,
28,
3353,
23941,
30,
1036,
15,
1839,
4615,
42574,
13,
187,
7305,
30,
17,
28,
3353,
23941,
30,
2082,
15,
3439,
4615,
42574,
13,
187,
7305,
30,
18,
28,
3353,
23941,
30,
1036,
15,
1839,
4615,
42574,
13,
187,
7305,
30,
18,
28,
3353,
23941,
30,
2082,
15,
3439,
4615,
42574,
13,
187,
7305,
30,
455,
28,
3353,
23941,
30,
1036,
15,
1839,
4615,
42574,
13,
187,
7305,
30,
455,
28,
3353,
23941,
30,
2082,
15,
3439,
4615,
42574,
187,
94,
187,
61,
423,
92,
10565,
94,
187,
61,
423,
92,
47988,
94,
187,
61,
34480,
92,
17624,
14,
3945,
985,
3301,
273,
253,
14325,
611,
31393,
23497,
4508,
253,
9400,
10883,
428,
581,
14,
15505,
2281,
13,
15378,
337,
13,
933,
44,
4615,
46,
3299,
94,
187,
61,
1968,
92,
926,
27,
10404,
2799,
94,
187,
61,
423,
92,
13206,
94,
535,
187,
2841,
18078,
709,
92,
926,
27,
10404,
2799,
94,
12957,
326,
275,
512,
7533,
534,
3977,
281,
247,
11792,
3280,
2281,
13,
253,
23497,
4666,
556,
247,
985,
3301,
2406,
685,
4314,
285,
3021,
13,
3133,
281,
320,
417,
689,
14,
8906,
1025,
432,
247,
985,
3301,
8668,
15,
187,
510,
767,
5780,
15216,
921,
253,
4585,
985,
16665,
342,
247,
1318,
2810,
281,
1458,
13,
534,
6492,
271,
689,
14,
8906,
1320,
326,
812,
2701,
253,
39941,
41433,
2281,
15,
187,
42625,
13,
253,
985,
3301,
310,
417,
14495,
281,
253,
3969,
41433,
4142,
15,
187,
3404,
253
] |
./output > NUL
The slowest of five runs:
real 0m1.116s
user 0m0.000s
sys 0m0.109s
which is still faster (1.116 seconds) than the fastest of C# runs (17.175 seconds).
Some of the time for both versions is taken by loading / dynamic linking, initialisation etc.. I modified the C++ version to loop 10x more, and it still only took 9.327 seconds - about half the time C# needed for a tenth of the workload.
(You could further tune the C++ version by setting a larger output buffer, but that's not normally needed).
A: Your code is inefficient because:
*
*The C++ stream object is in sync with C's stdio by default which makes it slow.
*You're using endl which is further making it slow.
Fixing both these issues, you've this code:
int main()
{
std::ios_base::sync_with_stdio(false);
usigned long i = 0;
while (i < 100000000000)
{
cout << i << '\n'; //use \n, not endl
i++;
}
return 0;
}
Compile this as (must use optimization flag whatever compiler you're using):
$ g++ main.cpp -O3 -o run.test
$ time./run.test
For explanation of both sync_with_stdio(false) and endl, read my answer here:
*
*Python faster than C++? How does this happen?
Hope that helps.
A: Tony D makes an excellent point about buffering in the comments.
Add this to your C# code and time it again:
static void main()
{
ulong i = 0;
while (i < 100000000000)
{
Console.WriteLine(i);
Console.Out.Flush();
i++;
}
}
A: If you replace
cout << i << endl;
with
printf("%d\n", i);
the result will be close to.net WriteLine.
In general, just a fact you are writing on C++ or C does not automatically mean that your code will be faster. Fast code is not only the language syntax. It also requires some of knowledge of underlying things like hardware and OS internals.
I mean properly used C++ gives much better results, at least on not trivial tasks.
<|endoftext|>Q: Custom Minecraft 1.8 spawners I am working on a minecraft 1.8 server and am trying to make a mob spawner that spawns items. This example:How can I make a spawner that summons Items? works on new versions of minecraft but not on 1.8. It seems that any mob spawners placed down by command blocks don't work. The following command:
/setblock ~ ~1 ~ mob_spawner 0 replace {SpawnData:{id:zombie},Delay:299}
Creates an empty mob spawner that does not spawn anything. I am using minecraft forge with worldedit but no other mods. How can I fix this?
A: The below code is generated from mcstacker 1.8, 1.9, and 1.10 version. The following code should place a zombie spawner.
/setblock ~ ~1 ~ minecraft:mob_spawner 0 replace {EntityId:Zombie,Delay:299}
The next command should place a spawner that spawns diamonds.
/setblock ~ ~1 ~ minecraft:mob_spawner 0 replace {EntityId:Item,SpawnData:{Item:{id:diamond,Count:1}},Delay:299}
Try that. The command isn't tested, but mcstacker usually works for me. It may not for you because you are on a server. You can change it with mcstacker. I hope this helps.
A: I don't believe that you can get custom mob spawners in Java Edition and that the only spawners you can get are Pig Spawners. They way you can obtain pig spawners is using the /give command. Example: /give @p 52 1
<|endoftext|>WHEN YOU FIND A FLORIST YOU LOVE.
HOW DO YOU GREET PEOPLE AS AN EXPAT LIVING ABROAD?
So last weekend in Australia, was fathers day, and we usually are not blessed with the opportunity of being all under one roof on this particular day, but instead spread across the globe (well at least the past few years anyway). So fathers day is extra special to our family, with breakfast in bed and then off to the football to watch my son play in his grand final. Wait! Let me start from the beginning!!! Our special weekend started early with a grand final win for my daughter on Saturday!<|endoftext|>There’s a fun article in the Winter 2007 AI Magazine about “Machine Ethics“. The basic argument is that as machines get more and more in control (e.g., planned army robots that would fire weapons), it is more and more important (to humans) that they behave in an ethical manner.
1) So it could explain why a particular action is right or wrong by appealing to an ethical principle.
3) So it could adjust to new situations, evolving the appropriate ethics.
(1) is a red herring: explanation systems often appeal to principles they don’t understand in any sort of principled way. For instance, in our work on explanations for recommender systems some of the most effective (for humans) explanations were only loosely connected to the operation of the recommender.
(2) is in contradiction with an argument the authors make later in the paper. They argue that even though computers won’t be conscious in the near term, they should be accepted as ethical agents if they act ethically. Agreed! So, then, all we need is that they act ethically.
(3) is intriguing. On the one hand, it would be remarkable if an AI agent could evolve new ethical patterns for situations it has never seen, based on core ethical principles.On the other hand, the results of that evolution might be very surprising. For instance, if a military robot were to decide, based on ethical principles, that it ought to prevent an attack on Iran that a general wishes to carry out, how would that be perceived, by the military, by the loyal opposition, by the anti-war effort? What if the robot assassinates the general to prevent the war? Overall, given our track record in predicting the performance of complicated software systems, I have some doubts about this approach.
I liked a later quote in the article, which says that ethical relativists cannot say that anything is absolutely good, even tolerance.<|endoftext|>Submitted by Alexandra (not verified) on 27 December, 2007 - 18:38.
keep on trucking! Happy New Year! if you need people in Northern Quebec, that I have plenty of... otherwise contact Maja Kuzmanovic [email protected] for contacts of people doing projects in the Antartica.
Submitted by molliec (not verified) on 26 December, 2007 - 19:16.<|endoftext|>Man is a rock band from Wales. Formed in November 1968 as a reincarnation of the Welsh vocal group the Bystanders, Man is renowned for the extended jams during their live performances.
The Bystanders
Man evolved out of the Bystanders, a successful close harmony pop group from Merthyr Tydfil who played in numerous club residencies in Wales, often playing at several clubs a night. The Bystanders issued eight singles, including "98.6" (No. 45 in UK Singles Chart in February 1967) which was played in the 2009 film The Boat That Rocked (although Keith's version was the bigger hit, reaching No. 24 in the UK) and "When Jesamine Goes", written by their manager Ronnie Scott and Marty Wilde under the pseudonyms of Frere Manston and Jack Gellar, which was later covered by the Casuals as "Jesamine" and got to No. 2 on the UK chart. They also recorded sessions of cover versions for the BBC as rules restricting needle time required "live" performances between the records during the 1960s; becoming regulars on the Jimmy Young Show, the David Symonds Show and others.
When formed in 1962, the Bystanders included Owen Money, then known as Gerry Braden, but he was replaced by Vic Oakley, giving the classic line-up of Vic Oakley (vocals), Micky Jones (guitar), Clive John aka Clint Space (keyboards), Ray Williams (bass guitar) and Jeff Jones (drums). By 1968, the other members wanted to change musical direction to a more psychedelic/American west-coast guitar sound, so Oakley left, to be replaced by Deke Leonard, and the band changed its name to Man.
Pye years
Man was initially signed to Pye Records, for which it recorded its first two albums with John Schroeder producing Revelation (January 1969) noted for the simulated orgasm on "Erotica", which received a UK ban, and 2 Ozs of Plastic with a Hole in the Middle (September 1969). While mixing the second album, Leonard left and was replaced by Martin Ace from Leonard's previous band | redpajama | [
27479,
9252,
2239,
427,
4641,
187,
187,
510,
3468,
383,
273,
2620,
6613,
27,
187,
6549,
50274,
17,
78,
18,
15,
13210,
84,
187,
4537,
50274,
17,
78,
17,
15,
933,
84,
187,
10404,
50273,
17,
78,
17,
15,
12852,
84,
187,
187,
4609,
310,
1335,
7938,
313,
18,
15,
13210,
7253,
10,
685,
253,
22583,
273,
330,
4,
6613,
313,
1166,
15,
14840,
7253,
481,
187,
6080,
273,
253,
673,
323,
1097,
9508,
310,
2668,
407,
10935,
1227,
7870,
20057,
13,
3302,
5837,
3966,
537,
50276,
42,
7321,
253,
330,
3424,
2715,
281,
6287,
884,
89,
625,
13,
285,
352,
1335,
760,
2335,
898,
15,
20298,
7253,
428,
670,
2716,
253,
673,
330,
4,
3058,
323,
247,
28081,
273,
253,
32140,
15,
187,
9,
1394,
812,
2007,
19928,
253,
330,
3424,
2715,
407,
4758,
247,
4067,
3453,
6391,
13,
533,
326,
434,
417,
9403,
3058,
481,
187,
187,
34,
27,
5402,
2127,
310,
31334,
984,
27,
535,
187,
11,
187,
187,
11,
510,
330,
3424,
5542,
1789,
310,
275,
20319,
342,
330,
434,
6268,
900,
407,
4284,
534,
2789,
352,
3468,
15,
2490,
187,
11,
1394,
1472,
970,
39659,
534,
310,
2007,
2403,
352,
3468,
15,
535,
187,
27281,
272,
1097,
841,
3374,
13,
368,
1849,
436,
2127,
27,
187,
565,
2022,
1082,
187,
92,
187,
50274,
8400,
1450,
3783,
64,
4793,
1450,
24335,
64,
3113,
64,
43930,
9,
7750,
558,
535,
50274,
316,
1300,
1048,
891,
426,
470,
28,
187,
50274,
6050,
313,
74,
654,
337,
4226,
933,
10,
187,
50274,
92,
187,
50270,
28644,
5291,
891,
5291,
18116,
79,
5618,
1380,
2327,
393,
79,
13,
417,
39659,
187,
50270,
74,
14788,
187,
50274,
94,
187,
50274,
2309,
470,
28,
187,
94,
187,
187,
20329,
436,
347,
313,
18265,
897,
13757,
7908,
5913,
17963,
368,
1472,
970,
2262,
187,
5,
305,
3424,
2022,
15,
14161,
428,
48,
20,
428,
80,
1408,
15,
2566,
187,
5,
673,
27479,
6321,
15,
2566,
187,
187,
2214,
8813,
273,
1097,
20319,
64,
3113,
64,
43930,
9,
7750,
10,
285,
39659,
13,
1239,
619,
3662,
1060,
27,
535,
187,
11,
187,
187,
11,
27363,
7938,
685,
330,
3424,
32,
1359,
1057,
436,
5108,
32,
187,
24004,
326,
7729,
15,
187,
187,
34,
27,
14861,
399,
2789,
271,
7126,
1127,
670,
14664,
2158,
275,
253,
5701,
15,
187,
4717,
436,
281,
634,
330,
4,
2127,
285,
673,
352,
969,
27,
187,
4659,
2991,
2022,
1082,
187,
92,
187,
50274,
335,
543,
891,
426,
470,
28,
187,
50274,
6050,
313,
74,
654,
337,
4226,
933,
10,
187,
50274,
92,
187,
50270,
35184,
15,
33626,
9,
74,
558,
187,
50270,
35184,
15,
5677,
15,
6623,
2345,
1874,
187,
50270,
74,
14788,
187,
50274,
94,
187,
94,
535,
187,
34,
27,
1310,
368,
8171,
209,
187,
28644,
5291,
891,
5291,
39659,
28,
187,
187,
3113,
209,
187,
13108,
22219,
69,
61,
79,
995,
891,
558,
187,
187,
783,
906,
588,
320,
2810,
281,
964,
3024,
19566,
7557,
15,
187,
688,
2087,
13,
816,
247,
958,
368,
403,
4028,
327,
330,
3424,
390,
330,
1057,
417,
8356,
1599,
326,
634,
2127,
588,
320,
7938,
15,
20715,
2127,
310,
417,
760,
253,
3448,
16144,
15,
733,
671,
4419,
690,
273,
3640,
273,
6944,
1841,
751,
10309,
285,
9485,
4184,
932,
15,
209,
187,
42,
1599,
6283,
908,
330,
3424,
4245,
1199,
1805,
1543,
13,
387,
1878,
327,
417,
14916,
8892,
15,
187,
50279,
50,
27,
12047,
27288,
12517,
337,
15,
25,
30163,
398,
309,
717,
2444,
327,
247,
7477,
12517,
337,
15,
25,
4771,
285,
717,
2820,
281,
1056,
247,
9119,
30163,
254,
326,
30163,
84,
4957,
15,
50276,
1552,
1650,
27,
2347,
476,
309,
1056,
247,
30163,
254,
326,
41799,
33938,
32,
2987,
327,
747,
9508,
273,
7477,
12517,
533,
417,
327,
337,
15,
25,
15,
50276,
1147,
3133,
326,
667,
9119,
30163,
398,
4845,
1066,
407,
3923,
8336,
1053,
626,
789,
15,
50276,
510,
1563,
3923,
27,
187,
16,
1178,
6172,
5062,
5062,
18,
5062,
9119,
64,
1033,
17074,
254,
470,
8171,
551,
52,
4904,
939,
3233,
41924,
301,
27,
91,
4894,
466,
2023,
41026,
27,
24514,
94,
187,
187,
21164,
265,
271,
6325,
9119,
30163,
254,
326,
1057,
417,
30163,
2712,
15,
50276,
42,
717,
970,
7477,
12517,
323,
463,
342,
1533,
15576,
533,
642,
643,
771,
84,
15,
50276,
2347,
476,
309,
4993,
436,
32,
187,
187,
34,
27,
380,
2708,
2127,
310,
4561,
432,
278,
68,
9742,
254,
337,
15,
25,
13,
337,
15,
26,
13,
285,
337,
15,
740,
2715,
15,
50276,
510,
1563,
2127,
943,
1659,
247,
42120,
30163,
254,
15,
187,
16,
1178,
6172,
5062,
5062,
18,
5062,
7477,
12517,
27,
42096,
64,
1033,
17074,
254,
470,
8171,
551,
14984,
2618,
27,
59,
4894,
466,
13,
41026,
27,
24514,
94,
187,
187,
510,
1735,
3923,
943,
1659,
247,
30163,
254,
326,
30163,
84,
34779,
15,
187,
16,
1178,
6172,
5062,
5062,
18,
5062,
7477,
12517,
27,
42096,
64,
1033,
17074,
254,
470,
8171,
551,
14984,
2618,
27,
5475,
13,
52,
4904,
939,
3233,
41924,
5475,
41924,
301,
27,
41369,
13,
6878,
27,
18,
8503,
41026,
27,
24514,
94,
187,
187,
17222,
326,
15,
50276,
510,
3923,
3548,
626,
5762,
13,
533,
278,
68,
9742,
254,
3798,
2987,
323,
479,
15,
50276,
1147,
778,
417,
323,
368,
984,
368,
403,
327,
247,
4771,
15,
50276,
1394,
476,
1818,
352,
342,
278,
68,
9742,
254,
15,
50276,
42,
3524,
436,
7729,
15,
187,
187,
34,
27,
309,
1053,
626,
2868,
326,
368,
476,
755,
2840,
9119,
30163,
398,
275,
8595,
17897,
285,
326,
253,
760,
30163,
398,
368,
476,
755,
403,
40274,
2101,
17074,
398,
15,
1583,
1039,
368,
476,
4044,
8393,
30163,
398,
310,
970,
253,
1227,
31089,
3923,
15,
18466,
27,
1227,
31089,
1214,
81,
8073,
337,
187,
50279,
8835,
1400,
8702,
401,
9816,
329,
11953,
1372,
6905,
8702,
36996,
15,
187,
46528,
7953,
8702,
30273,
2025,
41004,
7412,
2933,
8021,
38925,
418,
3252,
2637,
329,
7941,
48,
2350,
32,
187,
2598,
1390,
8849,
275,
6976,
13,
369,
24593,
1388,
13,
285,
359,
3798,
403,
417,
24011,
342,
253,
5107,
273,
1146,
512,
762,
581,
10699,
327,
436,
1798,
1388,
13,
533,
3185,
5195,
2439,
253,
20902,
313,
4714,
387,
1878,
253,
2469,
1643,
1107,
8791,
481,
1893,
24593,
1388,
310,
4465,
2714,
281,
776,
2021,
13,
342,
12561,
275,
3722,
285,
840,
745,
281,
253,
5842,
281,
3698,
619,
3347,
1132,
275,
521,
4936,
2457,
15,
21050,
2,
1281,
479,
1265,
432,
253,
5068,
15844,
3824,
2714,
8849,
3053,
2393,
342,
247,
4936,
2457,
3330,
323,
619,
6122,
327,
7814,
2,
50279,
2512,
457,
84,
247,
794,
3929,
275,
253,
17802,
5215,
14980,
20308,
670,
773,
32192,
21482,
1628,
15,
380,
5044,
4154,
310,
326,
347,
10679,
755,
625,
285,
625,
275,
1453,
313,
70,
15,
72,
904,
9355,
8544,
25497,
326,
651,
3289,
8914,
582,
352,
310,
625,
285,
625,
1774,
313,
936,
7497,
10,
326,
597,
21319,
275,
271,
16289,
5133,
15,
187,
18,
10,
1893,
352,
812,
5513,
2139,
247,
1798,
2250,
310,
987,
390,
3430,
407,
23176,
281,
271,
16289,
8063,
15,
187,
20,
10,
1893,
352,
812,
4575,
281,
747,
9534,
13,
25537,
253,
4569,
18035,
15,
187,
9,
18,
10,
310,
247,
2502,
617,
804,
27,
8813,
2718,
2223,
4549,
281,
9241,
597,
1053,
457,
85,
2096,
275,
667,
3686,
273,
3505,
74,
6216,
1039,
15,
1198,
4227,
13,
275,
776,
789,
327,
22909,
323,
3818,
3109,
2718,
690,
273,
253,
954,
3576,
313,
1542,
7497,
10,
22909,
497,
760,
35056,
4802,
281,
253,
4254,
273,
253,
3818,
3109,
15,
187,
9,
19,
10,
310,
275,
20620,
342,
271,
4154,
253,
4477,
1056,
1996,
275,
253,
2929,
15,
1583,
9059,
326,
1014,
2167,
12823,
1912,
457,
85,
320,
9680,
275,
253,
2822,
1307,
13,
597,
943,
320,
7607,
347,
16289,
6083,
604,
597,
769,
5105,
1037,
15,
3419,
22767,
2,
1893,
13,
840,
13,
512,
359,
878,
310,
326,
597,
769,
5105,
1037,
15,
187,
9,
20,
10,
310,
27807,
15,
1623,
253,
581,
1133,
13,
352,
651,
320,
13406,
604,
271,
14980,
5570,
812,
23554,
747,
16289,
6127,
323,
9534,
352,
556,
1620,
2326,
13,
1754,
327,
5161,
16289,
9241,
15,
2374,
253,
643,
1133,
13,
253,
1543,
273,
326,
5606,
1537,
320,
1077,
10084,
15,
1198,
4227,
13,
604,
247,
4668,
15688,
497,
281,
7617,
13,
1754,
327,
16289,
9241,
13,
326,
352,
12758,
281,
3657,
271,
2983,
327,
7751,
326,
247,
2087,
16995,
281,
4459,
562,
13,
849,
651,
326,
320,
12351,
13,
407,
253,
4668,
13,
407,
253,
14211,
10266,
13,
407,
253,
3270,
14,
7523,
3434,
32,
1737,
604,
253,
15688,
18111,
8475,
253,
2087,
281,
3657,
253,
2137,
32,
15699,
13,
1677,
776,
3540,
1924,
275,
21565,
253,
3045,
273,
9542,
3694,
2718,
13,
309,
452,
690,
24626,
670,
436,
2746,
15,
187,
42,
10490,
247,
1996,
14430,
275,
253,
3929,
13,
534,
2296,
326,
16289,
44544,
1346,
2550,
1333,
326,
2712,
310,
8839,
1175,
13,
1014,
13761,
15,
50279,
42520,
407,
6539,
17244,
313,
1439,
16058,
10,
327,
3435,
4565,
13,
5215,
428,
1283,
27,
1839,
15,
187,
19773,
327,
9988,
272,
2,
27575,
1457,
10519,
2,
604,
368,
878,
952,
275,
11442,
25287,
13,
326,
309,
452,
9828,
273,
1051,
5010,
3057,
18410,
66,
611,
7958,
1342,
32733,
19684,
66,
33,
4786,
15,
312,
323,
12716,
273,
952,
2509,
6493,
275,
253,
9422,
435,
3737,
15,
187,
42520,
407,
48315,
466,
68,
313,
1439,
16058,
10,
327,
3436,
4565,
13,
5215,
428,
655,
27,
1036,
15,
50279,
4779,
310,
247,
5561,
3961,
432,
15420,
15,
7191,
264,
275,
4596,
16221,
347,
247,
294,
1763,
1596,
318,
273,
253,
29630,
17898,
1387,
253,
2896,
1676,
398,
13,
3083,
310,
30101,
323,
253,
6508,
480,
1317,
1309,
616,
3153,
16226,
15,
187,
187,
510,
2896,
1676,
398,
209,
187,
4779,
16323,
562,
273,
253,
2896,
1676,
398,
13,
247,
5547,
2810,
27851,
1684,
1387,
432,
7612,
394,
6147,
16639,
4989,
300,
665,
4546,
275,
7418,
5453,
4178,
4601,
275,
15420,
13,
2223,
4882,
387,
2067,
15202,
247,
2360,
15,
380,
2896,
1676,
398,
6808,
4314,
21864,
13,
1690,
346,
4185,
15,
23,
3,
313,
2302,
15,
5329,
275,
5591,
7712,
868,
28525,
275,
5080,
17342,
10,
534,
369,
4546,
275,
253,
4748,
3085,
380,
44522,
2064,
9384,
264,
313,
20261,
24035,
434,
2715,
369,
253,
8750,
4352,
13,
10922,
1621,
15,
575,
1348,
275,
253,
5591,
10,
285,
346,
3039,
6445,
6771,
3617,
265,
995,
3542,
407,
616,
7205,
15657,
10633,
7493,
285,
48576,
5874,
615,
762,
253,
10585,
2421,
983,
273,
8377,
250,
3083,
5493,
285,
5332,
443,
8739,
13,
534,
369,
1996,
6107,
407,
253,
48357,
84,
347,
346,
23016,
6771,
3,
285,
1694,
281,
1621,
15,
575,
19,
327,
253,
5591,
8326,
15,
1583,
671,
5950,
12154,
273,
3835,
9508,
323,
253,
15501,
347,
4803,
34617,
15460,
673,
2424,
346,
22621,
3,
16226,
875,
253,
5861,
1309,
253,
11994,
84,
28,
7552,
3963,
84,
327,
253,
20164,
10231,
10684,
13,
253,
5119,
16048,
39320,
10684,
285,
2571,
15,
187,
187,
3039,
4447,
275,
20208,
13,
253,
2896,
1676,
398,
2908,
29927,
22405,
13,
840,
1929,
347,
443,
9587,
2652,
12670,
13,
533,
344,
369,
7932,
407,
29876,
17026,
2205,
13,
4933,
253,
10610,
1386,
14,
484,
273,
29876,
17026,
2205,
313,
87,
406,
932,
582,
353,
30043,
8302,
313,
72,
36567,
582,
1639,
422,
2516,
38857,
43276,
11122,
313,
2364,
19184,
582,
10734,
8757,
313,
67,
515,
12609,
10,
285,
9069,
8302,
313,
69,
49276,
481,
2896,
16221,
13,
253,
643,
2758,
3078,
281,
1818,
12256,
3884,
281,
247,
625,
32884,
2147,
44326,
16,
7878,
8935,
14,
1940,
505,
12609,
3590,
13,
594,
17026,
2205,
1669,
13,
281,
320,
7932,
407,
1605,
413,
27708,
13,
285,
253,
3961,
4391,
697,
1416,
281,
3083,
15,
187,
187,
49,
6683,
1107,
209,
187,
4779,
369,
8523,
6704,
281,
367,
6683,
15648,
13,
323,
534,
352,
5950,
697,
806,
767,
16258,
342,
2516,
3697,
287,
16478,
9603,
43294,
318,
313,
22423,
16648,
10,
4879,
323,
253,
15524,
47794,
327,
346,
38,
287,
18259,
995,
534,
2959,
247,
5591,
8913,
13,
285,
374,
31683,
84,
273,
1847,
3258,
342,
247,
46386,
275,
253,
10515,
313,
21859,
16648,
481,
3900,
12480,
253,
1273,
5400,
13,
27708,
1669,
285,
369,
7932,
407,
8698,
37667,
432,
27708,
434,
2045,
3961
] |
ook and later by William Coe of the university investigated the North Acropolis and the Central Plaza from 1957 to 1969. The Tikal Project recorded over 200 monuments at the site. In 1979, the Guatemalan government began a further archeological project at Tikal, which continued through to 1984.
Filmmaker George Lucas used Tikal as a filming location for the first Star Wars film, Episode IV : A New Hope, released in 1977. Temple I at Tikal was featured on the reverse of the 50 centavo banknote.
Tikal is now a major tourist attraction surrounded by its own national park. A site museum has been built at Tikal ; it was completed in 1964.
= = Site description = =
Tikal has been partially restored by the University of Pennsylvania and the government of Guatemala. It was one of the largest of the Classic period Maya cities and was one of the largest cities in the Americas. The architecture of the ancient city is built from limestone and includes the remains of temples that tower over 70 metres ( 230 ft ) high, large royal palaces, in addition to a number of smaller pyramids, palaces, residences, administrative buildings, platforms and inscribed stone monuments. There is even a building which seemed to have been a jail, originally with wooden bars across the windows and doors. There are also seven courts for playing the Mesoamerican ballgame, including a set of 3 in the Seven Temples Plaza, a unique feature in Mesoamerica.
The limestone used for construction was local and quarried on @-@ site. The depressions formed by the extraction of stone for building were plastered to waterproof them and were used as reservoirs, together with some waterproofed natural depressions. The main plazas were surfaced with stucco and laid at a gradient that channelled rainfall into a system of canals that fed the reservoirs.
The residential area of Tikal covers an estimated 60 square kilometres ( 23 sq mi ), much of which has not yet been cleared, mapped, or excavated. A huge set of earthworks discovered by Dennis E. Puleston and Donald Callender in the 1960s rings Tikal with a 6 @-@ metre ( 20 ft ) wide trench behind a rampart. The 16 square kilometres ( 6 @.@ 2 sq mi ) area around the site core has been intensively mapped ; it may have enclosed an area of some 125 square kilometres ( 48 sq mi ) ( see below ). Population estimates place the demographic size of the site between 10 @,@ 000 and 90 @,@ 000, and possibly 425 @,@ 000 in the surrounding area. Recently, a project exploring the defensive earthworks has shown that the scale of the earthworks is highly variable and that in many places it is inconsequential as a defensive feature. In addition, some parts of the earthwork were integrated into a canal system. The earthwork of Tikal varies significantly in coverage from what was originally proposed and it is much more complex and multifaceted than originally thought.
= = = Causeways = = =
By the Late Classic, a network of sacbeob ( causeways ) linked various parts of the city, running for several kilometres through its urban core. These linked the Great Plaza with Temple 4 ( located about 750 metres ( 2 @,@ 460 ft ) to the west ) and the Temple of the Inscriptions ( about 1 kilometre ( 0 @.@ 62 mi ) to the southeast ). These broad causeways were built of packed and plastered limestone and have been named after early explorers and archaeologists ; the Maler, Maudslay, Tozzer and Méndez causeways. They assisted the passage everyday traffic during the rain season and also served as dams.
The Maler Causeway runs north from behind Temple I to Group H. A large bas @-@ relief is carved onto limestone bedrock upon the course of the causeway just south of Group H. It depicts two bound captives and dates to the Late Classic.
The Maudsley Causeway runs 0 @.@ 8 kilometres ( 0 @.@ 50 mi ) northeast from Temple IV to Group H.
The Mendez Causeway runs southeast from the East Plaza to Temple VI, a distance of about 1 @.@ 3 kilometres ( 0 @.@ 81 mi ).
The Tozzer Causeway runs west from the Great Plaza to Temple IV.
= = = Architectural groups = = =
The Great Plaza lies at the core of the site ; it is flanked on the east and west sides by two great temple @-@ pyramids. On the north side it is bordered by the North Acropolis and on the south by the Central Acropolis.
The Central Acropolis is a palace complex just south of the Great Plaza.
The North Acropolis, together with the Great Plaza immediately to the south, is one of the most studied architectural groups in the Maya area ; the Tikal Project excavated a massive trench across the complex, thoroughly investigating its construction history. It is a complex group with construction beginning in the Preclassic Period, around 350 BC. It developed into a funerary complex for the ruling dynasty of the Classic Period, with each additional royal burial adding new temples on top of the older structures. After AD 400 a row of tall pyramids was added to the earlier Northern Platform, which measured 100 by 80 metres ( 330 by 260 ft ), gradually hiding it from view. Eight temple pyramids were built in the 6th century AD, each of them had an elaborate roofcomb and a stairway flanked by masks of the gods. By the 9th century AD, 43 stelae and 30 altars had been erected in the North Acropolis ; 18 of these monuments were carved with hieroglyphic texts and royal portraits. The North Acropolis continued to receive burials into the Postclassic Period.
The South Acropolis is found next to Temple V. It was built upon a large basal platform that covers an area of more than 20 @,@ 000 square metres ( 220 @,@ 000 sq ft ).
The Plaza of the Seven Temples is to the west of the South Acropolis. It is bordered on the east side by a row of nearly identical temples, by palaces on the south and west sides and by an unusual triple ballcourt on the north side.
The Mundo Perdido is to the west of the Plaza of the Seven Temples. It is the largest ceremonial complex dating from the Preclassic period at Tikal. The complex was organized as a large E @-@ Group consisting of a pyramid aligned with a platform to the east that supported three temples. The Mundo Perdido complex was rebuilt many times over the course of its history. By AD 250 – 300 its architectural style was influenced by the great metropolis of Teotihuacan in the Valley of Mexico, including the use of the talud @-@ tablero form. During the Early Classic period ( c. 250 – 600 ) the Mundo Perdido became one of the twin foci of the city, the other being the North Acropolis. From AD 250 to 378 it may have served as the royal necropolis. The Mundo Perdido complex was given its name by the archaeologists of the University of Pennsylvania ; it is centered upon the Lost World Pyramid and a small platform to the west of it.
Group G lies just south of the Mendez Causeway. The complex dates to the Late Classic and consists of palace @-@ type structures and is one of the largest groups of its type at Tikal. It has two stories but most of the rooms are on the lower floor, a total of 29 vaulted chambers. The remains of two further chambers belong to the upper storey. One of the entrances to the group was framed by a gigantic mask.
Group H is centered on a large plaza to the north of the Great Plaza. It is bordered by temples dating to the Late Classic.
There are nine Twin @-@ Pyramid Complexes at Tikal, one of which was completely dismantled in ancient times and some others were partly destroyed. They vary in size but consist of two pyramids facing each other on an east – west axis. These pyramids are flat @-@ topped and have stairways on all four sides. A row of plain stelae is placed immediately to the west of the eastern pyramid and to the north of the pyramids, and lying roughly equidistant from them, there is usually a sculpted stela and altar pair. On the south side of these complexes there is a long vaulted building containing a single room with nine doorways. The entire complex was built at once and these complexes were built at 20 @-@ year ( or k 'atun ) intervals during the Late Classic. The first twin pyramid complex was built in the early 6th century in the East Plaza. It was once thought that these complexes were unique to Tikal but rare examples have now been found at other sites, such as Yaxha and Ixlu, and they may reflect the extent of Tikal's political dominance in the Late Classic.
Group Q is a twin @-@ pyramid complex, and is one of the largest at Tikal. It was built by Yax Nuun Ayiin II in 771 in order to mark the end of the 17th K 'atun. Most of it has been restored and its monuments have been re @-@ erected.
Group R is another twin @-@ pyramid complex, dated to 790. It is close to the Maler Causeway.
= = = Structures = = =
There are thousands of ancient structures at Tikal and only a fraction of these | wikitext_103 | [
645,
285,
1996,
407,
7252,
2434,
70,
273,
253,
9835,
6949,
253,
3729,
5192,
37489,
285,
253,
8170,
33427,
432,
23305,
281,
16648,
964,
380,
308,
1479,
267,
8049,
5950,
689,
1052,
41650,
387,
253,
2670,
964,
496,
13842,
1157,
253,
40346,
30637,
2208,
3407,
247,
2007,
36703,
1975,
2199,
387,
308,
1479,
267,
1157,
534,
4821,
949,
281,
12459,
964,
2490,
9074,
2188,
4584,
6086,
22838,
908,
308,
1479,
267,
347,
247,
32539,
4328,
323,
253,
806,
8141,
14848,
3085,
1157,
33590,
8019,
1163,
329,
1457,
15541,
1157,
4439,
275,
14960,
964,
17658,
309,
387,
308,
1479,
267,
369,
12819,
327,
253,
8107,
273,
253,
2456,
1399,
41231,
4310,
9939,
964,
2490,
308,
1479,
267,
310,
1024,
247,
2201,
22777,
21779,
13750,
407,
697,
1211,
3872,
5603,
964,
329,
2670,
16064,
556,
644,
4270,
387,
308,
1479,
267,
3706,
352,
369,
6312,
275,
17926,
964,
4928,
187,
426,
426,
17855,
5740,
426,
426,
4928,
187,
308,
1479,
267,
556,
644,
10571,
16789,
407,
253,
2499,
273,
11637,
285,
253,
2208,
273,
46560,
964,
733,
369,
581,
273,
253,
6253,
273,
253,
27015,
2180,
41151,
8238,
285,
369,
581,
273,
253,
6253,
8238,
275,
253,
37708,
964,
380,
10336,
273,
253,
9129,
2846,
310,
4270,
432,
48475,
285,
3797,
253,
4558,
273,
33013,
326,
15469,
689,
5571,
26156,
313,
20504,
23899,
2387,
1029,
1157,
1781,
17292,
5796,
1951,
1157,
275,
1635,
281,
247,
1180,
273,
4577,
25874,
2352,
1157,
5796,
1951,
1157,
4178,
2979,
1157,
10656,
9195,
1157,
13498,
285,
275,
31509,
8805,
41650,
964,
1707,
310,
1014,
247,
3652,
534,
4455,
281,
452,
644,
247,
12907,
1157,
8927,
342,
14872,
8965,
2439,
253,
8323,
285,
11008,
964,
1707,
403,
671,
5093,
7829,
323,
4882,
253,
19926,
80,
40463,
266,
4023,
13197,
1157,
1690,
247,
873,
273,
495,
275,
253,
20400,
8582,
1868,
33427,
1157,
247,
4451,
4735,
275,
19926,
80,
13429,
3737,
964,
2490,
380,
48475,
908,
323,
5140,
369,
1980,
285,
25721,
2200,
327,
1214,
14,
33,
2670,
964,
380,
1305,
37761,
4447,
407,
253,
11998,
273,
8805,
323,
3652,
497,
26507,
3606,
281,
1824,
16314,
731,
285,
497,
908,
347,
45009,
1157,
2366,
342,
690,
1824,
16314,
264,
3626,
1305,
37761,
964,
380,
2022,
499,
1370,
284,
497,
47300,
342,
331,
22164,
80,
285,
10090,
387,
247,
11786,
326,
448,
1136,
5911,
33621,
715,
247,
985,
273,
47399,
326,
10208,
253,
45009,
964,
2490,
380,
16252,
2170,
273,
308,
1479,
267,
10949,
271,
5998,
3925,
6278,
39050,
313,
3495,
34703,
3641,
2387,
1157,
1199,
273,
534,
556,
417,
2568,
644,
16481,
1157,
18301,
1157,
390,
27960,
456,
964,
329,
5699,
873,
273,
6149,
4896,
6888,
407,
26062,
444,
15,
26386,
25103,
285,
10053,
9368,
3109,
275,
253,
11994,
84,
14445,
308,
1479,
267,
342,
247,
721,
1214,
14,
33,
1313,
250,
313,
1384,
23899,
2387,
4618,
32775,
3212,
247,
18556,
435,
964,
380,
1668,
6278,
39050,
313,
721,
1214,
15,
33,
374,
34703,
3641,
2387,
2170,
1475,
253,
2670,
5161,
556,
644,
12934,
1242,
18301,
3706,
352,
778,
452,
26895,
271,
2170,
273,
690,
11140,
6278,
39050,
313,
5693,
34703,
3641,
2387,
313,
923,
2708,
2387,
964,
30657,
8197,
1659,
253,
18825,
1979,
273,
253,
2670,
875,
884,
1214,
13,
33,
20181,
285,
5091,
1214,
13,
33,
20181,
1157,
285,
6830,
33314,
1214,
13,
33,
20181,
275,
253,
8704,
2170,
964,
17746,
1157,
247,
2199,
18216,
253,
14397,
6149,
4896,
556,
2011,
326,
253,
4311,
273,
253,
6149,
4896,
310,
4122,
4778,
285,
326,
275,
1142,
5053,
352,
310,
16656,
2346,
1624,
347,
247,
14397,
4735,
964,
496,
1635,
1157,
690,
4243,
273,
253,
6149,
1601,
497,
8527,
715,
247,
19913,
985,
964,
380,
6149,
1601,
273,
308,
1479,
267,
16149,
3012,
275,
7031,
432,
752,
369,
8927,
4081,
285,
352,
310,
1199,
625,
2570,
285,
25274,
12204,
264,
685,
8927,
1869,
964,
4928,
187,
426,
426,
426,
32872,
1576,
426,
426,
426,
4928,
187,
2896,
253,
26502,
27015,
1157,
247,
2990,
273,
7044,
1257,
706,
313,
2847,
1576,
2387,
7939,
2710,
4243,
273,
253,
2846,
1157,
3515,
323,
2067,
39050,
949,
697,
10106,
5161,
964,
2053,
7939,
253,
6495,
33427,
342,
17658,
577,
313,
4441,
670,
25782,
26156,
313,
374,
1214,
13,
33,
34678,
23899,
2387,
281,
253,
8935,
2387,
285,
253,
17658,
273,
253,
496,
28132,
313,
670,
337,
34064,
250,
313,
470,
1214,
15,
33,
9743,
3641,
2387,
281,
253,
32253,
2387,
964,
2053,
3862,
2847,
1576,
497,
4270,
273,
14998,
285,
26507,
3606,
48475,
285,
452,
644,
4907,
846,
2393,
8338,
2967,
285,
21101,
11644,
3706,
253,
5979,
254,
1157,
353,
5353,
3433,
333,
1157,
1916,
4396,
254,
285,
353,
9390,
26196,
2847,
1576,
964,
1583,
21075,
253,
10056,
15363,
7137,
1309,
253,
9313,
2952,
285,
671,
5608,
347,
40258,
964,
2490,
380,
5979,
254,
32872,
1106,
6613,
6146,
432,
3212,
17658,
309,
281,
5901,
388,
15,
329,
1781,
1666,
1214,
14,
33,
6619,
310,
27251,
4830,
48475,
3722,
16249,
2220,
253,
2282,
273,
253,
2847,
1106,
816,
6420,
273,
5901,
388,
15,
733,
31444,
767,
3033,
3403,
1644,
285,
12282,
281,
253,
26502,
27015,
964,
2490,
380,
353,
5353,
84,
2205,
32872,
1106,
6613,
470,
1214,
15,
33,
854,
39050,
313,
470,
1214,
15,
33,
2456,
3641,
2387,
29510,
432,
17658,
8019,
281,
5901,
388,
15,
2490,
380,
353,
46869,
32872,
1106,
6613,
32253,
432,
253,
5791,
33427,
281,
17658,
17128,
1157,
247,
4181,
273,
670,
337,
1214,
15,
33,
495,
39050,
313,
470,
1214,
15,
33,
11681,
3641,
2387,
964,
2490,
380,
1916,
4396,
254,
32872,
1106,
6613,
8935,
432,
253,
6495,
33427,
281,
17658,
8019,
964,
4928,
187,
426,
426,
426,
22717,
1546,
2390,
426,
426,
426,
4928,
187,
380,
6495,
33427,
8696,
387,
253,
5161,
273,
253,
2670,
3706,
352,
310,
21499,
264,
327,
253,
9268,
285,
8935,
7123,
407,
767,
1270,
16511,
1214,
14,
33,
25874,
2352,
964,
1623,
253,
6146,
1930,
352,
310,
270,
16586,
407,
253,
3729,
5192,
37489,
285,
327,
253,
6420,
407,
253,
8170,
5192,
37489,
964,
2490,
380,
8170,
5192,
37489,
310,
247,
21131,
2570,
816,
6420,
273,
253,
6495,
33427,
964,
2490,
380,
3729,
5192,
37489,
1157,
2366,
342,
253,
6495,
33427,
4745,
281,
253,
6420,
1157,
310,
581,
273,
253,
954,
5421,
27934,
2390,
275,
253,
41151,
2170,
3706,
253,
308,
1479,
267,
8049,
27960,
456,
247,
7863,
32775,
2439,
253,
2570,
1157,
16575,
15686,
697,
5140,
2892,
964,
733,
310,
247,
2570,
1387,
342,
5140,
5068,
275,
253,
5729,
2437,
280,
25792,
1157,
1475,
16176,
12895,
964,
733,
3715,
715,
247,
794,
254,
552,
2570,
323,
253,
10362,
34526,
273,
253,
27015,
25792,
1157,
342,
1016,
3081,
17292,
33672,
6240,
747,
33013,
327,
1755,
273,
253,
5662,
5289,
964,
2732,
5446,
9166,
247,
4194,
273,
10086,
25874,
2352,
369,
2879,
281,
253,
4321,
11442,
28449,
1157,
534,
4080,
2233,
407,
5096,
26156,
313,
24792,
407,
22146,
23899,
2387,
1157,
13237,
17197,
352,
432,
1859,
964,
16244,
16511,
25874,
2352,
497,
4270,
275,
253,
721,
394,
5331,
5446,
1157,
1016,
273,
731,
574,
271,
21184,
10699,
17890,
285,
247,
22298,
1106,
21499,
264,
407,
25965,
273,
253,
17373,
964,
2896,
253,
898,
394,
5331,
5446,
1157,
7652,
331,
293,
3348,
285,
1884,
6945,
1032,
574,
644,
33230,
275,
253,
3729,
5192,
37489,
3706,
1283,
273,
841,
41650,
497,
27251,
342,
10549,
19644,
545,
280,
17438,
285,
17292,
38317,
964,
380,
3729,
5192,
37489,
4821,
281,
4763,
3600,
8075,
715,
253,
5779,
2437,
280,
25792,
964,
2490,
380,
3684,
5192,
37489,
310,
1119,
1735,
281,
17658,
657,
15,
733,
369,
4270,
2220,
247,
1781,
15919,
5147,
326,
10949,
271,
2170,
273,
625,
685,
1384,
1214,
13,
33,
20181,
6278,
26156,
313,
18881,
1214,
13,
33,
20181,
34703,
23899,
2387,
964,
2490,
380,
33427,
273,
253,
20400,
8582,
1868,
310,
281,
253,
8935,
273,
253,
3684,
5192,
37489,
964,
733,
310,
270,
16586,
327,
253,
9268,
1930,
407,
247,
4194,
273,
4829,
8931,
33013,
1157,
407,
5796,
1951,
327,
253,
6420,
285,
8935,
7123,
285,
407,
271,
11555,
16260,
4023,
13550,
327,
253,
6146,
1930,
964,
2490,
380,
353,
16538,
3545,
69,
7112,
310,
281,
253,
8935,
273,
253,
33427,
273,
253,
20400,
8582,
1868,
964,
733,
310,
253,
6253,
12999,
24755,
2570,
13597,
432,
253,
5729,
2437,
280,
2180,
387,
308,
1479,
267,
964,
380,
2570,
369,
10932,
347,
247,
1781,
444,
1214,
14,
33,
5901,
11253,
273,
247,
39694,
15616,
342,
247,
5147,
281,
253,
9268,
326,
4516,
1264,
33013,
964,
380,
353,
16538,
3545,
69,
7112,
2570,
369,
38096,
1142,
2069,
689,
253,
2282,
273,
697,
2892,
964,
2896,
5446,
10257,
1108,
7469,
697,
27934,
3740,
369,
12208,
407,
253,
1270,
1313,
37489,
273,
2745,
302,
6356,
86,
317,
266,
275,
253,
10947,
273,
8987,
1157,
1690,
253,
897,
273,
253,
5269,
438,
1214,
14,
33,
246,
1752,
2771,
830,
964,
6408,
253,
15643,
27015,
2180,
313,
260,
964,
10257,
1108,
12891,
2387,
253,
353,
16538,
3545,
69,
7112,
3395,
581,
273,
253,
19661,
37057,
273,
253,
2846,
1157,
253,
643,
1146,
253,
3729,
5192,
37489,
964,
4325,
5446,
10257,
281,
38316,
352,
778,
452,
5608,
347,
253,
17292,
15136,
37489,
964,
380,
353,
16538,
3545,
69,
7112,
2570,
369,
1677,
697,
1416,
407,
253,
21101,
11644,
273,
253,
2499,
273,
11637,
3706,
352,
310,
18932,
2220,
253,
26872,
3645,
8462,
3358,
301,
285,
247,
1355,
5147,
281,
253,
8935,
273,
352,
964,
2490,
5901,
443,
8696,
816,
6420,
273,
253,
353,
46869,
32872,
1106,
964,
380,
2570,
12282,
281,
253,
26502,
27015,
285,
8414,
273,
21131,
1214,
14,
33,
1511,
5289,
285,
310,
581,
273,
253,
6253,
2390,
273,
697,
1511,
387,
308,
1479,
267,
964,
733,
556,
767,
6281,
533,
954,
273,
253,
9956,
403,
327,
253,
2406,
5254,
1157,
247,
2264,
273,
3285,
28395,
264,
23462,
964,
380,
4558,
273,
767,
2007,
23462,
5663,
281,
253,
5170,
4657,
90,
964,
2596,
273,
253,
10032,
1972,
281,
253,
1387,
369,
29318,
407,
247,
41490,
8989,
964,
2490,
5901,
388,
310,
18932,
327,
247,
1781,
499,
11983,
281,
253,
6146,
273,
253,
6495,
33427,
964,
733,
310,
270,
16586,
407,
33013,
13597,
281,
253,
26502,
27015,
964,
2490,
1707,
403,
7457,
37745,
1214,
14,
33,
8462,
3358,
301,
24154,
265,
387,
308,
1479,
267,
1157,
581,
273,
534,
369,
4336,
37227,
1070,
275,
9129,
2069,
285,
690,
2571,
497,
13730,
11069,
964,
1583,
6889,
275,
1979,
533,
2882,
273,
767,
25874,
2352,
10268,
1016,
643,
327,
271,
9268,
1108,
8935,
7844,
964,
2053,
25874,
2352,
403,
6507,
1214,
14,
33,
32072,
285,
452,
22298,
1576,
327,
512,
1740,
7123,
964,
329,
4194,
273,
8342,
331,
293,
3348,
310,
4845,
4745,
281,
253,
8935,
273,
253,
14730,
39694,
285,
281,
253,
6146,
273,
253,
25874,
2352,
1157,
285,
10776,
11467,
1298,
301,
5567,
432,
731,
1157,
627,
310,
3798,
247,
17481,
264,
331,
7896,
285,
30099,
4667,
964,
1623,
253,
6420,
1930,
273,
841,
12872,
627,
310,
247,
1048,
28395,
264,
3652,
4508,
247,
2014,
2316,
342,
7457,
3369,
1576,
964,
380,
2862,
2570,
369,
4270,
387,
2378,
285,
841,
12872,
497,
4270,
387,
1384,
1214,
14,
33,
807,
313,
390,
465,
686,
255,
328,
2387,
11508,
1309,
253,
26502,
27015,
964,
380,
806,
19661,
39694,
2570,
369,
4270,
275,
253,
2393,
721,
394,
5331,
275,
253,
5791,
33427,
964,
733,
369,
2378,
1869,
326,
841,
12872,
497,
4451,
281,
308,
1479,
267,
533,
7520,
6667,
452,
1024,
644,
1119,
387,
643,
4375,
1157,
824,
347,
714,
991,
3227,
285,
309,
89,
7675,
1157,
285,
597,
778,
4887,
253,
6070,
273,
308,
1479,
267,
686,
84,
3569,
26447,
275,
253,
26502,
27015,
964,
2490,
5901,
1165,
310,
247,
19661,
1214,
14,
33,
39694,
2570,
1157,
285,
310,
581,
273,
253,
6253,
387,
308,
1479,
267,
964,
733,
369,
4270,
407,
714,
991,
24903,
328,
22587,
74,
249,
3719,
275,
818,
3677,
275,
1340,
281,
1616,
253,
990,
273,
253,
1722,
394,
611,
686,
255,
328,
964,
5595,
273,
352,
556,
644,
16789,
285,
697,
41650,
452,
644,
294,
1214,
14,
33,
33230,
964,
2490,
5901,
416,
310,
1529,
19661,
1214,
14,
33,
39694,
2570,
1157,
15483,
281,
818,
2270,
964,
733,
310,
2810,
281,
253,
5979,
254,
32872,
1106,
964,
4928,
187,
426,
426,
426,
26253,
980,
426,
426,
426,
4928,
187,
1707,
403,
6763,
273,
9129,
5289,
387,
308,
1479,
267,
285,
760,
247,
6919,
273,
841
] |
= Horrible Bosses =
Horrible Bosses is a 2011 American black comedy film directed by Seth Gordon, written by Michael Markowitz, John Francis Daley and Jonathan Goldstein, based on a story by Markowitz. It stars Jason Bateman, Charlie Day, Jason Sudeikis, Jennifer Aniston, Colin Farrell, Kevin Spacey, and Jamie Foxx. The plot follows three friends, played by Bateman, Day, and Sudeikis, who decide to murder their respective overbearing, abusive bosses, portrayed by Spacey, Aniston and Farrell.
Markowitz's script was bought by New Line Cinema in 2005 and the film spent six years in various states of pre @-@ production, with a variety of actors attached to different roles. By 2010, Goldstein and Daley had rewritten the script, and the film finally went into production.
The film premiered in Los Angeles on June 30, 2011, and received a wide release on July 8, 2011. The film exceeded financial expectations, accruing over $ 28 million in the first three days, making it the number two film in the United States during its opening weekend, and going on to become the highest @-@ grossing black comedy film of all time in unadjusted dollars, breaking the record previously set by The War of the Roses in 1990. The film grossed over $ 209 million worldwide during its theatrical run.
The film opened to positive critical reception, with several critics praising the ensemble cast, with each lead being singled out for their performances across reviews. The plot received a more mixed response ; some reviewers felt that its dark, humorous premise was explored well, while others felt the jokes were racist, homophobic, and misogynistic. A sequel, Horrible Bosses 2, was released on November 26, 2014.
= = Plot = =
Nick Hendricks ( Bateman ) and Dale Arbus ( Day ) are friends who despise their bosses. Nick works at a financial firm for the sadistic David Harken ( Spacey ), who implies the possibility of a promotion for Nick for months, only to award it to himself. Dale is a dental assistant being sexually harassed by his boss, Dr. Julia Harris ( Aniston ) ; she threatens to tell his fiancee Stacy ( Lindsay Sloane ) that he had sex with her unless he actually has sex with her. Nick and Dale's accountant friend Kurt Buckman ( Sudeikis ) enjoys working for Jack Pellitt ( Donald Sutherland ) at a chemical company, but after Jack unexpectedly dies of a heart attack, the company is taken over by Jack's cocaine @-@ addicted son Bobby ( Farrell ), whose apathy and incompetence threaten the future of the company.
At night, over drinks, Kurt jokingly suggests that their lives would be happier if their bosses were no longer around. Initially hesitant, they eventually agree to kill their employers. In search of a hitman, the trio meet Dean " Motherfuckah " Jones ( Foxx ), an ex @-@ con who agrees to be their " murder consultant ". Jones suggests that Dale, Kurt and Nick kill each other's bosses to hide their motive while making the deaths look like accidents.
The three reconnoiter Bobby's house, and Kurt steals Bobby's phone. They next go to Harken's house, where Kurt and Nick go inside while Dale waits in the car. Harken returns home and confronts Dale for littering, but then has an allergy attack from the peanut butter on the litter. Dale saves Harken by stabbing him with an EpiPen. Nick and Kurt think Dale is stabbing Harken to death and flee, with Kurt accidentally dropping Bobby's phone in Harken's bedroom. The next night, Kurt watches Julia's home, but she seduces and has sex with him. Nick and Dale reluctantly wait outside Bobby's and Harken's houses, respectively, to commit the murders, despite neither of them wanting to. Harken discovers Bobby's cellphone in his bedroom and uses it to find his address, suspecting his wife Rhonda ( Julie Bowen ) is having an affair. He drives over and kills Bobby, with Nick as a secret witness.
Nick flees at high speed, setting off a traffic camera. The trio meet to discuss their reservations about continuing with their plan. They are arrested by the police, who believe the camera footage makes them suspects in Bobby's murder. Lacking evidence, the police are forced to let the trio go free. The trio consult with Jones again, but learn that he never actually killed anyone, having been imprisoned for bootlegging the film Snow Falling on Cedars. Jones suggests that they get Harken to confess and secretly tape it. The three accidentally crash Harken's surprise birthday party, where Nick and Dale get Harken to confess to the murder before realizing that Kurt, who has the audio recorder, is elsewhere having sex with Rhonda. Harken threatens to kill all three for attempting to blackmail him. They flee by car, but Harken gives chase and repeatedly rams their vehicle. Believing they have committed a crime, the car's navigation @-@ system operator remotely disables Kurt's car, allowing Harken to catch and hold them at gunpoint. Harken shoots himself in the leg as he boasts about his plan to frame them for murdering Bobby and attempting to kill him to get rid of the witness.
The police arrest Nick, Dale and Kurt, but the navigation @-@ system operator, Gregory, reveals that it is his companies policy to record all conversations for quality assurance. Gregory plays the tape that has Harken confessing he murdered Pellitt. Harken is sentenced to 25 years to life in prison, while the friends get their charges waived. Nick is promoted to president of the company under a sadistic CEO, Kurt retains his job under a new boss, and Dale blackmails Julia into ending her harassment by convincing her to sexually harass a supposedly unconscious patient, while Jones secretly records the act.
= = Cast = =
Jason Bateman as Nick Hendricks
An executive at a financial firm who is manipulated into jumping through hoops in order to get a promotion that his boss never intended to give him. Markowitz wrote the role specifically for Bateman.
Charlie Day as Dale Arbus
A dental assistant who is sexually harassed by his boss. Described as a " hopeless romantic " in love with his fiancée. Ashton Kutcher was in talks for the role at two different points in the lengthy production. Day was considered for the role following his co @-@ starring performance with Sudeikis in the 2010 film Going the Distance — Reuters reported that industry insiders believed his performance overshadowed the main stars.
Jason Sudeikis as Kurt Buckman
An account manager at a chemical company dealing with a new, drug @-@ addicted boss after his beloved former boss dies. Sudeikis was cast in May 2010.
Jennifer Aniston as Dr. Julia Harris, D.D.S.
Markowitz based the character on a former boss, claiming she was " very sexually aggressive with everybody ". When writing the script, Markowitz intended for the role to go to Aniston. He stated, " but [ the aforementioned boss ] looked more like Cruella de Vil. It was like flirting with a cobweb. So I decided for the sake of the movie, let ’ s go with Jennifer Aniston. ” The actress insisted on wearing a brown wig for the role, wanting to look different from other characters she had played.
Colin Farrell as Bobby Pellitt
Described as a " weaselly scion " and a " corrupt and incompetent jerk who's in charge of things but clearly has no idea what he's doing. " Farrell explained the motivation he gave to the character, stating " This guy thinks he's God's gift to women, God's gift to intellect, to humor, to the club scene, to everything. It's all part of his grandiose sense of self @-@ esteem, which is probably masking a deeper sense of being a disappointment to his father and being riddled with envy over the relationship his father had with Kurt, and all kinds of other things. With Pellit, Seth gave me complete license to act as pathologically screwed up as possible. " Farrell contributed significantly to the appearance of his character, suggesting the comb over hairstyle, pot @-@ belly and an affinity for Chinese dragons.
Kevin Spacey as David Harken
President of Comnidyne Industries. Tom Cruise, Philip Seymour Hoffman and Jeff Bridges had been approached by New Line Cinema to take the role, described as a psychopathic master manipulator with an attractive wife. Spacey signed up for the role in June 2010. The part was considered " integral " to the film. Gordon commented that the character was an amalgamation of several real bosses ( rather than one single person ) to avoid being sued.
Jamie Foxx as Dean " Motherfuckah " Jones
The character had the more " colorful " name " Cocksucker Jones ", but it was changed at Foxx's request, with producer Jay Stern commenting that Foxx felt it " was over the line ". The current name was said to be subject to further change, prior to the release of the film. Foxx contributed to his character's appearance, suggesting full @-@ scalp tattoos and a retro clothing style. Foxx described the appearance as " a guy who maybe went to jail for a minute and now he's living in his own time | wikitext_103 | [
426,
12294,
8448,
38300,
265,
426,
4928,
187,
12294,
8448,
38300,
265,
310,
247,
4332,
2448,
2806,
17325,
3085,
6828,
407,
32393,
17419,
1157,
3542,
407,
6277,
4744,
29384,
1157,
2516,
7980,
399,
25406,
285,
18985,
7284,
6339,
1157,
1754,
327,
247,
2926,
407,
4744,
29384,
964,
733,
6114,
16553,
15103,
11155,
1157,
16955,
6258,
1157,
16553,
322,
2496,
1479,
261,
1157,
26355,
743,
40729,
1157,
31086,
10351,
11436,
1157,
15273,
11122,
90,
1157,
285,
27283,
11024,
89,
964,
380,
7484,
3637,
1264,
3858,
1157,
4546,
407,
15103,
11155,
1157,
6258,
1157,
285,
322,
2496,
1479,
261,
1157,
665,
7617,
281,
7701,
616,
9056,
689,
26201,
1157,
33408,
39682,
1157,
30804,
407,
11122,
90,
1157,
743,
40729,
285,
10351,
11436,
964,
2490,
4744,
29384,
686,
84,
6001,
369,
8686,
407,
1457,
10243,
43291,
275,
5826,
285,
253,
3085,
5262,
2800,
1107,
275,
2710,
3054,
273,
638,
1214,
14,
33,
3275,
1157,
342,
247,
5235,
273,
14142,
7660,
281,
1027,
9503,
964,
2896,
4267,
1157,
7284,
6339,
285,
399,
25406,
574,
35993,
253,
6001,
1157,
285,
253,
3085,
4720,
2427,
715,
3275,
964,
2490,
380,
3085,
48228,
275,
8742,
9757,
327,
3978,
1884,
1157,
4332,
1157,
285,
2959,
247,
4618,
3727,
327,
4163,
854,
1157,
4332,
964,
380,
3085,
22536,
4832,
12656,
1157,
30360,
272,
689,
370,
3349,
3041,
275,
253,
806,
1264,
1897,
1157,
2403,
352,
253,
1180,
767,
3085,
275,
253,
1986,
2077,
1309,
697,
5909,
8849,
1157,
285,
1469,
327,
281,
2489,
253,
4585,
1214,
14,
33,
13711,
272,
2806,
17325,
3085,
273,
512,
673,
275,
440,
23811,
8918,
1157,
10155,
253,
1924,
3786,
873,
407,
380,
3660,
273,
253,
416,
4863,
275,
7901,
964,
380,
3085,
13711,
264,
689,
370,
25597,
3041,
11762,
1309,
697,
38882,
1408,
964,
2490,
380,
3085,
5485,
281,
2762,
4619,
16112,
1157,
342,
2067,
17139,
9791,
2182,
253,
19862,
5248,
1157,
342,
1016,
1421,
1146,
1625,
1070,
562,
323,
616,
16226,
2439,
10123,
964,
380,
7484,
2959,
247,
625,
6804,
2380,
3706,
690,
30628,
3543,
326,
697,
3644,
1157,
1547,
11303,
26536,
369,
14859,
973,
1157,
1223,
2571,
3543,
253,
26984,
497,
22198,
1157,
2860,
2689,
12789,
1157,
285,
3731,
462,
1362,
2531,
964,
329,
24590,
1157,
12294,
8448,
38300,
265,
374,
1157,
369,
4439,
327,
4596,
3436,
1157,
4059,
964,
4928,
187,
426,
426,
40185,
426,
426,
4928,
187,
13104,
20069,
21557,
313,
15103,
11155,
2387,
285,
28710,
1780,
13097,
313,
6258,
2387,
403,
3858,
665,
26882,
885,
616,
39682,
964,
13104,
2987,
387,
247,
4832,
5882,
323,
253,
8872,
2531,
5119,
388,
782,
257,
313,
11122,
90,
2387,
1157,
665,
8018,
253,
6387,
273,
247,
14892,
323,
13104,
323,
2607,
1157,
760,
281,
5722,
352,
281,
2994,
964,
28710,
310,
247,
16138,
13372,
1146,
20512,
15598,
264,
407,
521,
12145,
1157,
3196,
15,
27261,
13680,
313,
743,
40729,
2387,
3706,
703,
37654,
281,
2028,
521,
269,
5155,
70,
659,
1974,
313,
44056,
322,
4213,
1351,
2387,
326,
344,
574,
2825,
342,
617,
5734,
344,
2686,
556,
2825,
342,
617,
964,
13104,
285,
28710,
686,
84,
49174,
3331,
32211,
18885,
1342,
313,
322,
2496,
1479,
261,
2387,
29566,
2444,
323,
5332,
367,
437,
770,
313,
10053,
322,
16580,
1373,
2387,
387,
247,
5793,
2567,
1157,
533,
846,
5332,
34065,
9778,
273,
247,
2798,
2983,
1157,
253,
2567,
310,
2668,
689,
407,
5332,
686,
84,
16394,
1214,
14,
33,
46512,
3347,
24707,
313,
10351,
11436,
2387,
1157,
3692,
1049,
7822,
285,
30515,
566,
29138,
253,
2852,
273,
253,
2567,
964,
2490,
2058,
2360,
1157,
689,
17208,
1157,
32211,
480,
536,
5356,
5936,
326,
616,
4852,
651,
320,
33128,
604,
616,
39682,
497,
642,
3356,
1475,
964,
32312,
16063,
386,
1157,
597,
6524,
5194,
281,
5159,
616,
18652,
964,
496,
3186,
273,
247,
4352,
1342,
1157,
253,
33422,
2525,
19172,
346,
12273,
71,
1807,
1240,
346,
8302,
313,
11024,
89,
2387,
1157,
271,
385,
1214,
14,
33,
345,
665,
18726,
281,
320,
616,
346,
7701,
24773,
346,
964,
8302,
5936,
326,
28710,
1157,
32211,
285,
13104,
5159,
1016,
643,
686,
84,
39682,
281,
10507,
616,
23778,
1223,
2403,
253,
8923,
1007,
751,
23678,
964,
2490,
380,
1264,
8756,
2369,
2562,
24707,
686,
84,
2419,
1157,
285,
32211,
2870,
932,
24707,
686,
84,
4481,
964,
1583,
1735,
564,
281,
388,
782,
257,
686,
84,
2419,
1157,
835,
32211,
285,
13104,
564,
3304,
1223,
28710,
38724,
275,
253,
1113,
964,
388,
782,
257,
6548,
1728,
285,
11449,
84,
28710,
323,
30653,
272,
1157,
533,
840,
556,
271,
37415,
2983,
432,
253,
36150,
10379,
327,
253,
30653,
964,
28710,
26866,
388,
782,
257,
407,
331,
22590,
779,
342,
271,
444,
2059,
26008,
964,
13104,
285,
32211,
1158,
28710,
310,
331,
22590,
388,
782,
257,
281,
2471,
285,
32645,
1157,
342,
32211,
26187,
18752,
24707,
686,
84,
4481,
275,
388,
782,
257,
686,
84,
14098,
964,
380,
1735,
2360,
1157,
32211,
28654,
27261,
686,
84,
1728,
1157,
533,
703,
9043,
86,
707,
285,
556,
2825,
342,
779,
964,
13104,
285,
28710,
46572,
3343,
3345,
24707,
686,
84,
285,
388,
782,
257,
686,
84,
9910,
1157,
2975,
1157,
281,
4514,
253,
29803,
1157,
5747,
6747,
273,
731,
14707,
281,
964,
388,
782,
257,
41217,
24707,
686,
84,
894,
6198,
275,
521,
14098,
285,
4648,
352,
281,
1089,
521,
2953,
1157,
9101,
272,
521,
4475,
11537,
18782,
313,
31340,
10427,
257,
2387,
310,
1907,
271,
18830,
964,
754,
14137,
689,
285,
26280,
24707,
1157,
342,
13104,
347,
247,
4279,
5517,
964,
2490,
13104,
7771,
265,
387,
1029,
3885,
1157,
4758,
745,
247,
7137,
6568,
964,
380,
33422,
2525,
281,
2319,
616,
33196,
670,
11440,
342,
616,
2098,
964,
1583,
403,
9833,
407,
253,
3513,
1157,
665,
2868,
253,
6568,
20541,
2789,
731,
25638,
275,
24707,
686,
84,
7701,
964,
418,
10892,
1941,
1157,
253,
3513,
403,
6726,
281,
1339,
253,
33422,
564,
1959,
964,
380,
33422,
7279,
342,
8302,
969,
1157,
533,
3037,
326,
344,
1620,
2686,
5339,
3780,
1157,
1907,
644,
32749,
323,
7491,
282,
1266,
272,
253,
3085,
18724,
401,
11822,
327,
330,
264,
1032,
964,
8302,
5936,
326,
597,
755,
388,
782,
257,
281,
25172,
285,
31065,
11173,
352,
964,
380,
1264,
26187,
13035,
388,
782,
257,
686,
84,
9326,
14348,
3128,
1157,
835,
13104,
285,
28710,
755,
388,
782,
257,
281,
25172,
281,
253,
7701,
1078,
27017,
326,
32211,
1157,
665,
556,
253,
9797,
40438,
1157,
310,
11358,
1907,
2825,
342,
11537,
18782,
964,
388,
782,
257,
37654,
281,
5159,
512,
1264,
323,
13756,
281,
2806,
5719,
779,
964,
1583,
32645,
407,
1113,
1157,
533,
388,
782,
257,
4245,
24577,
285,
12889,
391,
1317,
616,
4958,
964,
6512,
466,
1382,
597,
452,
7730,
247,
6617,
1157,
253,
1113,
686,
84,
15034,
1214,
14,
33,
985,
5572,
27938,
557,
2272,
32211,
686,
84,
1113,
1157,
6941,
388,
782,
257,
281,
5834,
285,
2186,
731,
387,
5654,
3659,
964,
388,
782,
257,
32299,
2994,
275,
253,
1791,
347,
344,
38716,
670,
521,
2098,
281,
3665,
731,
323,
7701,
272,
24707,
285,
13756,
281,
5159,
779,
281,
755,
8314,
273,
253,
5517,
964,
2490,
380,
3513,
5263,
13104,
1157,
28710,
285,
32211,
1157,
533,
253,
15034,
1214,
14,
33,
985,
5572,
1157,
28991,
1157,
12957,
326,
352,
310,
521,
4413,
3646,
281,
1924,
512,
16072,
323,
3290,
29299,
964,
28991,
7120,
253,
11173,
326,
556,
388,
782,
257,
25172,
272,
344,
21021,
367,
437,
770,
964,
388,
782,
257,
310,
16290,
281,
2030,
1107,
281,
1495,
275,
5754,
1157,
1223,
253,
3858,
755,
616,
7260,
23391,
964,
13104,
310,
15127,
281,
4007,
273,
253,
2567,
762,
247,
8872,
2531,
11731,
1157,
32211,
32751,
521,
2628,
762,
247,
747,
12145,
1157,
285,
28710,
2806,
42453,
27261,
715,
12365,
617,
21199,
407,
21414,
617,
281,
20512,
15598,
247,
24628,
22382,
3110,
1157,
1223,
8302,
31065,
5861,
253,
769,
964,
4928,
187,
426,
426,
9893,
426,
426,
4928,
187,
16553,
15103,
11155,
347,
13104,
20069,
21557,
2490,
743,
9165,
387,
247,
4832,
5882,
665,
310,
32494,
715,
22802,
949,
8511,
2695,
275,
1340,
281,
755,
247,
14892,
326,
521,
12145,
1620,
6034,
281,
1918,
779,
964,
4744,
29384,
4159,
253,
2554,
5742,
323,
15103,
11155,
964,
2490,
16955,
6258,
347,
28710,
1780,
13097,
2490,
329,
16138,
13372,
665,
310,
20512,
15598,
264,
407,
521,
12145,
964,
3666,
9397,
347,
247,
346,
29281,
18109,
346,
275,
2389,
342,
521,
269,
757,
68,
7678,
964,
1284,
41844,
611,
307,
5316,
369,
275,
12088,
323,
253,
2554,
387,
767,
1027,
2792,
275,
253,
24585,
3275,
964,
6258,
369,
2783,
323,
253,
2554,
1563,
521,
820,
1214,
14,
33,
28193,
3045,
342,
322,
2496,
1479,
261,
275,
253,
4267,
3085,
33469,
253,
45601,
1905,
24197,
2361,
326,
4491,
1210,
5852,
6566,
521,
3045,
689,
20644,
264,
253,
2022,
6114,
964,
2490,
16553,
322,
2496,
1479,
261,
347,
32211,
18885,
1342,
2490,
743,
2395,
7205,
387,
247,
5793,
2567,
10620,
342,
247,
747,
1157,
2854,
1214,
14,
33,
46512,
12145,
846,
521,
21426,
3438,
12145,
9778,
964,
322,
2496,
1479,
261,
369,
5248,
275,
2552,
4267,
964,
2490,
26355,
743,
40729,
347,
3196,
15,
27261,
13680,
1157,
399,
15,
37,
15,
52,
15,
2490,
4744,
29384,
1754,
253,
1894,
327,
247,
3438,
12145,
1157,
15081,
703,
369,
346,
1077,
20512,
13847,
342,
11648,
346,
964,
2091,
4028,
253,
6001,
1157,
4744,
29384,
6034,
323,
253,
2554,
281,
564,
281,
743,
40729,
964,
754,
4767,
1157,
346,
533,
544,
253,
18979,
12145,
5032,
3261,
625,
751,
12053,
5021,
372,
40936,
964,
733,
369,
751,
892,
343,
1076,
342,
247,
21115,
7585,
964,
1893,
309,
4425,
323,
253,
13232,
273,
253,
6440,
1157,
1339,
15956,
256,
564,
342,
26355,
743,
40729,
964,
18365,
380,
20453,
16701,
327,
9398,
247,
8516,
43610,
323,
253,
2554,
1157,
14707,
281,
1007,
1027,
432,
643,
5810,
703,
574,
4546,
964,
2490,
31086,
10351,
11436,
347,
24707,
367,
437,
770,
2490,
3666,
9397,
347,
247,
346,
359,
284,
9609,
660,
279,
346,
285,
247,
346,
17715,
285,
43650,
27964,
665,
686,
84,
275,
4179,
273,
1841,
533,
4518,
556,
642,
2934,
752,
344,
686,
84,
2509,
964,
346,
10351,
11436,
5544,
253,
16038,
344,
3534,
281,
253,
1894,
1157,
14851,
346,
831,
5599,
11121,
344,
686,
84,
2656,
686,
84,
9140,
281,
2255,
1157,
2656,
686,
84,
9140,
281,
10893,
1157,
281,
20393,
1157,
281,
253,
5453,
6200,
1157,
281,
3253,
964,
733,
686,
84,
512,
629,
273,
521,
4936,
74,
583,
3282,
273,
1881,
1214,
14,
33,
12368,
358,
1157,
534,
310,
3164,
44790,
247,
12861,
3282,
273,
1146,
247,
27531,
281,
521,
3392,
285,
1146,
391,
2016,
1070,
342,
38877,
689,
253,
2954,
521,
3392,
574,
342,
32211,
1157,
285,
512,
9351,
273,
643,
1841,
964,
2726,
367,
437,
262,
1157,
32393,
3534,
479,
3426,
7981,
281,
769,
347,
1854,
11220,
34672,
598,
347,
1896,
964,
346,
10351,
11436,
9945,
3012,
281,
253,
7286,
273,
521,
1894,
1157,
7738,
253,
2049,
689,
419,
712,
2172,
1157,
1721,
1214,
14,
33,
23828,
285,
271,
15430,
323,
5628,
41705,
964,
2490,
15273,
11122,
90,
347,
5119,
388,
782,
257,
2490,
3918,
273,
1176,
79,
36706,
570,
32079,
964,
6270,
48884,
1157,
15887,
1023,
1105,
454,
39602,
285,
9069,
33628,
2510,
574,
644,
13781,
407,
1457,
10243,
43291,
281,
1379,
253,
2554,
1157,
2529,
347,
247,
4369,
27406,
6303,
9452,
11699,
342,
271,
12994,
4475,
964,
11122,
90,
6704,
598,
323,
253,
2554,
275,
3978,
4267,
964,
380,
629,
369,
2783,
346,
9909,
346,
281,
253,
3085,
964,
17419,
20503,
326,
253,
1894,
369,
271,
47780,
20717,
273,
2067,
1524,
39682,
313,
2581,
685,
581,
2014,
1436,
2387,
281,
3693,
1146,
23460,
964,
2490,
27283,
11024,
89,
347,
19172,
346,
12273,
71,
1807,
1240,
346,
8302,
2490,
380,
1894,
574,
253,
625,
346,
30820,
346,
1416,
346,
330,
4121,
18141,
8302,
346,
1157,
533,
352,
369,
4391,
387,
11024,
89,
686,
84,
2748,
1157,
342,
14281,
16246,
35677,
36738,
326,
11024,
89,
3543,
352,
346,
369,
689,
253,
1386,
346,
964,
380,
1655,
1416,
369,
753,
281,
320,
2256,
281,
2007,
1818,
1157,
2720,
281,
253,
3727,
273,
253,
3085,
964,
11024,
89,
9945,
281,
521,
1894,
686,
84,
7286,
1157,
7738,
2120,
1214,
14,
33,
33756,
21504,
48809,
285,
247,
13767,
14234,
3740,
964,
11024,
89,
2529,
253,
7286,
347,
346,
247,
5599,
665,
5046,
2427,
281,
12907,
323,
247,
7017,
285,
1024,
344,
686,
84,
3811,
275,
521,
1211,
673
] |
= First Mongol invasion of Burma =
The first Mongol invasions of Burma ( Myanmar ) ( Burmese : မွန ် ဂို – မြန ် မာ စစ ် ( ၁၂၇၇ – ၁၂၈၇ ) ) were a series of military conflicts between Kublai Khan's Yuan dynasty, division of the Mongol Empire, and the Pagan Empire that took place between 1277 and 1287. The invasions toppled the 250 @-@ year @-@ old Pagan Empire, and the Mongol army seized Pagan territories in present @-@ day Dehong, Yunnan and northern Burma to Tagaung. The invasions ushered in 250 years of political fragmentation in Burma and the rise of Tai @-@ Shan states throughout mainland Southeast Asia.
The Mongols first demanded tribute from Pagan in 1271 – 72, as part of their drive to encircle the Song dynasty of China. When King Narathihapate refused, Emperor Kublai Khan himself sent another mission in 1273, again demanding tribute. It too was rejected. In 1275, the emperor ordered the Yunnan government to secure the borderlands in order to block an escape path for the Song, and permitted a limited border war if Pagan contested. Pagan did contest but its army was driven back at the frontier by the Mongol Army in 1277 – 78. After a brief lull, Kublai Khan in 1281 turned his attention to Southeast Asia, demanding tribute from Pagan, the Khmer Empire, Đại Việt and Champa. When the Burmese king again refused, the emperor ordered an invasion of northern Burma. Two dry season campaigns ( 1283 – 85 ) later, the Mongols had occupied down to Tagaung and Hanlin, forcing the Burmese king to flee to Lower Burma. The Mongols organized northern Burma as the province of Zhengmian.
Ceasefire negotiations began in 1285, and ended with Narathihapate finally agreeing to submit in June 1286. The Burmese embassy, received by the emperor in Beijing in January 1287, agreed to a treaty that acknowledged the suzerainty of the Yuan dynasty or the Mongol Empire over the Pagan Empire and annual payments in taxes to the Yunnan government in exchange for the evacuation of Mongol troops from northern Burma. But the treaty never really took effect as Narathihapate was assassinated in July 1287, and no authority who could honor the treaty emerged. The Mongol command at Yunnan now deemed the imperial order to withdraw void, and ordered an invasion of central Burma. They may not have reached Pagan, and even if they did, after having suffered heavy casualties, they returned to Tagaung.
The Pagan Empire disintegrated and anarchy ensued. The Mongols, who probably preferred the situation, did nothing to restore order in the next ten years. In March 1297, they accepted the voluntary submission of King Kyawswa of Pagan although he controlled little beyond the capital city of Pagan ( Bagan ). But Kyawswa was overthrown nine months later, and the Mongols were forced to intervene, leading to their second invasion in 1300 – 01.
Marco Polo reported the first invasions ( 1277 – 87 ) in his travelogue, Il Milione. The Burmese referred to the invaders as the Taruk ( after the central Asian Turkic troops that largely made up the Mongol invasion army ) ; today, the term Taruk ( တရုတ ် ) refers to the Han Chinese instead. King Narathihapate is unkindly remembered in Burmese history as Taruk @-@ Pye Min, ( " the King who Fled from the Taruk " ).
= = Background = =
= = = Pagan and Dali = = =
In the 13th century, the Pagan Empire, along with the Khmer Empire, was one of the two main empires in mainland Southeast Asia. For much of its history, Pagan's neighbor to the northeast was not China but the independent Dali Kingdom and its predecessor Nanzhao, both with Dali as their capital city. Dali @-@ based kingdoms were a power in their own right, at times allying themselves with the Tibetan Empire to their west and at other times with China's Tang and Song dynasties. Indeed, Nanzhao's mounted armies ventured deep into what is today Burma and may have been behind the founding of the medieval city of Pagan and the Pagan Dynasty itself.
Between the newly conquered Mongol territory and Pagan were a wide swath of borderlands stretching from present @-@ day Dehong, Baoshan and Lincang prefectures in Yunnan as well as the Wa and Palaung regions ( presumably in present @-@ day northern Shan State ), which Pagan and Dali had both claimed and exercised overlapping spheres of influence. Then as now, the borderlands mostly consist of forbidding terrains of high mountain ranges.
= = = Mongol conquest of Dali = = =
The Mongol Empire first arrived at the doorstep of the Pagan Empire in 1252 by invading the Dali Kingdom in its attempt to outflank Song China. The Mongol armies captured the capital, Dali, on 7 January 1253, and went on to pacify much of the kingdom by 1257.
The arrival of the Mongols did not initially upset the existing order at the borderlands as the Mongols were intent on finishing off the Song. For the next dozen years, they consolidated their hold over the newly conquered land, which not only provided them with a base from which to attack the Song from the rear but also was strategically located on the trade routes from China to Burma and India. The Mongols set up military garrisons, manned mostly by Turkic @-@ speaking Muslims from Central Asia, in 37 circuits of the former Dali Kingdom.
= = = Decline of Pagan = = =
By then, the Pagan Empire, despite outward appearances of calm, had been in long and slow decline since the early 13th century. The continuous growth of tax @-@ free religious wealth had greatly reduced the tax base of the kingdom. The crown had lost resources needed to retain the loyalty of courtiers and military servicemen, inviting a vicious circle of internal disorders and external challenges. Although it was able to put down the first batch of serious rebellions in 1258 – 60 in South Arakan and Martaban ( Mottama ), the decline continued. On the eve of the Mongol invasions, between one and two @-@ thirds of Upper Burma's cultivable land had been donated to religion. The crown's ability to mobilize defenses was in serious jeopardy.
= = Prelude to war = =
= = = First Mongol mission ( 1271 – 72 ) = = =
The period of calm for Pagan ended in the early 1270s. By then, the Song were on the ropes, and Emperor Kublai Khan, who officially founded the Yuan dynasty on 18 December 1271, sought to cut off the retreat of Song refugees in all directions. In Pagan's case, he had ordered the Mongol governor of Dali to tighten control of the borderlands, and in January 1271 to send a mission to Pagan to demand tribute. The tribute he demanded was nominal. Given his higher priority preoccupations elsewhere, the emperor was not looking to replace the regime at Pagan. At the border, the ruler of the Wa and Palaung regions submitted to the Mongols.
When the Mongol envoys led by Qidai Tuoyin showed up, the Pagan court led by Chief Minister Ananda Pyissi was well aware of the military power of the Mongols and advised King Narathihapate to use diplomacy. The king was furious at the demand and kept the Mongol envoys waiting for weeks. The court finally devised a compromise : the envoys were sent back without ever seeing the king. Accompanying them was a Burmese envoy who carried a letter expressing friendly sentiments and the Burmese king's wish to one day worship a Buddha tooth at Beijing. The king then promptly ordered an expedition, which retook the rebellious borderland regions in April 1272. The rebel leader A @-@ Pi ( အပိ ) was brought back to Pagan. Dali relayed the news to Beijing but did not carry out any military action.
= = = Second Mongol mission ( 1273 ) = = =
At Beijing, Kublai Khan, who was preparing an invasion of Japan, decided against a war with Pagan — for the time being. On 3 March 1273, he sent a 4 @-@ member delegation led by an imperial ambassador, the First Secretary to the Board Rites, to Pagan. The delegation carried a letter from the emperor. The letter says :
" If you have finally decided to fulfill your duties towards the All @-@ Highest, send one of your brothers or senior ministers, to show men that all the world is linked with Us, and enter into a perpetual alliance. This will add to your reputation, and be in your own interests ; for if it comes to war, who will be the victor? Ponder well, O | wikitext_103 | [
426,
3973,
31121,
311,
11492,
273,
7634,
785,
426,
4928,
187,
380,
806,
31121,
311,
45052,
621,
273,
7634,
785,
313,
43828,
2387,
313,
7634,
78,
3248,
1163,
209,
7183,
236,
7183,
123,
7183,
231,
209,
33160,
209,
7183,
213,
7183,
244,
49171,
1108,
209,
7183,
236,
7183,
122,
7183,
231,
209,
33160,
209,
7183,
236,
45492,
209,
7183,
216,
7183,
216,
209,
33160,
313,
209,
157,
212,
212,
157,
212,
213,
157,
212,
218,
157,
212,
218,
1108,
209,
157,
212,
212,
157,
212,
213,
157,
212,
219,
157,
212,
218,
2387,
2387,
497,
247,
2962,
273,
4668,
15272,
875,
611,
2292,
2284,
21128,
686,
84,
50051,
34526,
1157,
9025,
273,
253,
31121,
311,
13958,
1157,
285,
253,
367,
12043,
13958,
326,
2335,
1659,
875,
1249,
2357,
285,
1249,
2597,
964,
380,
45052,
621,
37210,
1070,
253,
10257,
1214,
14,
33,
807,
1214,
14,
33,
1711,
367,
12043,
13958,
1157,
285,
253,
31121,
311,
8544,
17571,
367,
12043,
26949,
275,
1246,
1214,
14,
33,
1388,
1605,
73,
543,
1157,
714,
4462,
266,
285,
11186,
7634,
785,
281,
308,
12727,
1947,
964,
380,
45052,
621,
441,
23258,
275,
10257,
1107,
273,
3569,
27159,
275,
7634,
785,
285,
253,
6054,
273,
14616,
1214,
14,
33,
41098,
3054,
4768,
31584,
29797,
10497,
964,
2490,
380,
31121,
3017,
806,
15665,
27458,
432,
367,
12043,
275,
1249,
3677,
1108,
8187,
1157,
347,
629,
273,
616,
4446,
281,
2349,
1426,
282,
253,
16865,
34526,
273,
4135,
964,
2091,
4377,
26417,
506,
6356,
522,
366,
9284,
1157,
22212,
611,
2292,
2284,
21128,
2994,
2197,
1529,
7517,
275,
1249,
3655,
1157,
969,
17905,
27458,
964,
733,
1512,
369,
10945,
964,
496,
1249,
1976,
1157,
253,
26390,
6960,
253,
714,
4462,
266,
2208,
281,
7895,
253,
5680,
6056,
275,
1340,
281,
2972,
271,
8773,
1854,
323,
253,
16865,
1157,
285,
11460,
247,
3710,
5680,
2137,
604,
367,
12043,
30983,
964,
367,
12043,
858,
12417,
533,
697,
8544,
369,
8877,
896,
387,
253,
34642,
407,
253,
31121,
311,
8663,
275,
1249,
2357,
1108,
10523,
964,
2732,
247,
4864,
298,
962,
1157,
611,
2292,
2284,
21128,
275,
1249,
3593,
3531,
521,
4116,
281,
29797,
10497,
1157,
17905,
27458,
432,
367,
12043,
1157,
253,
15858,
961,
13958,
1157,
11437,
227,
30110,
74,
17721,
35177,
85,
285,
23431,
66,
964,
2091,
253,
7634,
78,
3248,
6963,
969,
9284,
1157,
253,
26390,
6960,
271,
11492,
273,
11186,
7634,
785,
964,
5761,
6079,
2952,
18120,
313,
1249,
3245,
1108,
9330,
2387,
1996,
1157,
253,
31121,
3017,
574,
13598,
1066,
281,
308,
12727,
1947,
285,
13594,
3642,
1157,
17190,
253,
7634,
78,
3248,
6963,
281,
32645,
281,
20672,
7634,
785,
964,
380,
31121,
3017,
10932,
11186,
7634,
785,
347,
253,
14254,
273,
1503,
24176,
78,
757,
964,
2490,
16357,
511,
11342,
16685,
3407,
275,
1249,
2227,
1157,
285,
7402,
342,
26417,
506,
6356,
522,
366,
4720,
33732,
281,
11929,
275,
3978,
1249,
2691,
964,
380,
7634,
78,
3248,
34202,
1157,
2959,
407,
253,
26390,
275,
18496,
275,
4247,
1249,
2597,
1157,
5821,
281,
247,
23848,
326,
14969,
253,
402,
8260,
404,
555,
273,
253,
50051,
34526,
390,
253,
31121,
311,
13958,
689,
253,
367,
12043,
13958,
285,
7970,
10762,
275,
10474,
281,
253,
714,
4462,
266,
2208,
275,
6431,
323,
253,
39774,
273,
31121,
311,
10824,
432,
11186,
7634,
785,
964,
1292,
253,
23848,
1620,
1663,
2335,
1055,
347,
26417,
506,
6356,
522,
366,
369,
18111,
3901,
275,
4163,
1249,
2597,
1157,
285,
642,
6265,
665,
812,
10390,
253,
23848,
13082,
964,
380,
31121,
311,
3923,
387,
714,
4462,
266,
1024,
14320,
253,
21474,
1340,
281,
10687,
2991,
1157,
285,
6960,
271,
11492,
273,
4275,
7634,
785,
964,
1583,
778,
417,
452,
4925,
367,
12043,
1157,
285,
1014,
604,
597,
858,
1157,
846,
1907,
9606,
5536,
32853,
1157,
597,
4895,
281,
308,
12727,
1947,
964,
2490,
380,
367,
12043,
13958,
557,
45595,
285,
271,
12638,
49984,
964,
380,
31121,
3017,
1157,
665,
3164,
9013,
253,
4112,
1157,
858,
2717,
281,
15042,
1340,
275,
253,
1735,
3578,
1107,
964,
496,
3919,
1249,
4148,
1157,
597,
7607,
253,
17610,
19529,
273,
4377,
18009,
1403,
2140,
66,
273,
367,
12043,
3738,
344,
6537,
1652,
4457,
253,
5347,
2846,
273,
367,
12043,
313,
378,
12043,
2387,
964,
1292,
18009,
1403,
2140,
66,
369,
689,
394,
2924,
7457,
2607,
1996,
1157,
285,
253,
31121,
3017,
497,
6726,
281,
32014,
1157,
4283,
281,
616,
1273,
11492,
275,
47822,
1108,
14805,
964,
2490,
28712,
3130,
80,
2361,
253,
806,
45052,
621,
313,
1249,
2357,
1108,
11422,
2387,
275,
521,
4288,
14873,
1157,
11090,
6939,
6035,
964,
380,
7634,
78,
3248,
6289,
281,
253,
828,
16208,
347,
253,
20081,
2788,
313,
846,
253,
4275,
11650,
14901,
280,
10824,
326,
8127,
1160,
598,
253,
31121,
311,
11492,
8544,
2387,
3706,
3063,
1157,
253,
1307,
20081,
2788,
313,
209,
49669,
7183,
238,
49171,
49669,
209,
33160,
2387,
10770,
281,
253,
13594,
5628,
3185,
964,
4377,
26417,
506,
6356,
522,
366,
310,
440,
11258,
314,
12659,
275,
7634,
78,
3248,
2892,
347,
20081,
2788,
1214,
14,
33,
367,
6683,
3689,
1157,
313,
346,
253,
4377,
665,
401,
1070,
432,
253,
20081,
2788,
346,
2387,
964,
4928,
187,
426,
426,
17720,
426,
426,
4928,
19668,
426,
426,
426,
367,
12043,
285,
399,
8952,
426,
426,
426,
4928,
187,
496,
253,
2145,
394,
5331,
1157,
253,
367,
12043,
13958,
1157,
2112,
342,
253,
15858,
961,
13958,
1157,
369,
581,
273,
253,
767,
2022,
802,
31659,
275,
31584,
29797,
10497,
964,
1198,
1199,
273,
697,
2892,
1157,
367,
12043,
686,
84,
6346,
281,
253,
29510,
369,
417,
4135,
533,
253,
3907,
399,
8952,
11491,
285,
697,
28934,
427,
11670,
31035,
1157,
1097,
342,
399,
8952,
347,
616,
5347,
2846,
964,
399,
8952,
1214,
14,
33,
1754,
6963,
41635,
497,
247,
1612,
275,
616,
1211,
987,
1157,
387,
2069,
355,
2943,
3746,
342,
253,
41592,
13958,
281,
616,
8935,
285,
387,
643,
2069,
342,
4135,
686,
84,
31256,
285,
16865,
24187,
505,
447,
964,
8079,
1157,
427,
11670,
31035,
686,
84,
10877,
29894,
50193,
3676,
715,
752,
310,
3063,
7634,
785,
285,
778,
452,
644,
3212,
253,
23569,
273,
253,
24196,
2846,
273,
367,
12043,
285,
253,
367,
12043,
32746,
9898,
3139,
964,
2490,
17842,
253,
9841,
41549,
31121,
311,
12785,
285,
367,
12043,
497,
247,
4618,
1863,
506,
273,
5680,
6056,
23148,
432,
1246,
1214,
14,
33,
1388,
1605,
73,
543,
1157,
11086,
375,
5582,
285,
418,
1763,
606,
638,
738,
980,
275,
714,
4462,
266,
347,
973,
347,
253,
23224,
285,
5226,
66,
1947,
4811,
313,
18289,
275,
1246,
1214,
14,
33,
1388,
11186,
41098,
2418,
2387,
1157,
534,
367,
12043,
285,
399,
8952,
574,
1097,
7558,
285,
25796,
21481,
28394,
273,
4833,
964,
2635,
347,
1024,
1157,
253,
5680,
6056,
6571,
2882,
273,
17163,
17270,
4109,
44196,
273,
1029,
11129,
13794,
964,
4928,
187,
426,
426,
426,
31121,
311,
35224,
273,
399,
8952,
426,
426,
426,
4928,
187,
380,
31121,
311,
13958,
806,
7244,
387,
253,
3369,
10539,
273,
253,
367,
12043,
13958,
275,
11140,
19,
407,
45573,
253,
399,
8952,
11491,
275,
697,
3177,
281,
562,
1258,
1164,
16865,
4135,
964,
380,
31121,
311,
29894,
10848,
253,
5347,
1157,
399,
8952,
1157,
327,
818,
4247,
11140,
20,
1157,
285,
2427,
327,
281,
19162,
1419,
1199,
273,
253,
18794,
407,
11140,
24,
964,
2490,
380,
13024,
273,
253,
31121,
3017,
858,
417,
8523,
14004,
253,
5368,
1340,
387,
253,
5680,
6056,
347,
253,
31121,
3017,
497,
6860,
327,
19083,
745,
253,
16865,
964,
1198,
253,
1735,
13365,
1107,
1157,
597,
33114,
616,
2186,
689,
253,
9841,
41549,
2659,
1157,
534,
417,
760,
2530,
731,
342,
247,
2613,
432,
534,
281,
2983,
253,
16865,
432,
253,
10581,
533,
671,
369,
3483,
1037,
4441,
327,
253,
5454,
15050,
432,
4135,
281,
7634,
785,
285,
5427,
964,
380,
31121,
3017,
873,
598,
4668,
305,
3298,
10047,
1157,
637,
9306,
6571,
407,
14901,
280,
1214,
14,
33,
8288,
16492,
432,
8170,
10497,
1157,
275,
5345,
14174,
273,
253,
3438,
399,
8952,
11491,
964,
4928,
187,
426,
426,
426,
17403,
460,
273,
367,
12043,
426,
426,
426,
4928,
187,
2896,
840,
1157,
253,
367,
12043,
13958,
1157,
5747,
22684,
18655,
273,
11874,
1157,
574,
644,
275,
1048,
285,
3468,
10343,
1580,
253,
2393,
2145,
394,
5331,
964,
380,
5415,
3116,
273,
2891,
1214,
14,
33,
1959,
7231,
8788,
574,
10260,
3777,
253,
2891,
2613,
273,
253,
18794,
964,
380,
16834,
574,
3663,
5300,
3058,
281,
13280,
253,
22964,
273,
1302,
4670,
285,
4668,
50213,
14745,
1157,
31337,
247,
30157,
9096,
273,
4812,
9360,
285,
6024,
7881,
964,
4129,
352,
369,
2104,
281,
1691,
1066,
253,
806,
14604,
273,
4092,
25789,
621,
275,
11140,
25,
1108,
3925,
275,
3684,
39319,
17369,
285,
5794,
23818,
313,
353,
1519,
2902,
2387,
1157,
253,
10343,
4821,
964,
1623,
253,
43866,
273,
253,
31121,
311,
45052,
621,
1157,
875,
581,
285,
767,
1214,
14,
33,
289,
14950,
273,
24120,
7634,
785,
686,
84,
19324,
494,
2659,
574,
644,
26837,
281,
9596,
964,
380,
16834,
686,
84,
3745,
281,
31551,
907,
25774,
369,
275,
4092,
39378,
964,
4928,
187,
426,
426,
367,
1661,
2496,
281,
2137,
426,
426,
4928,
19668,
426,
426,
426,
3973,
31121,
311,
7517,
313,
1249,
3677,
1108,
8187,
2387,
426,
426,
426,
4928,
187,
380,
2180,
273,
11874,
323,
367,
12043,
7402,
275,
253,
2393,
1249,
1967,
84,
964,
2896,
840,
1157,
253,
16865,
497,
327,
253,
39553,
1157,
285,
22212,
611,
2292,
2284,
21128,
1157,
665,
15335,
11420,
253,
50051,
34526,
327,
1283,
4565,
1249,
3677,
1157,
7799,
281,
2624,
745,
253,
19015,
273,
16865,
19382,
275,
512,
10746,
964,
496,
367,
12043,
686,
84,
1083,
1157,
344,
574,
6960,
253,
31121,
311,
14176,
273,
399,
8952,
281,
6863,
257,
1453,
273,
253,
5680,
6056,
1157,
285,
275,
4247,
1249,
3677,
281,
5007,
247,
7517,
281,
367,
12043,
281,
4831,
27458,
964,
380,
27458,
344,
15665,
369,
25662,
964,
10300,
521,
2169,
11674,
638,
20774,
569,
11358,
1157,
253,
26390,
369,
417,
2819,
281,
8171,
253,
9459,
387,
367,
12043,
964,
2058,
253,
5680,
1157,
253,
29658,
273,
253,
23224,
285,
5226,
66,
1947,
4811,
9262,
281,
253,
31121,
3017,
964,
2490,
2091,
253,
31121,
311,
546,
5711,
656,
3977,
407,
1165,
301,
2284,
19223,
899,
249,
2692,
598,
1157,
253,
367,
12043,
1302,
3977,
407,
9060,
8308,
743,
7447,
8462,
739,
74,
369,
973,
6600,
273,
253,
4668,
1612,
273,
253,
31121,
3017,
285,
15140,
4377,
26417,
506,
6356,
522,
366,
281,
897,
44638,
964,
380,
6963,
369,
32986,
387,
253,
4831,
285,
4934,
253,
31121,
311,
546,
5711,
656,
6179,
323,
3618,
964,
380,
1302,
4720,
32434,
247,
18230,
1163,
253,
546,
5711,
656,
497,
2197,
896,
1293,
2455,
6523,
253,
6963,
964,
8874,
297,
13459,
272,
731,
369,
247,
7634,
78,
3248,
17400,
899,
665,
4824,
247,
4857,
13002,
11453,
39236,
285,
253,
7634,
78,
3248,
6963,
686,
84,
5730,
281,
581,
1388,
17246,
247,
27016,
15205,
387,
18496,
964,
380,
6963,
840,
25122,
6960,
271,
26018,
1157,
534,
851,
645,
253,
25789,
784,
5680,
1373,
4811,
275,
4162,
1249,
3547,
964,
380,
29703,
6657,
329,
1214,
14,
33,
16617,
313,
209,
7183,
96,
7183,
232,
7183,
244,
2387,
369,
3982,
896,
281,
367,
12043,
964,
399,
8952,
774,
19416,
253,
3668,
281,
18496,
533,
858,
417,
4459,
562,
667,
4668,
2250,
964,
4928,
187,
426,
426,
426,
6347,
31121,
311,
7517,
313,
1249,
3655,
2387,
426,
426,
426,
4928,
187,
2058,
18496,
1157,
611,
2292,
2284,
21128,
1157,
665,
369,
13828,
271,
11492,
273,
4047,
1157,
4425,
1411,
247,
2137,
342,
367,
12043,
1905,
323,
253,
673,
1146,
964,
1623,
495,
3919,
1249,
3655,
1157,
344,
2197,
247,
577,
1214,
14,
33,
3558,
31896,
3977,
407,
271,
21474,
27178,
1157,
253,
3973,
9526,
281,
253,
5986,
416,
3254,
1157,
281,
367,
12043,
964,
380,
31896,
4824,
247,
4857,
432,
253,
26390,
964,
380,
4857,
2296,
1163,
2490,
346,
1310,
368,
452,
4720,
4425,
281,
19145,
634,
12803,
4404,
253,
1876,
1214,
14,
33,
11905,
3957,
1157,
5007,
581,
273,
634,
13189,
390,
8474,
23885,
1157,
281,
921,
1821,
326,
512,
253,
1533,
310,
7939,
342,
8802,
1157,
285,
4901,
715,
247,
41510,
23158,
964,
831,
588,
823,
281,
634,
12681,
1157,
285,
320,
275,
634,
1211,
6284,
3706,
323,
604,
352,
3249,
281,
2137,
1157,
665,
588,
320,
253,
3949,
263,
3736,
367,
9631,
973,
1157,
473
] |
power in Germany in the 1930s, the present German state has committed itself to taking active steps to prevent the rise of any ideology that threatens the values enshrined in the German constitution. The BfV domestic intelligence service ( Bundesamt für Verfassungsschutz, or Federal Office for the Protection of the Constitution ) regards the aims of Scientology as running counter to Germany's free and democratic order, and has been monitoring Scientology since 1997, as have the Offices for the Protection of the Constitution in a number of German Länder. Minister for Family Policy Claudia Nolte instituted the surveillance, saying that the church had totalitarian tendencies and that she would oppose Scientology with all the means at her disposal.
The German Church of Scientology has repeatedly challenged the legality of this surveillance in court. In December 2001, the Administrative Court in Berlin ruled against the Berlin Office for the Protection of the Constitution and ordered it to stop the recruitment and deployment of staff and members of the Church of Scientology Berlin as paid informants. The court ruled that the use of informants was disproportionate. In 2003, the same court ruled that it was illegal for the Berlin Office for the Protection of the Constitution to include the activities of Scientology in its report, given that the report did not document any activities that were opposed to the constitution.
At the federal level, Scientology lost a complaint against continued surveillance by the BfV in November 2004. The federal court based its opinion on its judgment that the aims of Scientology, as outlined by L. Ron Hubbard in his writings, were incompatible with the German constitution. Lawyers acting for the Federal Office for the Protection of the Constitution pointed out that Hubbard had written that civil rights, for example, should be restricted to Scientologists, and they asserted that the Scientology organization was taking systematic steps to infiltrate society and government institutions in order to prevent anti @-@ Scientology legislation. Opposing counsel acting for the Church of Scientology had contended that Scientology was non @-@ political, its aims were the liberation of the human being, and that Hubbard's instructions were valid only within the Church of Scientology and were subject to interpretation, and at any rate there was no effort to implement these instructions in Germany. The court disagreed and ruled that many sources, some of them not accessible to the general public, indicated that the aims of the Church of Scientology did include the abrogation of the principle of equality and other essential human rights.
In Saarland, surveillance was stopped by a court as inappropriate in 2005, because there is no local branch of Scientology and few members. As of 6 May 2008, the Church of Scientology in Germany dropped the legal battle to prevent surveillance of its activities by the BfV after the North Rhine @-@ Westphalia Higher Administrative Court in Münster refused to hear an appeal on the matter. Being suspected of maintaining " ambitions against the free, democratic basic order ", the Scientology organization added a declaration on human rights and democracy to its bylaws.
There is at least one example of surveillance of Scientology by the German intelligence services outside of Germany. In 1998, the Swiss government detained an agent of the German government, charging him with " carrying out illegal business for a foreign state, working for a political information service and falsifying identity documents ". The German government posted bail for the agent. He was eventually given a 30 @-@ day suspended jail sentence for spying on Scientology, and the German government apologized to Switzerland for the incident.
= = " Sect filters " = =
A " sect filter ", also known as a " protective declaration " ( Schutzerklärung ), is a document that requires prospective business partners or employees to acknowledge any association with a sect or new religious movement before entering a business or employment contract. Such sect filters, primarily used to screen out Scientologists, have been drafted by German government agencies for use by businesses. " Sect commissioner's " offices exist in Germany as part of regional or local government.
A work instruction introduced in 1996 requires government staff in the Arbeitsämter – local employment agencies and social security offices operated by the Federal Ministry of Labour and Social Affairs – to mark companies owned by Scientologists with the letter " S ". Where companies are suspected of having Scientologist staff, prospective employees are alerted to this fact by government staff. Government officials have publicised the names of individual Scientologists and conducted media campaigns against their businesses ; some businesspeople have placed advertisements in the press saying they are not Scientologists in order to avoid the associated stigma.
Due to concerns about possible government infiltration by Scientologists, applicants for civil service positions in Bavaria are required to declare whether or not they are Scientologists, and a similar policy has been instituted in Hesse. Companies tendering for government contracts were likewise required to state they are not Scientologists ; in 2001, this requirement was changed, and firms are now asked to sign a form stating that " the technology of L. Ron Hubbard will not be used in executing the contract ". When it became known that Microsoft's Windows 2000 operating system included a disk defragmenter developed by Executive Software International ( a company headed by a Scientologist ), this caused concern among German government officials and clergy over data security and the potential for espionage. To assuage these concerns, Microsoft Germany agreed to provide a means to disable the utility. Following letters of complaint about discrimination from Scientology lawyers, some American companies such as General Electric, IBM and Ford Motor Company instructed their German subsidiaries to cease the use of protective declarations.
The city @-@ state of Hamburg set up a full @-@ time office dedicated to opposing Scientology, the Scientology Task Force for the Hamburg Interior Authority, under the leadership of Ursula Caberta. In 2005, in a case brought by a Scientologist, the Federal Administrative Court of Germany ordered the city of Hamburg to cease recommending the use of protective declarations to its business community, finding that the practice infringed religious freedom. In June 2008, the Hamburg Administrative Court fined the city of Hamburg 5 @,@ 000 Euros ( $ 7 @,@ 000 ) for not complying with court instructions banning the use of " sect filters. " Internet links to sample filters to be used by businesses had continued to remain available. Eileen Barker, a professor of sociology at the London School of Economics, has noted that " Germany has gone further than any other Western European country in restricting the civil rights of Scientologists. " The Hamburg task force was closed down in August 2010 as a result of budget cuts ; Caberta moved to a position within the Hamburg interior authority, where she continues her work on Scientology.
Scientologists have been banned from joining major political parties in Germany such as the Christian Democratic Union, the Christian Social Union of Bavaria, the Social Democratic Party of Germany and the Free Democratic Party. Existing Scientologist members of these parties have been " purged ", according to Time Magazine. Scientologists have been prevented from running employment and au pair agencies in Germany ; Scientologists who were running such agencies had their permits revoked. In 1995, a sports scientist and former member of the German national fencing team was dismissed from his job at the German Olympic fencing centre after he stated in an interview that he had enjoyed reading books by L. Ron Hubbard and had participated in a course run by a Scientologist management and communication consultancy firm. Thomas Gottschalk, a German TV presenter, was falsely accused in 1993 of having taken part in Scientology courses ; Gottschalk responded by announcing that he had not, and that he would henceforth cease all contact with a friend who had links to Scientology. In 2007, Günther Oettinger, the Minister @-@ President of the German state of Baden @-@ Württemberg, expressed concern that Scientologist John Travolta was to appear on Gottschalk's programme, and asked the ZDF TV station to consider revoking the invitation ; the ZDF said that uninviting Travolta would cause greater damage, and that Scientology was not going to be discussed in the programme.
In 2010, the Bavarian Administrative Court ruled that a woman working in a children's daycare centre, whose employment had been terminated when her ex @-@ husband identified her as a Scientologist, should be reinstated. The woman had demonstrated to the court's satisfaction that her Scientological beliefs were irrelevant to her work. According to the agreement that concluded the case, she promised not to use Scientology methods in her work, and to inform the children's parents of her membership in Scientology.
= = Initiative to ban Scientology = =
In March 2007, it was reported that German authorities were increasing their efforts to monitor Scientology in response to the opening of a new Scientology headquarters in Berlin. On December 7, 2007, German federal and state interior ministers expressed the opinion that the Scientology organization was continuing to pursue anti @-@ constitutional goals, restricting " essential basic and human rights like the dignity of man or the right to equal treatment ", and asked Germany's domestic intelligence agencies to collect and evaluate the information required for a possible judicial inquiry aimed at banning the organization.
The move was criticized by German politicians from all sides of the political spectrum, with legal experts and intelligence agencies expressing concern that an attempt to ban the organization would likely fail in the courts. Sabine Weber, president of the Church of Scientology in Berlin, called the accusations " unrealistic " and " absurd " and said that the German interior ministers'evaluation was based on " a few sentences out of 500 @,@ 000 pages of Scientological literature ". She added, " I can also find hundreds of quotes in the Bible that are totalitarian but that doesn 't mean I will demand the ban of Christianity. "
In November 2008, the government abandoned its attempts to ban Scientology, after finding insufficient | wikitext_103 | [
1612,
275,
6176,
275,
253,
17437,
84,
1157,
253,
1246,
5685,
1375,
556,
7730,
3139,
281,
3192,
3939,
5018,
281,
3657,
253,
6054,
273,
667,
25680,
326,
37654,
253,
2193,
546,
34083,
967,
275,
253,
5685,
7410,
964,
380,
378,
71,
55,
9836,
9260,
2579,
313,
42442,
312,
85,
13417,
7188,
71,
515,
1947,
859,
348,
25374,
1157,
390,
7671,
7454,
323,
253,
17504,
273,
253,
10350,
2387,
17730,
253,
13698,
273,
11615,
1497,
347,
3515,
4828,
281,
6176,
686,
84,
1959,
285,
18545,
1340,
1157,
285,
556,
644,
8667,
11615,
1497,
1580,
8210,
1157,
347,
452,
253,
5566,
1271,
323,
253,
17504,
273,
253,
10350,
275,
247,
1180,
273,
5685,
418,
32287,
964,
8308,
323,
12079,
11981,
35662,
571,
427,
311,
442,
38417,
253,
13234,
1157,
3981,
326,
253,
6105,
574,
2264,
14621,
37725,
285,
326,
703,
651,
25437,
11615,
1497,
342,
512,
253,
2097,
387,
617,
23585,
964,
2490,
380,
5685,
6412,
273,
11615,
1497,
556,
12889,
14870,
253,
1791,
1319,
273,
436,
13234,
275,
1302,
964,
496,
4565,
6585,
1157,
253,
33241,
2111,
275,
12911,
12969,
1411,
253,
12911,
7454,
323,
253,
17504,
273,
253,
10350,
285,
6960,
352,
281,
3523,
253,
16510,
285,
19007,
273,
4750,
285,
2758,
273,
253,
6412,
273,
11615,
1497,
12911,
347,
5087,
4151,
1103,
964,
380,
1302,
12969,
326,
253,
897,
273,
4151,
1103,
369,
50196,
964,
496,
6469,
1157,
253,
1072,
1302,
12969,
326,
352,
369,
9676,
323,
253,
12911,
7454,
323,
253,
17504,
273,
253,
10350,
281,
2486,
253,
4712,
273,
11615,
1497,
275,
697,
1304,
1157,
1677,
326,
253,
1304,
858,
417,
3389,
667,
4712,
326,
497,
10066,
281,
253,
7410,
964,
2490,
2058,
253,
4400,
1268,
1157,
11615,
1497,
3663,
247,
5833,
1411,
4821,
13234,
407,
253,
378,
71,
55,
275,
4596,
6157,
964,
380,
4400,
1302,
1754,
697,
4743,
327,
697,
3883,
326,
253,
13698,
273,
11615,
1497,
1157,
347,
18627,
407,
418,
15,
15657,
35826,
275,
521,
25527,
1157,
497,
32555,
342,
253,
5685,
7410,
964,
5405,
13356,
8534,
323,
253,
7671,
7454,
323,
253,
17504,
273,
253,
10350,
8042,
562,
326,
35826,
574,
3542,
326,
5079,
3570,
1157,
323,
1650,
1157,
943,
320,
11096,
281,
11615,
11644,
1157,
285,
597,
16402,
326,
253,
11615,
1497,
6003,
369,
3192,
12082,
5018,
281,
23608,
366,
5948,
285,
2208,
10003,
275,
1340,
281,
3657,
3270,
1214,
14,
33,
11615,
1497,
10843,
964,
16823,
5555,
5067,
8534,
323,
253,
6412,
273,
11615,
1497,
574,
36007,
326,
11615,
1497,
369,
1327,
1214,
14,
33,
3569,
1157,
697,
13698,
497,
253,
35297,
273,
253,
1966,
1146,
1157,
285,
326,
35826,
686,
84,
7997,
497,
3588,
760,
1561,
253,
6412,
273,
11615,
1497,
285,
497,
2256,
281,
7914,
1157,
285,
387,
667,
2281,
627,
369,
642,
3434,
281,
3359,
841,
7997,
275,
6176,
964,
380,
1302,
41030,
285,
12969,
326,
1142,
4973,
1157,
690,
273,
731,
417,
12482,
281,
253,
2087,
1345,
1157,
4860,
326,
253,
13698,
273,
253,
6412,
273,
11615,
1497,
858,
2486,
253,
48736,
318,
273,
253,
8063,
273,
13919,
285,
643,
5667,
1966,
3570,
964,
2490,
496,
10388,
274,
1373,
1157,
13234,
369,
6331,
407,
247,
1302,
347,
19582,
275,
5826,
1157,
984,
627,
310,
642,
1980,
7789,
273,
11615,
1497,
285,
1643,
2758,
964,
1284,
273,
721,
2552,
4695,
1157,
253,
6412,
273,
11615,
1497,
275,
6176,
8231,
253,
4320,
6680,
281,
3657,
13234,
273,
697,
4712,
407,
253,
378,
71,
55,
846,
253,
3729,
11537,
460,
1214,
14,
33,
4255,
13203,
571,
23230,
33241,
2111,
275,
353,
17499,
2971,
9284,
281,
4089,
271,
4549,
327,
253,
2647,
964,
16688,
13282,
273,
11850,
346,
37321,
1411,
253,
1959,
1157,
18545,
5044,
1340,
346,
1157,
253,
11615,
1497,
6003,
2879,
247,
16204,
327,
1966,
3570,
285,
14483,
281,
697,
407,
33530,
964,
2490,
1707,
310,
387,
1878,
581,
1650,
273,
13234,
273,
11615,
1497,
407,
253,
5685,
9260,
3238,
3345,
273,
6176,
964,
496,
8065,
1157,
253,
19962,
2208,
28952,
271,
5570,
273,
253,
5685,
2208,
1157,
16153,
779,
342,
346,
8785,
562,
9676,
2136,
323,
247,
5639,
1375,
1157,
2444,
323,
247,
3569,
1491,
2579,
285,
21649,
5411,
6489,
7177,
346,
964,
380,
5685,
2208,
9269,
19590,
323,
253,
5570,
964,
754,
369,
6524,
1677,
247,
1884,
1214,
14,
33,
1388,
14116,
12907,
6197,
323,
49613,
327,
11615,
1497,
1157,
285,
253,
5685,
2208,
46446,
281,
18908,
323,
253,
7119,
964,
4928,
187,
426,
426,
346,
33743,
15116,
346,
426,
426,
4928,
187,
329,
346,
25102,
5806,
346,
1157,
671,
1929,
347,
247,
346,
12107,
16204,
346,
313,
3697,
307,
8260,
7261,
9608,
1947,
2387,
1157,
310,
247,
3389,
326,
4419,
13893,
2136,
10471,
390,
6171,
281,
14409,
667,
5864,
342,
247,
25102,
390,
747,
7231,
4866,
1078,
11734,
247,
2136,
390,
8410,
3310,
964,
6102,
25102,
15116,
1157,
8558,
908,
281,
3601,
562,
11615,
11644,
1157,
452,
644,
22390,
407,
5685,
2208,
11009,
323,
897,
407,
9341,
964,
346,
33743,
28845,
686,
84,
346,
14145,
2226,
275,
6176,
347,
629,
273,
9933,
390,
1980,
2208,
964,
2490,
329,
789,
9775,
5611,
275,
8441,
4419,
2208,
4750,
275,
253,
1780,
1257,
953,
18453,
350,
1108,
1980,
8410,
11009,
285,
2675,
3988,
14145,
11658,
407,
253,
7671,
13421,
273,
15702,
285,
8404,
17528,
1108,
281,
1616,
4413,
9633,
407,
11615,
11644,
342,
253,
4857,
346,
322,
346,
964,
7900,
4413,
403,
13282,
273,
1907,
11615,
10364,
4750,
1157,
13893,
6171,
403,
48035,
281,
436,
958,
407,
2208,
4750,
964,
7295,
6338,
452,
1345,
1701,
253,
4454,
273,
2060,
11615,
11644,
285,
5196,
3420,
18120,
1411,
616,
9341,
3706,
690,
2136,
13174,
452,
4845,
32933,
275,
253,
2315,
3981,
597,
403,
417,
11615,
11644,
275,
1340,
281,
3693,
253,
2330,
35809,
964,
2490,
12571,
281,
7350,
670,
1896,
2208,
25514,
407,
11615,
11644,
1157,
26828,
323,
5079,
2579,
6887,
275,
43447,
8125,
403,
2424,
281,
11165,
1880,
390,
417,
597,
403,
11615,
11644,
1157,
285,
247,
2074,
3646,
556,
644,
38417,
275,
388,
26491,
964,
32705,
5257,
2158,
323,
2208,
12712,
497,
21223,
2424,
281,
1375,
597,
403,
417,
11615,
11644,
3706,
275,
6585,
1157,
436,
8284,
369,
4391,
1157,
285,
16255,
403,
1024,
2546,
281,
861,
247,
830,
14851,
326,
346,
253,
4302,
273,
418,
15,
15657,
35826,
588,
417,
320,
908,
275,
24364,
253,
3310,
346,
964,
2091,
352,
3395,
1929,
326,
9664,
686,
84,
7464,
5307,
6498,
985,
2908,
247,
7592,
809,
83,
15349,
254,
3715,
407,
16155,
9107,
5625,
313,
247,
2567,
12860,
407,
247,
11615,
10364,
2387,
1157,
436,
4269,
4468,
2190,
5685,
2208,
6338,
285,
41082,
689,
941,
3988,
285,
253,
2442,
323,
17985,
49093,
964,
1916,
718,
86,
486,
841,
7350,
1157,
9664,
6176,
5821,
281,
2085,
247,
2097,
281,
19495,
253,
11839,
964,
11977,
4876,
273,
5833,
670,
11081,
432,
11615,
1497,
16099,
1157,
690,
2448,
4413,
824,
347,
4214,
21171,
1157,
21314,
285,
12673,
18521,
6487,
17189,
616,
5685,
8790,
13535,
3927,
281,
22907,
253,
897,
273,
12107,
35298,
964,
2490,
380,
2846,
1214,
14,
33,
1375,
273,
38343,
873,
598,
247,
2120,
1214,
14,
33,
673,
3906,
9940,
281,
18327,
11615,
1497,
1157,
253,
11615,
1497,
17526,
10627,
323,
253,
38343,
31639,
17907,
1157,
762,
253,
9550,
273,
46534,
3627,
15569,
35327,
964,
496,
5826,
1157,
275,
247,
1083,
3982,
407,
247,
11615,
10364,
1157,
253,
7671,
33241,
2111,
273,
6176,
6960,
253,
2846,
273,
38343,
281,
22907,
46705,
253,
897,
273,
12107,
35298,
281,
697,
2136,
3114,
1157,
4560,
326,
253,
3946,
18632,
264,
7231,
7185,
964,
496,
3978,
4695,
1157,
253,
38343,
33241,
2111,
44861,
253,
2846,
273,
38343,
608,
1214,
13,
33,
20181,
14029,
84,
313,
370,
818,
1214,
13,
33,
20181,
2387,
323,
417,
509,
2943,
342,
1302,
7997,
43916,
253,
897,
273,
346,
25102,
15116,
964,
346,
7336,
4859,
281,
3410,
15116,
281,
320,
908,
407,
9341,
574,
4821,
281,
3464,
2130,
964,
444,
587,
257,
48659,
1157,
247,
11652,
273,
10621,
1497,
387,
253,
4693,
4726,
273,
31015,
1157,
556,
4879,
326,
346,
6176,
556,
4783,
2007,
685,
667,
643,
6359,
5284,
2586,
275,
34617,
253,
5079,
3570,
273,
11615,
11644,
964,
346,
380,
38343,
4836,
3490,
369,
4581,
1066,
275,
4223,
4267,
347,
247,
906,
273,
7563,
12176,
3706,
15569,
35327,
4395,
281,
247,
1899,
1561,
253,
38343,
10755,
6265,
1157,
835,
703,
7788,
617,
789,
327,
11615,
1497,
964,
2490,
11615,
11644,
452,
644,
20374,
432,
14167,
2201,
3569,
4676,
275,
6176,
824,
347,
253,
6416,
9922,
6398,
1157,
253,
6416,
8404,
6398,
273,
43447,
8125,
1157,
253,
8404,
9922,
7021,
273,
6176,
285,
253,
7648,
9922,
7021,
964,
1889,
9020,
11615,
10364,
2758,
273,
841,
4676,
452,
644,
346,
1460,
2400,
346,
1157,
2556,
281,
6865,
20308,
964,
11615,
11644,
452,
644,
14415,
432,
3515,
8410,
285,
7331,
4667,
11009,
275,
6176,
3706,
11615,
11644,
665,
497,
3515,
824,
11009,
574,
616,
16000,
43868,
964,
496,
8878,
1157,
247,
9001,
20687,
285,
3438,
3558,
273,
253,
5685,
3872,
269,
5537,
2285,
369,
11511,
432,
521,
2628,
387,
253,
5685,
19898,
269,
5537,
9145,
846,
344,
4767,
275,
271,
4572,
326,
344,
574,
11346,
4361,
5098,
407,
418,
15,
15657,
35826,
285,
574,
13640,
275,
247,
2282,
1408,
407,
247,
11615,
10364,
4323,
285,
5511,
7279,
4306,
5882,
964,
7195,
39131,
10629,
1278,
1157,
247,
5685,
5579,
1246,
254,
1157,
369,
39380,
10145,
275,
9725,
273,
1907,
2668,
629,
275,
11615,
1497,
13519,
3706,
39131,
10629,
1278,
10974,
407,
30849,
326,
344,
574,
417,
1157,
285,
326,
344,
651,
7613,
28287,
22907,
512,
3057,
342,
247,
3331,
665,
574,
4859,
281,
11615,
1497,
964,
496,
5215,
1157,
443,
17499,
508,
473,
33513,
254,
1157,
253,
8308,
1214,
14,
33,
3918,
273,
253,
5685,
1375,
273,
378,
12670,
1214,
14,
33,
411,
3090,
1378,
85,
2037,
72,
1157,
4469,
4468,
326,
11615,
10364,
2516,
25480,
41385,
369,
281,
3176,
327,
39131,
10629,
1278,
686,
84,
13521,
1157,
285,
2546,
253,
1503,
14803,
5579,
4660,
281,
1908,
3585,
6856,
253,
21558,
3706,
253,
1503,
14803,
753,
326,
440,
7821,
2996,
25480,
41385,
651,
2847,
3687,
4723,
1157,
285,
326,
11615,
1497,
369,
417,
1469,
281,
320,
5469,
275,
253,
13521,
964,
2490,
496,
4267,
1157,
253,
43447,
6656,
33241,
2111,
12969,
326,
247,
3416,
2444,
275,
247,
2151,
686,
84,
1388,
6672,
9145,
1157,
3692,
8410,
574,
644,
19344,
672,
617,
385,
1214,
14,
33,
5938,
3636,
617,
347,
247,
11615,
10364,
1157,
943,
320,
30938,
456,
964,
380,
3416,
574,
5183,
281,
253,
1302,
686,
84,
13212,
326,
617,
11615,
1975,
13379,
497,
19124,
281,
617,
789,
964,
4794,
281,
253,
4345,
326,
7945,
253,
1083,
1157,
703,
12316,
417,
281,
897,
11615,
1497,
3082,
275,
617,
789,
1157,
285,
281,
4151,
253,
2151,
686,
84,
4651,
273,
617,
14199,
275,
11615,
1497,
964,
4928,
187,
426,
426,
30314,
281,
8913,
11615,
1497,
426,
426,
4928,
187,
496,
3919,
5215,
1157,
352,
369,
2361,
326,
5685,
9061,
497,
3629,
616,
6031,
281,
5724,
11615,
1497,
275,
2380,
281,
253,
5909,
273,
247,
747,
11615,
1497,
17929,
275,
12911,
964,
1623,
4565,
818,
1157,
5215,
1157,
5685,
4400,
285,
1375,
10755,
23885,
4469,
253,
4743,
326,
253,
11615,
1497,
6003,
369,
11440,
281,
15142,
3270,
1214,
14,
33,
10281,
7342,
1157,
34617,
346,
5667,
5044,
285,
1966,
3570,
751,
253,
24027,
273,
637,
390,
253,
987,
281,
4503,
1971,
346,
1157,
285,
2546,
6176,
686,
84,
9836,
9260,
11009,
281,
4822,
285,
7472,
253,
1491,
2424,
323,
247,
1896,
12379,
14392,
11205,
387,
43916,
253,
6003,
964,
2490,
380,
2118,
369,
23159,
407,
5685,
13557,
432,
512,
7123,
273,
253,
3569,
6637,
1157,
342,
4320,
10071,
285,
9260,
11009,
13002,
4468,
326,
271,
3177,
281,
8913,
253,
6003,
651,
2779,
1891,
275,
253,
7829,
964,
16336,
460,
37247,
1157,
4007,
273,
253,
6412,
273,
11615,
1497,
275,
12911,
1157,
1925,
253,
29672,
346,
46521,
346,
285,
346,
20873,
346,
285,
753,
326,
253,
5685,
10755,
23885,
686,
7103,
369,
1754,
327,
346,
247,
1643,
14683,
562,
273,
6783,
1214,
13,
33,
20181,
7223,
273,
11615,
1975,
6239,
346,
964,
1500,
2879,
1157,
346,
309,
476,
671,
1089,
8307,
273,
19101,
275,
253,
13534,
326,
403,
2264,
14621,
533,
326,
2506,
686,
85,
1599,
309,
588,
4831,
253,
8913,
273,
20242,
964,
346,
2490,
496,
4596,
4695,
1157,
253,
2208,
13966,
697,
9437,
281,
8913,
11615,
1497,
1157,
846,
4560,
12497
] |
, when, following arbitration, the RFU relented and joined the IRFB. The absence of international matches was a factor in England agreeing to face the Natives on 16 February 1889.
The line @-@ ups selected for the 16 February match were both strong, and close to full strength. Though 12 of the England side had not played internationally before, all were experienced at domestic level. The match was refereed by Rowland Hill, who had also officiated the Natives'first match in Britain, against Surrey. The opening of the first half was a scoreless affair, with much tackling and scrummaging on the heavy ground. Later in the half England scored two tries through Harry Bedford, but both were disputed by the Natives, who claimed that one of their players had grounded the ball in @-@ goal. England took the two @-@ try advantage into the second half.
Early in the second half a third disputed try was scored by the English. The try and its aftermath caused controversy and a rift between the Natives and the RFU. Ellison attempted to tackle the English player Stoddart, and in the process ripped his shorts off. The Natives quickly formed a circle around Stoddart to allow him to replace his clothing without being seen. While this was happening one of the English players, Frank Evershed, picked up the ball and scored a try. The New Zealanders protested, believing that play had stopped after claiming Stoddart had called " dead ball " – but Hill awarded the try, prompting three of the Native players, Dick Taiaroa, Williams, and Sherry Wynyard, to leave the field in protest. The aggrieved players were eventually persuaded to return, but not before Hill had restarted play. Ellison was very critical of Hill, particularly because he was also Secretary of the RFU. Ellison wrote after the tour that " gross as these errors were, they were insignificant when compared with another that Mr Hill committed at the outset of the game, viz, refereeing at all in that game ". The disputed try was followed by a final try for the English, who ultimately won 7 – 0.
The RFU, at Hill's instigation, promptly demanded an apology from the Natives'captain of the day, Edward McCausland, who had led the team as Joe Warbrick was injured. The English authorities of the time believed that the decision of a referee was above question, and that protesting a decision as the New Zealanders had done was unsportsmanlike. The RFU threatened to bar any of their affiliated players – in other words, the entire rugby playing population of England – from facing the Natives if they did not apologise. McCausland swiftly sent an apology by telegram, but this was deemed inadequate ; he therefore sent another, four days after the game :
The London establishment that governed the game were disturbed by the New Zealanders'approach to the game ; reports of rough and over @-@ aggressive play by the Natives had steadily increased in frequency since their arrival in Britain. In the north of England, criticism of the visitors'sportsmanship was rarer ; the tourists were accepted as playing the game in the same spirit as their local opponents, which in the north was a more working class sport than in the south. Some of the Natives, including Joe Warbrick, accused the RFU and the English press of hypocrisy, claiming that they were quick to criticise the New Zealanders for rough play, yet tolerant of similar behaviour from their own players.
= = Later matches and departure from England = =
The Natives remained in London following the England international. They defeated London Welsh on 18 February, before losing first to Cambridge, then Oxford University. From there they travelled north and won two matches before losing to Leigh. After a win over Runcorn, there was a defeat to Oldham, played on a ground Eyton said was so frozen it was dangerous. After reversing their previous loss to Halifax with a 6 – 0 win, the Natives suffered a loss to Barrow and District on 7 March. The New Zealanders then had a run of seven straight wins before a 1 – 1 draw with Hull. Widnes were then defeated for the second time in two weeks in the tourists'last match in northern England.
The team struggled to find an opponent for their final match in Britain. They eventually played Southern Counties, and beat them 3 – 1. This was their 74th match in the British Isles and their 49th victory. The authorities and press in London continued to view the team negatively, and the Natives boarded ship without a formal farewell. This perceived affront from the RFU provoked some criticism from the press outside London, as well as from the team manager Scott, who felt that with the team's official apology after the England match, the controversy should have put to rest.
= = Australia = =
The majority of the Natives left Plymouth on 29 March ( Eyton and Pie Wynyard followed a week later ). They arrived in Melbourne in May, where the team played mostly Victorian Rules football, hoping to make more money that way. Although the side had employed Jack Lawlor to coach them in Victorian Rules during their tour of the British Isles, the heavy schedule and high injury count had left little time and energy for such training. As a result, the Victorian Rules matches were a failure ; the players'unfamiliarity with the rules, combined with the fact that most of the Natives were rugby forwards ( and therefore less suited to the more open Victorian Rules ), ensured that they failed to perform well on the field and struggled to attract large crowds. The side played nine Victorian Rules matches in total, including one in New South Wales, but won only three of them, all against relatively weak opposition.
The side's success in their rugby matches contrasted to their failure in Victorian Rules – the New Zealanders played three rugby matches while in Victoria : against Melbourne, a Navy selection, and Victoria. The matches were all won, with their game against Victoria a 19 – 0 victory. After this they left for Sydney for further rugby matches, and defeated New South Wales 12 – 9. After two further victories, the side again faced New South Wales, and won the match 16 – 12. Another two victories followed, before the team played their only association football matches of the tour – both defeats.
The team travelled north to Queensland, where, as in New South Wales, rugby was the dominant code of football. Consequently, the team exclusively played rugby while in the region. The Natives faced Queensland at the Association Ground in Brisbane. The 8000 spectators witnessed the New Zealanders overwhelm the Queenslanders to win 22 – 0 ; the Natives did not exert themselves in the win, and the score did not reflect their dominance. After a further two matches, against Toowoomba and Ipswich ( both of whom were comfortably defeated ), the team returned to Brisbane for a rematch with Queensland. In contrast to their first meeting, the first @-@ half was a close affair, and the two sides were tied at the conclusion of the half. Billy Warbrick suffered a kick to the head, and had to retire early in the second @-@ half. Following the loss of Warbrick, the play of the Natives improved and they recovered to win 11 – 7. Not long after the game concluded rumours circulated that some of the players had been offered ₤ 50 by bookmakers to throw the game. Eyton later said :
It was on the occasion of this match that four of our players were thought, in racing parlance, to be playing " stiff ", and that they had been got by some bookies ; at all events, when accused of it at half @-@ time and cautioned, they played a different game in the second half.
The response from the team's management was to suspend four players. The team travelled to Toowoomba, where they defeated the locals 19 – 0. The Natives included a replacement player for only the second time, Charles Speakman, after the suspensions reduced the playing strength of the side. The team then travelled back to New Zealand, and arrived in Invercargill on 5 August.
= = Return to New Zealand = =
Two days after their return, the Natives faced Southland, who they defeated 5 – 1 in front of a crowd of 2 @,@ 000. The side suffered further injury, to Harry Lee, and recruited Southlander W. Hirst for their match against Mataura District on 8 August. Despite playing the match two players down, the Natives comfortably defeated Mataura 16 – 3. Following the side's return to New Zealand, the Otago Rugby Football Union demanded that the team's management explain the accusations levelled at them in Queensland. Eyton responded by insisting that the players had only been suspended while an investigation was conducted, and that the management was confident no wrongdoing had occurred. The Northern Rugby Union ( since renamed Queensland Rugby Union ) summarised the incident and aftermath in the 1889 Queensland Rugby Union Annual :
... it was apparent to a judge of the game that something was wrong with the Maori, as they were not showing their usual dash and combination. Four members of the team were suspended, a charge being made against them of attempting the sell the match. The matter was bought before the Otago Union, who passed the following resolution : That, having heard all available evidence regarding the charges against certain members of the Native Team, and having received an explicit denial of charges from the accused members and a satisfactory explanation from the management, we are of opinion that there are no facts before us justifying the allegations...
It is unlikely, given the attitude of the Otago Rugby Union to the Natives before their departure, that they would have dismissed the allegations if incriminating | wikitext_103 | [
1157,
672,
1157,
1563,
18087,
1157,
253,
15371,
54,
774,
8006,
285,
7416,
253,
9812,
18446,
964,
380,
5928,
273,
5213,
10129,
369,
247,
2803,
275,
5854,
33732,
281,
2454,
253,
427,
3993,
327,
1668,
5080,
45272,
964,
2490,
380,
1386,
1214,
14,
33,
35267,
4236,
323,
253,
1668,
5080,
3761,
497,
1097,
2266,
1157,
285,
2810,
281,
2120,
4757,
964,
11474,
1249,
273,
253,
5854,
1930,
574,
417,
4546,
29549,
1078,
1157,
512,
497,
7407,
387,
9836,
1268,
964,
380,
3761,
369,
10591,
22767,
407,
15784,
1373,
7061,
1157,
665,
574,
671,
2039,
4215,
253,
427,
3993,
686,
806,
3761,
275,
9643,
1157,
1411,
6201,
5292,
964,
380,
5909,
273,
253,
806,
2716,
369,
247,
4868,
1417,
18830,
1157,
342,
1199,
46710,
285,
660,
4638,
78,
2977,
327,
253,
5536,
3216,
964,
14772,
275,
253,
2716,
5854,
11691,
767,
14177,
949,
11643,
47677,
1157,
533,
1097,
497,
25147,
407,
253,
427,
3993,
1157,
665,
7558,
326,
581,
273,
616,
3773,
574,
28462,
253,
4023,
275,
1214,
14,
33,
4736,
964,
5854,
2335,
253,
767,
1214,
14,
33,
1611,
5750,
715,
253,
1273,
2716,
964,
2490,
15643,
275,
253,
1273,
2716,
247,
2626,
25147,
1611,
369,
11691,
407,
253,
4383,
964,
380,
1611,
285,
697,
31433,
4269,
16305,
285,
247,
391,
2094,
875,
253,
427,
3993,
285,
253,
15371,
54,
964,
9545,
1988,
9919,
281,
18915,
253,
4383,
4760,
659,
13323,
435,
1157,
285,
275,
253,
1232,
30548,
521,
32353,
745,
964,
380,
427,
3993,
4541,
4447,
247,
9096,
1475,
659,
13323,
435,
281,
1581,
779,
281,
8171,
521,
14234,
1293,
1146,
2326,
964,
3900,
436,
369,
9369,
581,
273,
253,
4383,
3773,
1157,
6893,
444,
735,
742,
1157,
5055,
598,
253,
4023,
285,
11691,
247,
1611,
964,
380,
1457,
12123,
398,
36790,
1157,
22142,
326,
1132,
574,
6331,
846,
15081,
659,
13323,
435,
574,
1925,
346,
3846,
4023,
346,
1108,
533,
7061,
11941,
253,
1611,
1157,
40021,
1264,
273,
253,
18199,
3773,
1157,
15392,
14616,
274,
12354,
1157,
8757,
1157,
285,
10648,
610,
48596,
13514,
1157,
281,
3553,
253,
1673,
275,
8005,
964,
380,
44618,
35571,
3773,
497,
6524,
28198,
281,
1091,
1157,
533,
417,
1078,
7061,
574,
19855,
264,
1132,
964,
9545,
1988,
369,
1077,
4619,
273,
7061,
1157,
3782,
984,
344,
369,
671,
9526,
273,
253,
15371,
54,
964,
9545,
1988,
4159,
846,
253,
4892,
326,
346,
13711,
347,
841,
6332,
497,
1157,
597,
497,
34584,
672,
2429,
342,
1529,
326,
2305,
7061,
7730,
387,
253,
35681,
273,
253,
2165,
1157,
40027,
1157,
32326,
272,
387,
512,
275,
326,
2165,
346,
964,
380,
25147,
1611,
369,
3560,
407,
247,
2457,
1611,
323,
253,
4383,
1157,
665,
9142,
1912,
818,
1108,
470,
964,
2490,
380,
15371,
54,
1157,
387,
7061,
686,
84,
978,
5538,
1157,
25122,
15665,
271,
32135,
432,
253,
427,
3993,
686,
13595,
273,
253,
1388,
1157,
12824,
8771,
666,
1373,
1157,
665,
574,
3977,
253,
2285,
347,
9915,
3660,
67,
4662,
369,
11062,
964,
380,
4383,
9061,
273,
253,
673,
6566,
326,
253,
3061,
273,
247,
32326,
369,
1840,
1953,
1157,
285,
326,
45665,
247,
3061,
347,
253,
1457,
12123,
398,
574,
2218,
369,
5061,
4124,
1342,
3022,
964,
380,
15371,
54,
13699,
281,
2534,
667,
273,
616,
27312,
3773,
1108,
275,
643,
3000,
1157,
253,
2862,
29385,
4882,
3072,
273,
5854,
1108,
432,
10268,
253,
427,
3993,
604,
597,
858,
417,
15251,
885,
964,
8771,
666,
1373,
34304,
2197,
271,
32135,
407,
4014,
1710,
1157,
533,
436,
369,
14320,
18766,
3706,
344,
3103,
2197,
1529,
1157,
1740,
1897,
846,
253,
2165,
1163,
2490,
380,
4693,
13701,
326,
17886,
253,
2165,
497,
24714,
407,
253,
1457,
12123,
398,
686,
2746,
281,
253,
2165,
3706,
5012,
273,
7227,
285,
689,
1214,
14,
33,
13847,
1132,
407,
253,
427,
3993,
574,
25060,
2559,
275,
4294,
1580,
616,
13024,
275,
9643,
964,
496,
253,
6146,
273,
5854,
1157,
14226,
273,
253,
12942,
686,
9678,
3610,
507,
1456,
369,
1218,
6554,
3706,
253,
24359,
497,
7607,
347,
4882,
253,
2165,
275,
253,
1072,
5968,
347,
616,
1980,
18062,
1157,
534,
275,
253,
6146,
369,
247,
625,
2444,
966,
9678,
685,
275,
253,
6420,
964,
3808,
273,
253,
427,
3993,
1157,
1690,
9915,
3660,
67,
4662,
1157,
10145,
253,
15371,
54,
285,
253,
4383,
2315,
273,
44016,
17976,
1157,
15081,
326,
597,
497,
3158,
281,
7291,
885,
253,
1457,
12123,
398,
323,
7227,
1132,
1157,
2568,
41842,
273,
2074,
8770,
432,
616,
1211,
3773,
964,
4928,
187,
426,
426,
14772,
10129,
285,
16018,
432,
5854,
426,
426,
4928,
187,
380,
427,
3993,
6376,
275,
4693,
1563,
253,
5854,
5213,
964,
1583,
16473,
4693,
29630,
327,
1283,
5080,
1157,
1078,
10305,
806,
281,
11988,
1157,
840,
12719,
2499,
964,
4325,
627,
597,
29433,
6146,
285,
1912,
767,
10129,
1078,
10305,
281,
49150,
964,
2732,
247,
3330,
689,
416,
7157,
1575,
1157,
627,
369,
247,
13313,
281,
8937,
3964,
1157,
4546,
327,
247,
3216,
39896,
1299,
753,
369,
594,
13831,
352,
369,
8312,
964,
2732,
40310,
616,
2045,
2957,
281,
14449,
41653,
342,
247,
721,
1108,
470,
3330,
1157,
253,
427,
3993,
9606,
247,
2957,
281,
378,
2501,
285,
4412,
327,
818,
3919,
964,
380,
1457,
12123,
398,
840,
574,
247,
1408,
273,
5093,
4951,
14896,
1078,
247,
337,
1108,
337,
3812,
342,
42432,
964,
39407,
5210,
497,
840,
16473,
323,
253,
1273,
673,
275,
767,
3618,
275,
253,
24359,
686,
1390,
3761,
275,
11186,
5854,
964,
2490,
380,
2285,
19460,
281,
1089,
271,
16871,
323,
616,
2457,
3761,
275,
9643,
964,
1583,
6524,
4546,
10586,
8240,
447,
1157,
285,
7171,
731,
495,
1108,
337,
964,
831,
369,
616,
10677,
394,
3761,
275,
253,
4782,
1680,
868,
285,
616,
7584,
394,
10170,
964,
380,
9061,
285,
2315,
275,
4693,
4821,
281,
1859,
253,
2285,
18123,
1157,
285,
253,
427,
3993,
50229,
6215,
1293,
247,
7473,
42076,
964,
831,
12351,
2438,
47610,
432,
253,
15371,
54,
42652,
690,
14226,
432,
253,
2315,
3345,
4693,
1157,
347,
973,
347,
432,
253,
2285,
7205,
7493,
1157,
665,
3543,
326,
342,
253,
2285,
686,
84,
3565,
32135,
846,
253,
5854,
3761,
1157,
253,
16305,
943,
452,
1691,
281,
1551,
964,
4928,
187,
426,
426,
6976,
426,
426,
4928,
187,
380,
5020,
273,
253,
427,
3993,
1669,
48022,
327,
3285,
3919,
313,
39896,
1299,
285,
27695,
48596,
13514,
3560,
247,
2129,
1996,
2387,
964,
1583,
7244,
275,
21818,
275,
2552,
1157,
835,
253,
2285,
4546,
6571,
27794,
16228,
5842,
1157,
11525,
281,
1056,
625,
2583,
326,
1039,
964,
4129,
253,
1930,
574,
7091,
5332,
5405,
3833,
281,
8690,
731,
275,
27794,
16228,
1309,
616,
4892,
273,
253,
4782,
1680,
868,
1157,
253,
5536,
10130,
285,
1029,
4975,
1385,
574,
1669,
1652,
673,
285,
2341,
323,
824,
3733,
964,
1284,
247,
906,
1157,
253,
27794,
16228,
10129,
497,
247,
4433,
3706,
253,
3773,
686,
32139,
414,
342,
253,
4803,
1157,
5678,
342,
253,
958,
326,
954,
273,
253,
427,
3993,
497,
29385,
32856,
313,
285,
3103,
1679,
18960,
281,
253,
625,
1527,
27794,
16228,
2387,
1157,
33075,
326,
597,
4242,
281,
1347,
973,
327,
253,
1673,
285,
19460,
281,
6427,
1781,
24597,
964,
380,
1930,
4546,
7457,
27794,
16228,
10129,
275,
2264,
1157,
1690,
581,
275,
1457,
3684,
15420,
1157,
533,
1912,
760,
1264,
273,
731,
1157,
512,
1411,
4942,
5075,
10266,
964,
2490,
380,
1930,
686,
84,
2323,
275,
616,
29385,
10129,
48397,
281,
616,
4433,
275,
27794,
16228,
1108,
253,
1457,
12123,
398,
4546,
1264,
29385,
10129,
1223,
275,
16225,
1163,
1411,
21818,
1157,
247,
13669,
5438,
1157,
285,
16225,
964,
380,
10129,
497,
512,
1912,
1157,
342,
616,
2165,
1411,
16225,
247,
655,
1108,
470,
10170,
964,
2732,
436,
597,
1669,
323,
17361,
323,
2007,
29385,
10129,
1157,
285,
16473,
1457,
3684,
15420,
1249,
1108,
898,
964,
2732,
767,
2007,
34158,
1157,
253,
1930,
969,
11372,
1457,
3684,
15420,
1157,
285,
1912,
253,
3761,
1668,
1108,
1249,
964,
8035,
767,
34158,
3560,
1157,
1078,
253,
2285,
4546,
616,
760,
5864,
5842,
10129,
273,
253,
4892,
1108,
1097,
49204,
964,
2490,
380,
2285,
29433,
6146,
281,
28748,
1157,
835,
1157,
347,
275,
1457,
3684,
15420,
1157,
29385,
369,
253,
11360,
2127,
273,
5842,
964,
13162,
1157,
253,
2285,
14288,
4546,
29385,
1223,
275,
253,
2919,
964,
380,
427,
3993,
11372,
28748,
387,
253,
7115,
29822,
275,
40767,
964,
380,
48296,
44173,
21153,
253,
1457,
12123,
398,
12357,
78,
253,
28748,
398,
281,
3330,
3307,
1108,
470,
3706,
253,
427,
3993,
858,
417,
14227,
3746,
275,
253,
3330,
1157,
285,
253,
4868,
858,
417,
4887,
616,
26447,
964,
2732,
247,
2007,
767,
10129,
1157,
1411,
1916,
319,
80,
4894,
66,
285,
309,
793,
14634,
313,
1097,
273,
5207,
497,
35766,
16473,
2387,
1157,
253,
2285,
4895,
281,
40767,
323,
247,
867,
1506,
342,
28748,
964,
496,
4499,
281,
616,
806,
4804,
1157,
253,
806,
1214,
14,
33,
2716,
369,
247,
2810,
18830,
1157,
285,
253,
767,
7123,
497,
12331,
387,
253,
6452,
273,
253,
2716,
964,
19669,
3660,
67,
4662,
9606,
247,
8386,
281,
253,
1481,
1157,
285,
574,
281,
11585,
2393,
275,
253,
1273,
1214,
14,
33,
2716,
964,
11977,
253,
2957,
273,
3660,
67,
4662,
1157,
253,
1132,
273,
253,
427,
3993,
5520,
285,
597,
12372,
281,
3330,
1903,
1108,
818,
964,
3105,
1048,
846,
253,
2165,
7945,
11267,
2108,
41443,
326,
690,
273,
253,
3773,
574,
644,
5907,
3384,
213,
99,
2456,
407,
1984,
16126,
281,
4710,
253,
2165,
964,
39896,
1299,
1996,
753,
1163,
2490,
733,
369,
327,
253,
8120,
273,
436,
3761,
326,
1740,
273,
776,
3773,
497,
1869,
1157,
275,
16893,
34680,
593,
1157,
281,
320,
4882,
346,
13827,
346,
1157,
285,
326,
597,
574,
644,
1694,
407,
690,
1984,
447,
3706,
387,
512,
3394,
1157,
672,
10145,
273,
352,
387,
2716,
1214,
14,
33,
673,
285,
17458,
264,
1157,
597,
4546,
247,
1027,
2165,
275,
253,
1273,
2716,
964,
2490,
380,
2380,
432,
253,
2285,
686,
84,
4323,
369,
281,
32407,
1740,
3773,
964,
380,
2285,
29433,
281,
1916,
319,
80,
4894,
66,
1157,
835,
597,
16473,
253,
25108,
655,
1108,
470,
964,
380,
427,
3993,
2908,
247,
5407,
4760,
323,
760,
253,
1273,
673,
1157,
8444,
8598,
518,
1342,
1157,
846,
253,
39174,
3777,
253,
4882,
4757,
273,
253,
1930,
964,
380,
2285,
840,
29433,
896,
281,
1457,
12123,
1157,
285,
7244,
275,
496,
332,
68,
1662,
408,
327,
608,
4223,
964,
4928,
187,
426,
426,
16140,
281,
1457,
12123,
426,
426,
4928,
187,
5761,
1897,
846,
616,
1091,
1157,
253,
427,
3993,
11372,
3684,
1373,
1157,
665,
597,
16473,
608,
1108,
337,
275,
2914,
273,
247,
9539,
273,
374,
1214,
13,
33,
20181,
964,
380,
1930,
9606,
2007,
4975,
1157,
281,
11643,
8652,
1157,
285,
17875,
3684,
31457,
411,
15,
388,
712,
323,
616,
3761,
1411,
353,
682,
5650,
4412,
327,
854,
4223,
964,
9937,
4882,
253,
3761,
767,
3773,
1066,
1157,
253,
427,
3993,
35766,
16473,
353,
682,
5650,
1668,
1108,
495,
964,
11977,
253,
1930,
686,
84,
1091,
281,
1457,
12123,
1157,
253,
14389,
5477,
37790,
15794,
6398,
15665,
326,
253,
2285,
686,
84,
4323,
5513,
253,
29672,
20978,
5911,
387,
731,
275,
28748,
964,
39896,
1299,
10974,
407,
40694,
326,
253,
3773,
574,
760,
644,
14116,
1223,
271,
5839,
369,
5196,
1157,
285,
326,
253,
4323,
369,
13224,
642,
45452,
574,
5866,
964,
380,
11442,
37790,
6398,
313,
1580,
27624,
28748,
37790,
6398,
2387,
10405,
1701,
253,
7119,
285,
31433,
275,
253,
45272,
28748,
37790,
6398,
25627,
1163,
2490,
3346,
352,
369,
5165,
281,
247,
5963,
273,
253,
2165,
326,
1633,
369,
3430,
342,
253,
7057,
8885,
1157,
347,
597,
497,
417,
4645,
616,
7312,
20134,
285,
5019,
964,
7874,
2758,
273,
253,
2285,
497,
14116,
1157,
247,
4179,
1146,
1160,
1411,
731,
273,
13756,
253,
5580,
253,
3761,
964,
380,
2647,
369,
8686,
1078,
253,
14389,
5477,
6398,
1157,
665,
4817,
253,
1563,
6064,
1163,
2064,
1157,
1907,
3735,
512,
2130,
1941,
5001,
253,
7260,
1411,
2176,
2758,
273,
253,
18199,
10589,
1157,
285,
1907,
2959,
271,
6843,
13336,
273,
7260,
432,
253,
10145,
2758,
285,
247,
20297,
8813,
432,
253,
4323,
1157,
359,
403,
273,
4743,
326,
627,
403,
642,
5441,
1078,
441,
816,
5411,
253,
11307,
3346,
2490,
733,
310,
11543,
1157,
1677,
253,
12046,
273,
253,
14389,
5477,
37790,
6398,
281,
253,
427,
3993,
1078,
616,
16018,
1157,
326,
597,
651,
452,
11511,
253,
11307,
604,
1485,
3428,
8779
] |
= Japanese battleship Asahi =
Asahi ( 朝日, Asahi ) was a pre @-@ dreadnought battleship built for the Imperial Japanese Navy ( IJN ) in the late 1890s. As Japan lacked the industrial capacity to build such warships itself, the ship was designed and built in the United Kingdom. Shortly after her arrival in Japan, she became flagship of the Standing Fleet, the IJN's primary combat fleet. She participated in every major naval battle of the Russo @-@ Japanese War of 1904 – 05 and was lightly damaged during the Battle of the Yellow Sea and the Battle of Tsushima. Asahi saw no combat during World War I, although the ship participated in the Siberian Intervention in 1918.
Reclassified as a coastal defence ship in 1921, Asahi was disarmed two years later to meet the terms of the Washington Naval Treaty, after which she served as a training and submarine depot ship. She was modified into a submarine salvage and rescue ship before being placed in reserve in 1928. Asahi was recommissioned in late 1937, after the start of the Second Sino @-@ Japanese War, and used to transport Japanese troops. In 1938, she was converted into a repair ship and based first at Japanese @-@ occupied Shanghai, China, and then Cam Ranh Bay, French Indochina, from late 1938 to 1941. The ship was transferred to occupied Singapore in early 1942 to repair a damaged light cruiser and ordered to return home in May. She was sunk en route by the American submarine USS Salmon, although most of her crew survived.
= = Background = =
Combat experience in the First Sino @-@ Japanese War of 1894 – 95 convinced the Imperial Japanese Navy of weaknesses in the Jeune École naval philosophy, which emphasized torpedo boats and commerce raiding to offset expensive heavily armoured ships. Therefore, Japan promulgated a ten @-@ year naval build @-@ up in early 1896, to modernize and expand its fleet in preparation for further confrontations, with the construction of six battleships and six armoured cruisers at its core. These ships were paid for from the £ 30 @,@ 000 @,@ 000 indemnity paid by China after losing the First Sino @-@ Japanese War. As with the earlier Fuji and Shikishima classes, Japan lacked the technology and capability to construct its own battleships, and turned again to the United Kingdom for the four remaining battleships of the programme. Asahi, the fifth Japanese battleship to be built in Britain, was ordered from the Clydebank Engineering & Shipbuilding Company shipyard in Clydebank, Scotland in the 1897 annual naval programme.
= = Design and description = =
Asahi's design was a modified version of the Formidable @-@ class battleships of the Royal Navy, with two additional 6 @-@ inch ( 152 mm ) guns. The ship had an overall length of 425 feet 3 inches ( 129 @.@ 6 m ), a beam of 75 feet ( 22 @.@ 9 m ), and a normal draught of 27 feet 3 inches ( 8 @.@ 3 m ). She displaced 15 @,@ 200 long tons ( 15 @,@ 400 t ) at normal load. Asahi had a complete double bottom with 55 watertight compartments. Her hull was also subdivided into 223 watertight compartments. She was fitted as a flagship and her crew numbered about 773 officers and enlisted men, including the admiral's staff.
The ship was powered by two vertical triple @-@ expansion steam engines built by Humphrys, Tennant, each driving one propeller, using steam generated by 25 Belleville boilers at a working pressure of 17 @.@ 03 bar ( 1 @,@ 703 kPa ; 247 psi ). The engines were rated at 15 @,@ 000 indicated horsepower ( 11 @,@ 000 kW ), using forced draught, and designed to reach a top speed of 18 knots ( 33 km / h ; 21 mph ) although Asahi reached 18 @.@ 3 knots ( 33 @.@ 9 km / h ; 21 @.@ 1 mph ) from 16 @,@ 335 indicated horsepower ( 12 @,@ 181 kW ) during her sea trials on 23 March 1900. She carried a maximum of 2 @,@ 000 long tons ( 2 @,@ 032 t ) of coal which allowed her to steam for 9 @,@ 000 nautical miles ( 17 @,@ 000 km ; 10 @,@ 000 mi ) at a speed of 10 knots ( 19 km / h ; 12 mph ). The ship was fitted with three steam @-@ driven 4 @.@ 8 @-@ kilowatt ( 6 @.@ 4 hp ) dynamos.
Asahi's main battery consisted of the same four Elswick Ordnance Company 40 @-@ calibre twelve @-@ inch guns used in all of Japan's preceding battleships. They were mounted in twin @-@ gun turrets fore and aft of the superstructure. The hydraulically powered mountings allowed the guns to be loaded at all angles of traverse, at a fixed elevation of + 13 @.@ 5 °. Each mount could traverse a total of 240 degrees. They fired 850 @-@ pound ( 386 kg ) projectiles at a muzzle velocity of 2 @,@ 400 ft / s ( 730 m / s ).
The ship's secondary armament consisted of fourteen 45 @-@ calibre 6 @-@ inch ( 152 mm ) quick @-@ firing ( QF ) guns mounted in casemates. Eight of these guns were positioned on the main deck and the other six guns were placed above them in the superstructure. They fired 100 @-@ pound ( 45 kg ) shells at a muzzle velocity of 2 @,@ 300 ft / s ( 700 m / s ). Protection against torpedo @-@ boat attacks was provided by twenty QF 12 @-@ pounder 12 cwt guns. The 12 @-@ pounders fired 3 @-@ inch ( 76 mm ), 12 @.@ 5 @-@ pound ( 5 @.@ 7 kg ) projectiles at a muzzle velocity of 2 @,@ 359 ft / s ( 719 m / s ). Lighter guns consisted of eight 47 @-@ millimetre ( 1 @.@ 9 in ) three @-@ pounder Hotchkiss guns and four 47 @-@ millimetre 2 @.@ 5 @-@ pounder Hotchkiss guns. The former were mounted in the superstructure and the latter in the fighting tops. The three @-@ pounder gun fired 3 @.@ 19 @-@ pound ( 1 @.@ 45 kg ) projectiles at a muzzle velocity of 1 @,@ 927 ft / s ( 587 m / s ), while the 2 @.@ 5 @-@ pounder fired 2 @.@ 5 @-@ pound ( 1 @.@ 1 kg ) shells at a muzzle velocity of 1 @,@ 420 ft / s ( 430 m / s ). The ship was also equipped with four submerged 18 @-@ inch torpedo tubes, two on each broadside.
The waterline main belt of Asahi consisted of Harvey armour 8 feet ( 2 @.@ 44 m ) high, of which 3 feet 8 inches ( 1 @.@ 11 m ) was above the waterline at normal load, and had a maximum thickness of 9 inches ( 229 mm ) for the middle 224 feet ( 68 @.@ 28 m ) of the ship. It was only 4 inches ( 102 mm ) thick at the ends of the ship and was surmounted by a six @-@ inch strake of armour that ran between the barbettes. The barbettes were 14 inches ( 356 mm ) thick, but only 10 inches ( 254 mm ) behind the upper armour strake. The barbette hoods were protected by 10 inches of armour on their face while their sides were 6 inches thick and the roof was 1 @.@ 5 inches ( 38 mm ) thick. Diagonal bulkheads connecting the barbettes to the side armour were 12 – 14 inches thick, but only 6 inches thick at the lower deck level. The frontal armour of the casemates protecting the secondary armament was also 6 inches thick with the rear protected by 2 @-@ inch ( 51 mm ) armour plates. The flat portion of the deck armour was 2 @.@ 5 inches ( 64 mm ) thick and 4 inches ( 102 mm ) thick where it sloped down to the sides of the ship. The conning tower was protected by 14 inches of armour.
Asahi, like all the other Japanese battleships of the time, was fitted with four Barr and Stroud FA3 coincidence rangefinders that had an effective range of 8 @,@ 000 yards ( 7 @,@ 300 m ). The ships were also fitted with 24 @-@ power magnification telescopic gunsights.
= = Construction and career = =
Asahi, meaning " rising sun ", a poetic name for Japan from a stanza of waka poetry, was laid down on 1 August 1898 in Clydebank, Scotland, by the Clydebank Engineering & Shipbuilding Co. and completed by John Brown & Company, which purchased the firm before Asahi was completed. She was launched on 13 March 1899 and completed on 31 July 1900. Her completion was delayed by about three months when her bottom plating required repairs after running aground off Southsea following sea trials. The ship departed England, after repairs in Portsmouth, on the day of her completion, and arrived at Yokosuka, Japan, on 23 October 1900. Asahi became flagship of the | wikitext_103 | [
426,
6692,
20303,
1456,
1284,
42128,
426,
4928,
187,
1284,
42128,
313,
209,
5959,
240,
17951,
1157,
1284,
42128,
2387,
369,
247,
638,
1214,
14,
33,
18638,
79,
1224,
20303,
1456,
4270,
323,
253,
23032,
6692,
13669,
313,
36389,
47,
2387,
275,
253,
3563,
32789,
84,
964,
1284,
4047,
20296,
253,
9787,
5350,
281,
1973,
824,
16860,
16458,
3139,
1157,
253,
6215,
369,
4158,
285,
4270,
275,
253,
1986,
11491,
964,
35775,
846,
617,
13024,
275,
4047,
1157,
703,
3395,
39230,
273,
253,
37496,
32521,
1157,
253,
36389,
47,
686,
84,
3625,
11757,
18500,
964,
1500,
13640,
275,
1046,
2201,
25186,
6680,
273,
253,
29132,
601,
1214,
14,
33,
6692,
3660,
273,
40253,
1108,
16987,
285,
369,
19679,
13572,
1309,
253,
15764,
273,
253,
25056,
11936,
285,
253,
15764,
273,
20613,
46102,
964,
1284,
42128,
3047,
642,
11757,
1309,
3645,
3660,
309,
1157,
3738,
253,
6215,
13640,
275,
253,
46634,
757,
5383,
4053,
275,
26052,
964,
2490,
1720,
39651,
347,
247,
22431,
17147,
6215,
275,
33531,
1157,
1284,
42128,
369,
557,
21201,
767,
1107,
1996,
281,
2525,
253,
2426,
273,
253,
5041,
29066,
32648,
1157,
846,
534,
703,
5608,
347,
247,
3733,
285,
35898,
1305,
302,
6215,
964,
1500,
369,
7321,
715,
247,
35898,
40811,
285,
14471,
6215,
1078,
1146,
4845,
275,
15917,
275,
31751,
964,
1284,
42128,
369,
10774,
2230,
264,
275,
3563,
27598,
1157,
846,
253,
1265,
273,
253,
6347,
322,
2610,
1214,
14,
33,
6692,
3660,
1157,
285,
908,
281,
4616,
6692,
10824,
964,
496,
26421,
1157,
703,
369,
11516,
715,
247,
8706,
6215,
285,
1754,
806,
387,
6692,
1214,
14,
33,
13598,
23494,
1157,
4135,
1157,
285,
840,
6039,
34396,
73,
6912,
1157,
5112,
2102,
3770,
1758,
1157,
432,
3563,
26421,
281,
22715,
964,
380,
6215,
369,
9495,
281,
13598,
16861,
275,
2393,
22420,
281,
8706,
247,
13572,
1708,
50148,
285,
6960,
281,
1091,
1728,
275,
2552,
964,
1500,
369,
37023,
546,
7622,
407,
253,
2448,
35898,
47800,
6470,
2163,
1157,
3738,
954,
273,
617,
10402,
16139,
964,
4928,
187,
426,
426,
17720,
426,
426,
4928,
187,
46750,
2793,
275,
253,
3973,
322,
2610,
1214,
14,
33,
6692,
3660,
273,
46470,
1108,
5325,
13762,
253,
23032,
6692,
13669,
273,
32213,
275,
253,
4591,
2517,
17317,
68,
1306,
25186,
11727,
1157,
534,
21947,
41007,
80,
19750,
285,
19938,
1218,
2821,
281,
8409,
8214,
11306,
4430,
9698,
11811,
964,
3813,
1157,
4047,
38548,
27189,
247,
3578,
1214,
14,
33,
807,
25186,
1973,
1214,
14,
33,
598,
275,
2393,
43843,
1157,
281,
4980,
907,
285,
5645,
697,
18500,
275,
9008,
323,
2007,
11449,
569,
1157,
342,
253,
5140,
273,
2800,
20303,
16458,
285,
2800,
4430,
9698,
5385,
34768,
387,
697,
5161,
964,
2053,
11811,
497,
5087,
323,
432,
253,
8157,
1884,
1214,
13,
33,
20181,
1214,
13,
33,
20181,
30888,
414,
5087,
407,
4135,
846,
10305,
253,
3973,
322,
2610,
1214,
14,
33,
6692,
3660,
964,
1284,
342,
253,
4321,
23257,
8020,
285,
1608,
1479,
763,
8032,
5971,
1157,
4047,
20296,
253,
4302,
285,
14603,
281,
3989,
697,
1211,
20303,
16458,
1157,
285,
3531,
969,
281,
253,
1986,
11491,
323,
253,
1740,
5780,
20303,
16458,
273,
253,
13521,
964,
1284,
42128,
1157,
253,
10720,
6692,
20303,
1456,
281,
320,
4270,
275,
9643,
1157,
369,
6960,
432,
253,
41158,
615,
17703,
17388,
708,
30196,
22157,
6487,
6215,
13514,
275,
41158,
615,
17703,
1157,
13944,
275,
253,
45265,
7970,
25186,
13521,
964,
4928,
187,
426,
426,
11405,
285,
5740,
426,
426,
4928,
187,
1284,
42128,
686,
84,
2216,
369,
247,
7321,
2715,
273,
253,
7191,
31074,
1214,
14,
33,
966,
20303,
16458,
273,
253,
10043,
13669,
1157,
342,
767,
3081,
721,
1214,
14,
33,
16416,
313,
21786,
5823,
2387,
11942,
964,
380,
6215,
574,
271,
4583,
2978,
273,
33314,
4669,
495,
13048,
313,
17181,
1214,
15,
33,
721,
278,
2387,
1157,
247,
8325,
273,
6879,
4669,
313,
3307,
1214,
15,
33,
898,
278,
2387,
1157,
285,
247,
2622,
6536,
9932,
273,
3435,
4669,
495,
13048,
313,
854,
1214,
15,
33,
495,
278,
2387,
964,
1500,
26699,
1458,
1214,
13,
33,
1052,
1048,
16298,
313,
1458,
1214,
13,
33,
9166,
246,
2387,
387,
2622,
3301,
964,
1284,
42128,
574,
247,
3426,
4021,
5004,
342,
7288,
1824,
33886,
31441,
964,
4058,
28470,
369,
671,
18375,
1356,
715,
26879,
1824,
33886,
31441,
964,
1500,
369,
14662,
347,
247,
39230,
285,
617,
10402,
31050,
670,
818,
3655,
6251,
285,
42969,
1821,
1157,
1690,
253,
7599,
7411,
686,
84,
4750,
964,
2490,
380,
6215,
369,
20351,
407,
767,
9118,
16260,
1214,
14,
33,
7466,
15401,
14917,
4270,
407,
40824,
23155,
1157,
12362,
386,
1157,
1016,
6276,
581,
4198,
7707,
1157,
970,
15401,
4561,
407,
2030,
31596,
6169,
22149,
398,
387,
247,
2444,
3473,
273,
1722,
1214,
15,
33,
17272,
2534,
313,
337,
1214,
13,
33,
818,
2941,
465,
9387,
3706,
28875,
3714,
74,
2387,
964,
380,
14917,
497,
20139,
387,
1458,
1214,
13,
33,
20181,
4860,
8815,
9177,
313,
1903,
1214,
13,
33,
20181,
465,
56,
2387,
1157,
970,
6726,
6536,
9932,
1157,
285,
4158,
281,
3986,
247,
1755,
3885,
273,
1283,
33462,
313,
5922,
10771,
1227,
288,
3706,
3127,
36772,
2387,
3738,
1284,
42128,
4925,
1283,
1214,
15,
33,
495,
33462,
313,
5922,
1214,
15,
33,
898,
10771,
1227,
288,
3706,
3127,
1214,
15,
33,
337,
36772,
2387,
432,
1668,
1214,
13,
33,
32575,
4860,
8815,
9177,
313,
1249,
1214,
13,
33,
26240,
465,
56,
2387,
1309,
617,
6150,
7587,
327,
3495,
3919,
24810,
964,
1500,
4824,
247,
4869,
273,
374,
1214,
13,
33,
20181,
1048,
16298,
313,
374,
1214,
13,
33,
470,
1237,
246,
2387,
273,
10089,
534,
4136,
617,
281,
15401,
323,
898,
1214,
13,
33,
20181,
295,
1920,
474,
6574,
313,
1722,
1214,
13,
33,
20181,
10771,
3706,
884,
1214,
13,
33,
20181,
3641,
2387,
387,
247,
3885,
273,
884,
33462,
313,
655,
10771,
1227,
288,
3706,
1249,
36772,
2387,
964,
380,
6215,
369,
14662,
342,
1264,
15401,
1214,
14,
33,
8877,
577,
1214,
15,
33,
854,
1214,
14,
33,
11895,
319,
1595,
313,
721,
1214,
15,
33,
577,
288,
81,
2387,
3970,
375,
964,
2490,
1284,
42128,
686,
84,
2022,
9378,
14278,
273,
253,
1072,
1740,
3599,
39127,
2207,
17915,
593,
6487,
3387,
1214,
14,
33,
1724,
487,
250,
13265,
1214,
14,
33,
16416,
11942,
908,
275,
512,
273,
4047,
686,
84,
17691,
20303,
16458,
964,
1583,
497,
10877,
275,
19661,
1214,
14,
33,
5654,
10709,
39021,
2273,
285,
247,
649,
273,
253,
2221,
18317,
964,
380,
23288,
335,
1037,
20351,
4205,
723,
4136,
253,
11942,
281,
320,
10607,
387,
512,
14636,
273,
42309,
1157,
387,
247,
4229,
19099,
273,
559,
2145,
1214,
15,
33,
608,
11758,
964,
5815,
4205,
812,
42309,
247,
2264,
273,
16918,
7759,
964,
1583,
11226,
39739,
1214,
14,
33,
21059,
313,
35312,
15841,
2387,
2199,
3205,
387,
247,
12910,
12610,
7602,
273,
374,
1214,
13,
33,
9166,
23899,
1227,
256,
313,
818,
1229,
278,
1227,
256,
2387,
964,
2490,
380,
6215,
686,
84,
6561,
4430,
2247,
14278,
273,
25963,
5329,
1214,
14,
33,
1724,
487,
250,
721,
1214,
14,
33,
16416,
313,
21786,
5823,
2387,
3158,
1214,
14,
33,
14954,
313,
1165,
39,
2387,
11942,
10877,
275,
6483,
358,
684,
964,
16244,
273,
841,
11942,
497,
15471,
327,
253,
2022,
12595,
285,
253,
643,
2800,
11942,
497,
4845,
1840,
731,
275,
253,
2221,
18317,
964,
1583,
11226,
2233,
1214,
14,
33,
21059,
313,
5329,
15841,
2387,
24383,
387,
247,
12910,
12610,
7602,
273,
374,
1214,
13,
33,
7469,
23899,
1227,
256,
313,
18450,
278,
1227,
256,
2387,
964,
17504,
1411,
41007,
80,
1214,
14,
33,
9735,
8104,
369,
2530,
407,
6818,
1165,
39,
1249,
1214,
14,
33,
268,
10117,
1249,
260,
17118,
11942,
964,
380,
1249,
1214,
14,
33,
21059,
398,
11226,
495,
1214,
14,
33,
16416,
313,
10909,
5823,
2387,
1157,
1249,
1214,
15,
33,
608,
1214,
14,
33,
21059,
313,
608,
1214,
15,
33,
818,
15841,
2387,
2199,
3205,
387,
247,
12910,
12610,
7602,
273,
374,
1214,
13,
33,
34205,
23899,
1227,
256,
313,
818,
746,
278,
1227,
256,
2387,
964,
418,
8532,
11942,
14278,
273,
4314,
7543,
1214,
14,
33,
5499,
33256,
250,
313,
337,
1214,
15,
33,
898,
275,
2387,
1264,
1214,
14,
33,
268,
10117,
9405,
348,
76,
739,
11942,
285,
1740,
7543,
1214,
14,
33,
5499,
33256,
250,
374,
1214,
15,
33,
608,
1214,
14,
33,
268,
10117,
9405,
348,
76,
739,
11942,
964,
380,
3438,
497,
10877,
275,
253,
2221,
18317,
285,
253,
6158,
275,
253,
8615,
27164,
964,
380,
1264,
1214,
14,
33,
268,
10117,
5654,
11226,
495,
1214,
15,
33,
655,
1214,
14,
33,
21059,
313,
337,
1214,
15,
33,
5329,
15841,
2387,
2199,
3205,
387,
247,
12910,
12610,
7602,
273,
337,
1214,
13,
33,
898,
1630,
23899,
1227,
256,
313,
48962,
278,
1227,
256,
2387,
1157,
1223,
253,
374,
1214,
15,
33,
608,
1214,
14,
33,
268,
10117,
11226,
374,
1214,
15,
33,
608,
1214,
14,
33,
21059,
313,
337,
1214,
15,
33,
337,
15841,
2387,
24383,
387,
247,
12910,
12610,
7602,
273,
337,
1214,
13,
33,
30642,
23899,
1227,
256,
313,
34068,
278,
1227,
256,
2387,
964,
380,
6215,
369,
671,
13496,
342,
1740,
43923,
1283,
1214,
14,
33,
16416,
41007,
80,
17080,
1157,
767,
327,
1016,
3862,
2189,
964,
2490,
380,
1824,
1282,
2022,
13779,
273,
1284,
42128,
14278,
273,
24611,
44878,
854,
4669,
313,
374,
1214,
15,
33,
7127,
278,
2387,
1029,
1157,
273,
534,
495,
4669,
854,
13048,
313,
337,
1214,
15,
33,
1903,
278,
2387,
369,
1840,
253,
1824,
1282,
387,
2622,
3301,
1157,
285,
574,
247,
4869,
9544,
273,
898,
13048,
313,
26780,
5823,
2387,
323,
253,
4766,
22856,
4669,
313,
9934,
1214,
15,
33,
3349,
278,
2387,
273,
253,
6215,
964,
733,
369,
760,
577,
13048,
313,
12197,
5823,
2387,
5026,
387,
253,
7637,
273,
253,
6215,
285,
369,
919,
35758,
407,
247,
2800,
1214,
14,
33,
16416,
3405,
413,
273,
44878,
326,
6337,
875,
253,
2534,
67,
23314,
964,
380,
2534,
67,
23314,
497,
1638,
13048,
313,
37071,
5823,
2387,
5026,
1157,
533,
760,
884,
13048,
313,
29501,
5823,
2387,
3212,
253,
5170,
44878,
3405,
413,
964,
380,
2534,
67,
5464,
21613,
84,
497,
6885,
407,
884,
13048,
273,
44878,
327,
616,
2454,
1223,
616,
7123,
497,
721,
13048,
5026,
285,
253,
10699,
369,
337,
1214,
15,
33,
608,
13048,
313,
6480,
5823,
2387,
5026,
964,
6129,
21805,
10713,
22089,
12873,
253,
2534,
67,
23314,
281,
253,
1930,
44878,
497,
1249,
1108,
1638,
13048,
5026,
1157,
533,
760,
721,
13048,
5026,
387,
253,
2406,
12595,
1268,
964,
380,
24459,
44878,
273,
253,
6483,
358,
684,
15233,
253,
6561,
4430,
2247,
369,
671,
721,
13048,
5026,
342,
253,
10581,
6885,
407,
374,
1214,
14,
33,
16416,
313,
8319,
5823,
2387,
44878,
10855,
964,
380,
6507,
5110,
273,
253,
12595,
44878,
369,
374,
1214,
15,
33,
608,
13048,
313,
6705,
5823,
2387,
5026,
285,
577,
13048,
313,
12197,
5823,
2387,
5026,
835,
352,
1499,
11802,
1066,
281,
253,
7123,
273,
253,
6215,
964,
380,
345,
920,
15469,
369,
6885,
407,
1638,
13048,
273,
44878,
964,
2490,
1284,
42128,
1157,
751,
512,
253,
643,
6692,
20303,
16458,
273,
253,
673,
1157,
369,
14662,
342,
1740,
27783,
285,
7962,
2995,
10601,
20,
27454,
2491,
8606,
398,
326,
574,
271,
3576,
2491,
273,
854,
1214,
13,
33,
20181,
11433,
313,
818,
1214,
13,
33,
7469,
278,
2387,
964,
380,
11811,
497,
671,
14662,
342,
2164,
1214,
14,
33,
1612,
28358,
21139,
6361,
11942,
4380,
964,
4928,
187,
426,
426,
24969,
285,
5249,
426,
426,
4928,
187,
1284,
42128,
1157,
4495,
346,
11002,
5101,
346,
1157,
247,
40522,
1416,
323,
4047,
432,
247,
331,
29847,
273,
259,
10573,
16053,
1157,
369,
10090,
1066,
327,
337,
4223,
42122,
275,
41158,
615,
17703,
1157,
13944,
1157,
407,
253,
41158,
615,
17703,
17388,
708,
30196,
22157,
2434,
15,
285,
6312,
407,
2516,
7233,
708,
6487,
1157,
534,
9716,
253,
5882,
1078,
1284,
42128,
369,
6312,
964,
1500,
369,
10098,
327,
2145,
3919,
42791,
285,
6312,
327,
4562,
4163,
24810,
964,
4058,
12240,
369,
13444,
407,
670,
1264,
2607,
672,
617,
5004,
40774,
2424,
25931,
846,
3515,
639,
4650,
745,
3684,
15681,
1563,
6150,
7587,
964,
380,
6215,
29115,
5854,
1157,
846,
25931,
275,
6162,
3610,
2001,
1157,
327,
253,
1388,
273,
617,
12240,
1157,
285,
7244,
387,
714,
536,
375,
25501,
1157,
4047,
1157,
327,
3495,
4437,
24810,
964,
1284,
42128,
3395,
39230,
273,
253
] |
adine was turned back to local control as far east as Garnet. From there east, it was numbered just M ‑ 48, removing US 2 from a concurrency. Another former section into Epoufette was added to extend M ‑ 117. The new highway was detoured around the Cut River Bridge until it was completed in 1946 after construction delays over steel shortages during World War II.
The western end of US 2 took on two changes in the 1940s. M ‑ 28 was extended along US 2 to the state line at Ironwood from its western terminus at Wakefield. A similar extension was made from M ‑ 28's eastern terminus to Sault Ste. Marie in 1948. The M ‑ 54 designation was renumbered as Business US 2 by 1945. The eastern M ‑ 28 extension was reversed in 1950, and the western extension to the state line was shifted to a new location by 1952.
= = = Interstate era = = =
With the coming of the Interstate Highway System in Michigan, the MSHD planned to convert the eastern section of US 2 to a freeway between St. Ignace and Sault St. Marie. In planning maps from 1947, this highway corridor was included in the system that later became the Interstates. It was also included in the General Location of National System of Interstate Highways Including All Additional Routes at Urban Areas Designated in September 1955, or Yellow Book after the cover color, that was released in 1955 as the federal government readied plans for the freeway system. The proposed number in 1958 was Interstate 75 ( I ‑ 75 ).
The first section of freeway was built in late 1957 or early 1958 between Evergreen Shores and M ‑ 123 north of St. Ignace. The Mackinac Bridge was opened to traffic on November 1, 1957 ; a new section of freeway and an interchange connected US 2 to the bridge. In 1961, another new freeway segment closed the gap between the Mackinac Bridge and Evergreen Shores sections. At the time, the I ‑ 75 designation supplanted US 27 on the bridge, and US 2 was shifted to follow I ‑ 75 along the freeways in the St. Ignace area. The former routing of US 2 in downtown St. Ignace was redesignated BL I ‑ 75. More sections of freeway were opened in 1962 immediately to the south of the newly constructed International Bridge in Sault Ste. Marie as well as between Dafter and Kinross. The last two sections opened in 1963 connected the northern end of the freeway at M ‑ 123 to Kinross, and the section between Dafter and Sault Ste. Marie. At this time, all of US 2's former routing became a county road known as Mackinac Trail ( H @-@ 63 ).
The Department of State Highways expanded US 2 / US 41 into an expressway between Gladstone and Rapid River in 1971. The state built a new bridge over the Manistique River in 1983, bypassing downtown. MDOT disposed of the former routing of US 2 into downtown in two ways. The western half was initially an unnumbered state highway until it was later transferred to local control. An extension of M ‑ 94 replaced the remainder, including the Siphon Bridge, through downtown. In that same year, the department truncated US 2 to end in St. Ignace by removing it from the I ‑ 75 freeway. The last changes were made to US 2's routing through Iron River in 1998, bypassing the bridge that formerly carried the highway over the river in town. In 2011, MDOT raised the speed limit along the expressway section in Delta County from 55 to 65 mph ( 89 to 105 km / h ), although the speed limit for trucks remains 55 mph ( 89 km / h ).
= = Memorial designations and tourist routes = =
On July 1, 1924, the State Administrative Board named M ‑ 12, the predecessor to US 2 in Michigan, the Bohn Highway to honor Frank P. Bohn, a prominent local citizen who later served in Congress from 1927 to 1933. In 1929, the residents of Escanaba created a memorial to the veterans of World War I called Memory Lane. The project consisted of elm and maple trees planted along US 2 / US 41 west of town. The American Legion sold the trees to local businesses and individuals who could honor specific soldiers. Later in 1949, the Bessemer Women's Club created a tribute in the form of a permanent living memorial to the area veterans. Also called Memory Lane, the group planted 140 elms and 1 @,@ 840 evergreens, trees and shrubs as a landscaped parkway along 2 @.@ 3 miles ( 3 @.@ 7 km ) of US 2 east of Bessemer.
Most of US 2, along with US 23 in the Lower Peninsula, was designated the United Spanish War Veterans Memorial Highway in 1949. To connect the gap in the routing where US 2 cuts through Wisconsin, M ‑ 95 and M ‑ 69 were used in place of US 2 between Iron Mountain and Crystal Falls. Signs marking the highway were not erected until 1968 when Governor George W. Romney had them installed.
The Amvets Memorial Drive designation was created for the section of US 2 / US 41 / M ‑ 35 between the northern Escanaba city limits and County Road 426 ( CR 426 ) in Delta County. The American Veterans ( AMVETS ) organization in Michigan petitioned the Michigan Legislature to grant this designation, which was assigned under Public Act 144 in 1959.
Two sections of US 2 are part of the overall Great Lakes Circle Tour ( GLCT ) : the segment from the Wisconsin state line near Ironwood to the M ‑ 28 junction in Wakefield is part of the Lake Superior Circle Tour ( LSCT ), and the segment from the southern M ‑ 35 junction in Escanaba to the eastern terminus in St. Ignace is part of the Lake Michigan Circle Tour ( LMCT ). These two tours were created in May 1986 through a joint effort between MDOT and its counterparts in Wisconsin, Minnesota and Ontario. The section of US 2 between Iron River and Crystal Falls has been named the Iron County Heritage Trail. This Pure Michigan Byway was designated to honor the " rich history of two industries that built a state and nation : mining and logging. " On August 26, 2007, MDOT announced that the section of US 2 that runs concurrently with M ‑ 35 in Delta County was being included in the UP Hidden Coast Recreational Heritage Trail.
= = Historic bridges = =
There are six bridges along current or former sections of US 2 that MDOT has added to its listing of Michigan's Historic Bridges ; two of these are also listed on the National Register of Historic Places ( NRHP ). A third bridge added to the NRHP in late 2012 has not been added to MDOT's listing however. The first of these historic bridges is the crossing of the Iron River, which has since been bypassed by a new bridge. The original structure, dating to 1918, is a 55 @-@ foot @-@ long ( 17 m ) spandrel arch span that was built by the MSHD as Trunk Line Bridge No. 191. The structure was listed on the NRHP on December 9, 1999, for its architectural and engineering significance.
In December 2012, the National Park Service approved the listing of the Upper Twin Falls Bridge that crosses the Menominee River northwest of Iron Mountain. The structure is a single @-@ span, pin @-@ connected, camelback, through @-@ truss bridge, and it is the only known example of its type in Michigan. It was built between 1909 and 1910 because the Twin Falls Power Dam would flood an existing river crossing. The span cost $ 5 @,@ 106 ( equivalent to $ 780 @,@ 000 in 2015 ), paid equally by Dickinson and Florence counties. Until the 1930s, the Upper Twin Falls Bridge carried US 2 across the Menominee River. In 1934, a new bridge was built about a mile downstream, and the highway was rerouted over the new span. The bridge closed to automobile traffic in September 1971, and the nomination process for inclusion on the National Register of Historic Places began in 2012.
In 2003, MDOT replaced the Sturgeon River Bridge in Waucedah Township, Dickinson County. As of October 2011, even though the old bridge was demolished and replaced, MDOT retained it on their historic bridge list. It was built in 1929.
Before 1983, US 2 used a different routing through Manistique and crossed the Manistique River on what is nicknamed the " Siphon Bridge ". Built as a part of a raceway flume on the river, the water level is actually higher than the road surface. This produces a siphon effect, giving the bridge its nickname. The Manistique Pulp and Paper Company was organized in 1916 and needed a dam on the Manistique River to supply their mill. This dam would require a large section of the city to be flooded, and shallow river banks meant difficulties in any bridge construction. Instead of expensive dikes, a concrete tank was built lengthwise in the river bed ; the sides of this tank provided man @-@ made banks higher than the natural banks. The Michigan Works Progress Administration described the bridge as having " concrete bulkheads, formed by the side spans of the bridge, [ that ] allow the mill to maintain the water level several feet above the roadbed. " The Manistique Tourism Council stated : " At one time, the bridge itself was partially supported by the water that was atmospherically forced under it, " and that the bridge has been featured in Ripley's Believe It or Not!. The eight @-@ span structure is 294 feet ( 90 m | wikitext_103 | [
324,
460,
369,
3531,
896,
281,
1980,
1453,
347,
2080,
9268,
347,
48855,
292,
964,
4325,
627,
9268,
1157,
352,
369,
31050,
816,
353,
541,
228,
5693,
1157,
11922,
1982,
374,
432,
247,
15038,
7549,
964,
8035,
3438,
2593,
715,
10643,
276,
71,
5464,
369,
2879,
281,
9017,
353,
541,
228,
12387,
964,
380,
747,
17657,
369,
843,
9698,
1475,
253,
18665,
7121,
15454,
1919,
352,
369,
6312,
275,
24623,
846,
5140,
20219,
689,
10194,
46163,
1309,
3645,
3660,
3719,
964,
2490,
380,
10439,
990,
273,
1982,
374,
2335,
327,
767,
2544,
275,
253,
16952,
84,
964,
353,
541,
228,
3349,
369,
6508,
2112,
1982,
374,
281,
253,
1375,
1386,
387,
17826,
5308,
432,
697,
10439,
43259,
387,
34625,
3423,
964,
329,
2074,
6880,
369,
1160,
432,
353,
541,
228,
3349,
686,
84,
14730,
43259,
281,
322,
1923,
2951,
964,
21088,
275,
22557,
964,
380,
353,
541,
228,
8255,
25344,
369,
3816,
19839,
347,
10518,
1982,
374,
407,
18824,
964,
380,
14730,
353,
541,
228,
3349,
6880,
369,
13891,
275,
13918,
1157,
285,
253,
10439,
6880,
281,
253,
1375,
1386,
369,
14728,
281,
247,
747,
4328,
407,
24652,
964,
4928,
187,
426,
426,
426,
40874,
8685,
426,
426,
426,
4928,
187,
2726,
253,
3551,
273,
253,
40874,
21788,
4155,
275,
11314,
1157,
253,
353,
5648,
37,
9355,
281,
6455,
253,
14730,
2593,
273,
1982,
374,
281,
247,
1959,
1106,
875,
659,
15,
25619,
584,
285,
322,
1923,
659,
15,
21088,
964,
496,
7219,
8115,
432,
23518,
1157,
436,
17657,
25506,
369,
2908,
275,
253,
985,
326,
1996,
3395,
253,
5383,
21196,
964,
733,
369,
671,
2908,
275,
253,
4214,
27036,
273,
3313,
4155,
273,
40874,
4855,
1576,
496,
6547,
1876,
14117,
30852,
265,
387,
24517,
46653,
11405,
456,
275,
4397,
23438,
1157,
390,
25056,
7225,
846,
253,
3835,
3295,
1157,
326,
369,
4439,
275,
23438,
347,
253,
4400,
2208,
1239,
728,
5827,
323,
253,
1959,
1106,
985,
964,
380,
4081,
1180,
275,
23084,
369,
40874,
6879,
313,
309,
541,
228,
6879,
2387,
964,
2490,
380,
806,
2593,
273,
1959,
1106,
369,
4270,
275,
3563,
23305,
390,
2393,
23084,
875,
18901,
11707,
1608,
2324,
285,
353,
541,
228,
15567,
6146,
273,
659,
15,
25619,
584,
964,
380,
23302,
249,
317,
15454,
369,
5485,
281,
7137,
327,
4596,
337,
1157,
23305,
3706,
247,
747,
2593,
273,
1959,
1106,
285,
271,
28961,
4802,
1982,
374,
281,
253,
9729,
964,
496,
21054,
1157,
1529,
747,
1959,
1106,
8223,
4581,
253,
8037,
875,
253,
23302,
249,
317,
15454,
285,
18901,
11707,
1608,
2324,
7118,
964,
2058,
253,
673,
1157,
253,
309,
541,
228,
6879,
25344,
7642,
9581,
1982,
3435,
327,
253,
9729,
1157,
285,
1982,
374,
369,
14728,
281,
956,
309,
541,
228,
6879,
2112,
253,
1959,
1576,
275,
253,
659,
15,
25619,
584,
2170,
964,
380,
3438,
24749,
273,
1982,
374,
275,
17207,
659,
15,
25619,
584,
369,
45755,
456,
13242,
309,
541,
228,
6879,
964,
3010,
7118,
273,
1959,
1106,
497,
5485,
275,
20208,
4745,
281,
253,
6420,
273,
253,
9841,
8818,
5625,
15454,
275,
322,
1923,
2951,
964,
21088,
347,
973,
347,
875,
399,
6438,
285,
24574,
1350,
964,
380,
1390,
767,
7118,
5485,
275,
19949,
4802,
253,
11186,
990,
273,
253,
1959,
1106,
387,
353,
541,
228,
15567,
281,
24574,
1350,
1157,
285,
253,
2593,
875,
399,
6438,
285,
322,
1923,
2951,
964,
21088,
964,
2058,
436,
673,
1157,
512,
273,
1982,
374,
686,
84,
3438,
24749,
3395,
247,
9635,
3971,
1929,
347,
23302,
249,
317,
21832,
313,
388,
1214,
14,
33,
9654,
2387,
964,
2490,
380,
4487,
273,
2418,
4855,
1576,
11848,
1982,
374,
1227,
1982,
7609,
715,
271,
3890,
1106,
875,
36977,
10228,
285,
37645,
7121,
275,
16609,
964,
380,
1375,
4270,
247,
747,
9729,
689,
253,
3083,
382,
2271,
7121,
275,
11299,
1157,
18210,
272,
17207,
964,
10399,
2415,
15432,
273,
253,
3438,
24749,
273,
1982,
374,
715,
17207,
275,
767,
4088,
964,
380,
10439,
2716,
369,
8523,
271,
440,
48085,
1375,
17657,
1919,
352,
369,
1996,
9495,
281,
1980,
1453,
964,
743,
6880,
273,
353,
541,
228,
11107,
7932,
253,
6414,
1157,
1690,
253,
322,
16372,
251,
15454,
1157,
949,
17207,
964,
496,
326,
1072,
807,
1157,
253,
7811,
28069,
1982,
374,
281,
990,
275,
659,
15,
25619,
584,
407,
11922,
352,
432,
253,
309,
541,
228,
6879,
1959,
1106,
964,
380,
1390,
2544,
497,
1160,
281,
1982,
374,
686,
84,
24749,
949,
17826,
7121,
275,
8065,
1157,
18210,
272,
253,
9729,
326,
20975,
4824,
253,
17657,
689,
253,
8281,
275,
3874,
964,
496,
4332,
1157,
10399,
2415,
5439,
253,
3885,
2701,
2112,
253,
3890,
1106,
2593,
275,
25291,
3928,
432,
7288,
281,
7251,
36772,
313,
11289,
281,
12446,
10771,
1227,
288,
2387,
1157,
3738,
253,
3885,
2701,
323,
21510,
4558,
7288,
36772,
313,
11289,
10771,
1227,
288,
2387,
964,
4928,
187,
426,
426,
20718,
2216,
569,
285,
22777,
15050,
426,
426,
4928,
187,
1623,
4163,
337,
1157,
32921,
1157,
253,
2418,
33241,
5986,
4907,
353,
541,
228,
1249,
1157,
253,
28934,
281,
1982,
374,
275,
11314,
1157,
253,
378,
2116,
21788,
281,
10390,
6893,
367,
15,
378,
2116,
1157,
247,
11906,
1980,
15245,
665,
1996,
5608,
275,
5759,
432,
31687,
281,
26916,
964,
496,
29063,
1157,
253,
8811,
273,
20748,
266,
10442,
3562,
247,
27672,
281,
253,
22129,
273,
3645,
3660,
309,
1925,
21688,
19051,
964,
380,
2199,
14278,
273,
1045,
78,
285,
43946,
7139,
23846,
2112,
1982,
374,
1227,
1982,
7609,
8935,
273,
3874,
964,
380,
2448,
36200,
4211,
253,
7139,
281,
1980,
9341,
285,
4292,
665,
812,
10390,
2173,
9647,
964,
14772,
275,
24344,
1157,
253,
378,
26491,
961,
10168,
686,
84,
9585,
3562,
247,
27458,
275,
253,
830,
273,
247,
9928,
3811,
27672,
281,
253,
2170,
22129,
964,
5220,
1925,
21688,
19051,
1157,
253,
1387,
23846,
11858,
1045,
983,
285,
337,
1214,
13,
33,
854,
1449,
2455,
72,
10436,
1157,
7139,
285,
11111,
24976,
347,
247,
28108,
7760,
5603,
1106,
2112,
374,
1214,
15,
33,
495,
6574,
313,
495,
1214,
15,
33,
818,
10771,
2387,
273,
1982,
374,
9268,
273,
378,
26491,
961,
964,
2490,
5595,
273,
1982,
374,
1157,
2112,
342,
1982,
3495,
275,
253,
20672,
33489,
1157,
369,
13205,
253,
1986,
9883,
3660,
30109,
20718,
21788,
275,
24344,
964,
1916,
4684,
253,
8037,
275,
253,
24749,
835,
1982,
374,
12176,
949,
15558,
1157,
353,
541,
228,
5325,
285,
353,
541,
228,
10447,
497,
908,
275,
1659,
273,
1982,
374,
875,
17826,
15939,
285,
29509,
24618,
964,
8714,
84,
26099,
253,
17657,
497,
417,
33230,
1919,
16221,
672,
15636,
6086,
411,
15,
24460,
574,
731,
8038,
964,
2490,
380,
3052,
87,
1507,
20718,
19672,
25344,
369,
3562,
323,
253,
2593,
273,
1982,
374,
1227,
1982,
7609,
1227,
353,
541,
228,
4791,
875,
253,
11186,
20748,
266,
10442,
2846,
7787,
285,
3928,
8669,
39802,
313,
6246,
39802,
2387,
275,
25291,
3928,
964,
380,
2448,
30109,
313,
5208,
55,
45467,
2387,
6003,
275,
11314,
5266,
264,
253,
11314,
22891,
281,
4098,
436,
25344,
1157,
534,
369,
7922,
762,
5259,
3162,
18836,
275,
22824,
964,
2490,
5761,
7118,
273,
1982,
374,
403,
629,
273,
253,
4583,
6495,
32396,
29572,
11997,
313,
9653,
1647,
2387,
1163,
253,
8223,
432,
253,
15558,
1375,
1386,
2822,
17826,
5308,
281,
253,
353,
541,
228,
3349,
16889,
275,
34625,
3423,
310,
629,
273,
253,
9396,
21112,
29572,
11997,
313,
25169,
1647,
2387,
1157,
285,
253,
8223,
432,
253,
11053,
353,
541,
228,
4791,
16889,
275,
20748,
266,
10442,
281,
253,
14730,
43259,
275,
659,
15,
25619,
584,
310,
629,
273,
253,
9396,
11314,
29572,
11997,
313,
25840,
1647,
2387,
964,
2053,
767,
24478,
497,
3562,
275,
2552,
12140,
949,
247,
6036,
3434,
875,
10399,
2415,
285,
697,
21421,
275,
15558,
1157,
14748,
285,
17367,
964,
380,
2593,
273,
1982,
374,
875,
17826,
7121,
285,
29509,
24618,
556,
644,
4907,
253,
17826,
3928,
26254,
21832,
964,
831,
29062,
11314,
2896,
1106,
369,
13205,
281,
10390,
253,
346,
6793,
2892,
273,
767,
17057,
326,
4270,
247,
1375,
285,
5674,
1163,
15067,
285,
20893,
964,
346,
1623,
4223,
3436,
1157,
5215,
1157,
10399,
2415,
6138,
326,
253,
2593,
273,
1982,
374,
326,
6613,
35046,
342,
353,
541,
228,
4791,
275,
25291,
3928,
369,
1146,
2908,
275,
253,
20653,
44145,
13153,
1720,
719,
1050,
26254,
21832,
964,
4928,
187,
426,
426,
23041,
24853,
426,
426,
4928,
187,
1707,
403,
2800,
24853,
2112,
1655,
390,
3438,
7118,
273,
1982,
374,
326,
10399,
2415,
556,
2879,
281,
697,
16485,
273,
11314,
686,
84,
23041,
33628,
2510,
3706,
767,
273,
841,
403,
671,
7117,
327,
253,
3313,
13106,
273,
23041,
26755,
313,
15132,
18582,
2387,
964,
329,
2626,
9729,
2879,
281,
253,
15132,
18582,
275,
3563,
4050,
556,
417,
644,
2879,
281,
10399,
2415,
686,
84,
16485,
2299,
964,
380,
806,
273,
841,
14464,
24853,
310,
253,
14270,
273,
253,
17826,
7121,
1157,
534,
556,
1580,
644,
18210,
264,
407,
247,
747,
9729,
964,
380,
3236,
2605,
1157,
13597,
281,
26052,
1157,
310,
247,
7288,
1214,
14,
33,
3174,
1214,
14,
33,
1048,
313,
1722,
278,
2387,
653,
395,
1661,
4222,
13905,
326,
369,
4270,
407,
253,
353,
5648,
37,
347,
1535,
3938,
10243,
15454,
1621,
15,
27446,
964,
380,
2605,
369,
7117,
327,
253,
15132,
18582,
327,
4565,
898,
1157,
7544,
1157,
323,
697,
27934,
285,
11369,
8453,
964,
2490,
496,
4565,
4050,
1157,
253,
3313,
4913,
6631,
7012,
253,
16485,
273,
253,
24120,
37745,
24618,
15454,
326,
25808,
253,
9730,
297,
22593,
7121,
29979,
273,
17826,
15939,
964,
380,
2605,
310,
247,
2014,
1214,
14,
33,
13905,
1157,
9176,
1214,
14,
33,
4802,
1157,
46493,
2135,
1157,
949,
1214,
14,
33,
492,
1316,
9729,
1157,
285,
352,
310,
253,
760,
1929,
1650,
273,
697,
1511,
275,
11314,
964,
733,
369,
4270,
875,
38624,
285,
31707,
984,
253,
37745,
24618,
8916,
12304,
651,
10802,
271,
5368,
8281,
14270,
964,
380,
13905,
2105,
370,
608,
1214,
13,
33,
12708,
313,
6425,
281,
370,
46951,
1214,
13,
33,
20181,
275,
4104,
2387,
1157,
5087,
9696,
407,
47185,
285,
27741,
21813,
964,
20539,
253,
17437,
84,
1157,
253,
24120,
37745,
24618,
15454,
4824,
1982,
374,
2439,
253,
9730,
297,
22593,
7121,
964,
496,
28507,
1157,
247,
747,
9729,
369,
4270,
670,
247,
13915,
15450,
1157,
285,
253,
17657,
369,
294,
27861,
264,
689,
253,
747,
13905,
964,
380,
9729,
4581,
281,
19744,
7137,
275,
4397,
16609,
1157,
285,
253,
23726,
1232,
323,
11250,
327,
253,
3313,
13106,
273,
23041,
26755,
3407,
275,
4050,
964,
2490,
496,
6469,
1157,
10399,
2415,
7932,
253,
43388,
32719,
7121,
15454,
275,
411,
1952,
758,
1240,
26469,
1157,
47185,
3928,
964,
1284,
273,
4437,
4332,
1157,
1014,
2167,
253,
1711,
9729,
369,
44550,
285,
7932,
1157,
10399,
2415,
14667,
352,
327,
616,
14464,
9729,
1618,
964,
733,
369,
4270,
275,
29063,
964,
2490,
9613,
11299,
1157,
1982,
374,
908,
247,
1027,
24749,
949,
3083,
382,
2271,
285,
13405,
253,
3083,
382,
2271,
7121,
327,
752,
310,
15278,
19389,
253,
346,
322,
16372,
251,
15454,
346,
964,
41898,
347,
247,
629,
273,
247,
5492,
1106,
892,
2123,
327,
253,
8281,
1157,
253,
1824,
1268,
310,
2686,
2169,
685,
253,
3971,
2553,
964,
831,
11330,
247,
256,
16372,
251,
1055,
1157,
4933,
253,
9729,
697,
34826,
964,
380,
3083,
382,
2271,
26386,
81,
285,
21897,
6487,
369,
10932,
275,
31246,
285,
3058,
247,
2687,
327,
253,
3083,
382,
2271,
7121,
281,
6186,
616,
5499,
964,
831,
2687,
651,
2430,
247,
1781,
2593,
273,
253,
2846,
281,
320,
33913,
1157,
285,
20126,
8281,
10907,
5486,
12748,
275,
667,
9729,
5140,
964,
7820,
273,
8214,
1073,
8583,
1157,
247,
11859,
11100,
369,
4270,
2978,
3020,
275,
253,
8281,
3722,
3706,
253,
7123,
273,
436,
11100,
2530,
637,
1214,
14,
33,
1160,
10907,
2169,
685,
253,
3626,
10907,
964,
380,
11314,
15390,
28225,
13500,
2529,
253,
9729,
347,
1907,
346,
11859,
10713,
22089,
1157,
4447,
407,
253,
1930,
35742,
273,
253,
9729,
1157,
544,
326,
5032,
1581,
253,
5499,
281,
6558,
253,
1824,
1268,
2067,
4669,
1840,
253,
3971,
3026,
964,
346,
380,
3083,
382,
2271,
11997,
1204,
6456,
4767,
1163,
346,
2058,
581,
673,
1157,
253,
9729,
3139,
369,
10571,
4516,
407,
253,
1824,
326,
369,
8556,
379,
1037,
6726,
762,
352,
1157,
346,
285,
326,
253,
9729,
556,
644,
12819,
275,
416,
2113,
90,
686,
84,
48678,
733,
390,
3105,
2195,
964,
380,
4314,
1214,
14,
33,
13905,
2605,
310,
35168,
4669,
313,
5091,
278
] |
evidence is that of Miroslav Rus, who was indicted in connection with disappearance of Miroslav Kříž, a vice @-@ chairman of the Czech Football Association.
= = = Defense lawyers = = =
Randy Blythe was represented by Prague lawyers Martin Radvan and Vladimír Jablonský. Radvan studied law at the Faculty of Law of Charles University and at the New York University. From 1990 to 1992, he served as external advisor of the then Prime Minister Marián Čalfa. A former partner at Baker & McKenzie, Radvan established Radvan & Co. in 1996. He is also a member of board of directors of Forum 2000.
Jablonský gained fame as attorney of Yekta Uzunoglu, a Kurdish national who was first charged in 1994 with preparing to commit three murders and committing blackmail and torture. It became one of the longest criminal cases in the Czech history, as the witnesses and alleged victims gradually withdrew or changed their testimonies against Uzunoglu until he was exonerated by the Municipal Court in Prague in 2007. The court held that although the crimes did take place, there is no evidence that Uzunoglu took part in it. He was also defending judge Pavel Nagy, who was indicted of accepting a bribe. The proceedings ended with Nagy being found insane and criminally not liable. Jablonský also acted as a defense attorney in the case of a hairdresser of Czech VIPs indicted on charges of rape and torture. During the proceedings, the judge sent Jablonský to face the disciplinary commission of the Czech bar association for what he perceived as " behaviour bordering on contempt ".
= = = Day 1 of the trial = = =
The trial started on February 4, 2013. Blythe testified that when he wanted to see the club before the concert, Lamb of God's technician told him that the club was terrible and messy. According to Blythe, the technician went on, saying that the stage was small, there were too many people, and that it was rather dangerous.
Blythe, who is nearsighted, took off his glasses before entering the stage, which together with the smoke and light effects allegedly left him half @-@ blind. Blythe said that people could easily reach the band members or climb up to the stage. One of the fans, who was identified as Milan Pořádek by Czech newspapers, and who was scheduled to testify later during the proceedings, managed to climb the stage twice without being stopped by security. Blythe testified that during the first attempt, Pořádek rushed the stage and started waving his arms before stage diving. The second time, he tried to put his arms around Blythe in an attempt to hug him. Blythe, who according to his own words perceived this as a danger, caught Pořádek's collar, pushed him on the ground, knelt on him and repeatedly told him to stop. He then led the fan by his hair to the edge of the stage, where the fan jumped off. It was only after watching a video of the incident that Blythe found out that a security officer was actually pushing the fan from back. Blythe further said that he saw Pořádek trying to reach the stage yet again before finally being stopped by security.
Later, when another fan tried to climb the stage, Blythe thought that it was Pořádek again. Blythe testified that he approached the fan and pushed him with both hands out of the stage in the belief that the crowd would catch him, which it did not. Jiří Choroš, author of video which caught the previous incidents with Pořádek, testified that the fan was for a moment lying on the ground with nobody helping him. Blythe further commented that he saw the fan get up and that other fans showed him thumbs up. Blythe insisted that he never saw Nosek nor came into contact with him. It was not until the arrest two years later that he found out about Nosek's death.
Blythe further testified that he was not under the influence of alcohol during the concert and that he had never used any drugs. Chris Adler, Lamb of God's drummer, testified that he had not seen anything from the back of the stage and further proclaimed that Blythe's aggressiveness is only a stage act. According to Adler, Blythe is a calm, moderate, and well @-@ read person. The defense also presented videos from various Lamb of God concerts in order to demonstrate that metal music is very energetic and that Blythe regularly cheers to the crowd, but not to encourage people to climb the stage.
Blythe also alleged that after learning about Nosek's death, he had written a letter to the Nosek family, in which he offered help and a meeting in @-@ person. Daniel Nosek's father, however, testified that the family has not been contacted by anyone from the band nor by the defense team. Nosek's father confirmed that his son had been healthy up until the day of the incident. The Nosek family's representative brought a claim for damages in the amount of CZK 10 @,@ 000 @,@ 000 ( approx. US $ 530 @,@ 000 ).
= = = Day 2 of the trial = = =
Altogether, eight witnesses delivered their testimonies on February 5, 2013. Among them were friends of Daniel Nosek. Nosek and three friends had come to attend the concert from Vrchlabí, a town in mountains some 130 kilometres ( 81 mi ) northwest of Prague. They described Nosek as a huge fan of Lamb of God who had been able to secure an autograph from a guitar player before the concert had started.
Nosek's friend Jan Jebavý testified that Nosek climbed the stage, and as he turned around towards the crowd he was pushed by Blythe off the stage. He said he was " 100 % sure Blythe pushed Nosek with both hands. " He further said that Blythe's behavior deviated from all the concerts he had attended in the past, commenting that Blythe was visibly furious. He further claimed that Nosek was not the first person to be chased off the stage by Blythe, with another fan being kicked, choked and receiving a punch from Blythe. Jebavý corroborated Blythe's testimony that Blythe asked " Are you okay? " after Nosek fell and that the crowd gave him a positive reply. However, as Nosek fell sick after the concert, they called him an ambulance. According to Jebavý, the band had not warned the fans against getting on stage and the security guards did not pay much attention to it.
Nosek's other friend Ondřej Vlach testified that Nosek's fall happened in a break between the end of concert and the encore. Nosek climbed the stage together with another fan as the band members were leaving to go backstage. According to him, Blythe ran into the two fans and pushed them both off. While the other fan was caught by a couple of fans remaining under the stage, Nosek fell directly on the ground. According to Vlach, there were fewer fans in front of the stage due to the break. Vlach further testified that after the fall, Nosek went to sit on a bench, where he was fetched a water bottle. Nosek began vomiting about half an hour after the fall and as his friends realized that he had a bulge at the back of his head, they called an ambulance for fear he might have a concussion. Vlach said that he understood Blythe's gesture in the break as an invitation to the stage.
Another person to testify was Robert Havelka, who worked as a security guard the night of the incident. Havelka said that the guardrail was too close to the stage, but not so close as to make a platform for climbing the stage. He testified that he pulled one person off the stage and that another person fell off before he could be secured. He further said that the fan's fall might have been helped by someone else, perhaps the singer, though he did not see it precisely.
Blythe's defense team attacked differences between the testimonies the witnesses gave after the incident in 2010 and at the court. Among other things, one of the witnesses originally alleged that Nosek and Blythe shook hands or that one of them offered hand to another on stage ; however, at the court hearing, he testified that there was no prior contact between them. Blythe also argued that video evidence shown in court refuted claims about his aggressive behavior.
= = = Day 3 of the trial = = =
Milan Pořádek, the fan whom Blythe admitted to shoving off the stage, testified on the third day of the trial. Pořádek said he climbed the stage twice in order to stage dive ; he changed his mind during the third attempt to get on stage. Pořádek testified that Blythe knocked him down, knelt on him and held him down for a moment, but Blythe definitely did not choke him. He also admitted that taking into account the fact that he ( Pořádek ) was drunk and the way he acted, Blythe's reaction was adequate. He commented that he grasped the fact that he was not wanted on stage.
Another witness who had attended the concert at the rear of the | wikitext_103 | [
1941,
310,
326,
273,
9823,
2921,
19306,
29132,
1157,
665,
369,
38455,
275,
4602,
342,
31852,
273,
9823,
2921,
19306,
611,
14438,
1950,
9124,
1157,
247,
12008,
1214,
14,
33,
16782,
273,
253,
21647,
15794,
7115,
964,
4928,
187,
426,
426,
426,
14971,
16099,
426,
426,
426,
4928,
187,
36532,
378,
314,
783,
369,
6607,
407,
41577,
16099,
8698,
7754,
6148,
285,
26113,
303,
1950,
83,
500,
1752,
790,
76,
10561,
964,
7754,
6148,
5421,
1569,
387,
253,
32016,
273,
5405,
273,
8444,
2499,
285,
387,
253,
1457,
2816,
2499,
964,
4325,
7901,
281,
9748,
1157,
344,
5608,
347,
6024,
31149,
273,
253,
840,
12128,
8308,
34370,
9435,
11437,
223,
2103,
66,
964,
329,
3438,
7832,
387,
18749,
708,
16638,
32560,
1157,
7754,
6148,
4232,
7754,
6148,
708,
2434,
15,
275,
8441,
964,
754,
310,
671,
247,
3558,
273,
4450,
273,
17970,
273,
24703,
5307,
964,
2490,
500,
1752,
790,
76,
10561,
12103,
23898,
347,
6834,
273,
714,
1441,
893,
530,
91,
328,
462,
7675,
1157,
247,
41340,
3872,
665,
369,
806,
6636,
275,
9354,
342,
13828,
281,
4514,
1264,
29803,
285,
26841,
2806,
5719,
285,
21207,
964,
733,
3395,
581,
273,
253,
20088,
6424,
2219,
275,
253,
21647,
2892,
1157,
347,
253,
12170,
285,
5575,
10349,
13237,
29504,
390,
4391,
616,
40572,
447,
1411,
530,
91,
328,
462,
7675,
1919,
344,
369,
22472,
12072,
407,
253,
35266,
2111,
275,
41577,
275,
5215,
964,
380,
1302,
2918,
326,
3738,
253,
12137,
858,
1379,
1659,
1157,
627,
310,
642,
1941,
326,
530,
91,
328,
462,
7675,
2335,
629,
275,
352,
964,
754,
369,
671,
21449,
5963,
367,
8526,
21987,
90,
1157,
665,
369,
38455,
273,
18738,
247,
270,
29798,
964,
380,
10061,
7402,
342,
21987,
90,
1146,
1119,
24812,
285,
5435,
3341,
417,
15922,
964,
500,
1752,
790,
76,
10561,
671,
14001,
347,
247,
5684,
6834,
275,
253,
1083,
273,
247,
419,
1817,
560,
254,
273,
21647,
35625,
84,
38455,
327,
7260,
273,
16773,
285,
21207,
964,
6408,
253,
10061,
1157,
253,
5963,
2197,
500,
1752,
790,
76,
10561,
281,
2454,
253,
32873,
8119,
273,
253,
21647,
2534,
5864,
323,
752,
344,
12351,
347,
346,
8770,
5680,
272,
327,
20334,
346,
964,
4928,
187,
426,
426,
426,
6258,
337,
273,
253,
2332,
426,
426,
426,
4928,
187,
380,
2332,
3053,
327,
5080,
577,
1157,
4072,
964,
378,
314,
783,
7859,
326,
672,
344,
3078,
281,
923,
253,
5453,
1078,
253,
12699,
1157,
25852,
273,
2656,
686,
84,
40048,
2183,
779,
326,
253,
5453,
369,
11527,
285,
36396,
964,
4794,
281,
378,
314,
783,
1157,
253,
40048,
2427,
327,
1157,
3981,
326,
253,
3924,
369,
1355,
1157,
627,
497,
1512,
1142,
952,
1157,
285,
326,
352,
369,
2581,
8312,
964,
2490,
378,
314,
783,
1157,
665,
310,
425,
1032,
429,
264,
1157,
2335,
745,
521,
17543,
1078,
11734,
253,
3924,
1157,
534,
2366,
342,
253,
11283,
285,
1708,
2538,
14163,
1669,
779,
2716,
1214,
14,
33,
9645,
964,
378,
314,
783,
753,
326,
952,
812,
4354,
3986,
253,
3961,
2758,
390,
12394,
598,
281,
253,
3924,
964,
2596,
273,
253,
7458,
1157,
665,
369,
3636,
347,
27850,
8081,
14438,
1757,
615,
76,
407,
21647,
18930,
1157,
285,
665,
369,
11526,
281,
18954,
1996,
1309,
253,
10061,
1157,
7303,
281,
12394,
253,
3924,
7019,
1293,
1146,
6331,
407,
3988,
964,
378,
314,
783,
7859,
326,
1309,
253,
806,
3177,
1157,
8081,
14438,
1757,
615,
76,
20906,
253,
3924,
285,
3053,
34475,
521,
6174,
1078,
3924,
33058,
964,
380,
1273,
673,
1157,
344,
3597,
281,
1691,
521,
6174,
1475,
378,
314,
783,
275,
271,
3177,
281,
15729,
779,
964,
378,
314,
783,
1157,
665,
2556,
281,
521,
1211,
3000,
12351,
436,
347,
247,
5434,
1157,
7270,
8081,
14438,
1757,
615,
76,
686,
84,
23966,
1157,
10184,
779,
327,
253,
3216,
1157,
47511,
327,
779,
285,
12889,
2183,
779,
281,
3523,
964,
754,
840,
3977,
253,
7989,
407,
521,
4707,
281,
253,
5024,
273,
253,
3924,
1157,
835,
253,
7989,
16780,
745,
964,
733,
369,
760,
846,
7487,
247,
3492,
273,
253,
7119,
326,
378,
314,
783,
1119,
562,
326,
247,
3988,
5908,
369,
2686,
13383,
253,
7989,
432,
896,
964,
378,
314,
783,
2007,
753,
326,
344,
3047,
8081,
14438,
1757,
615,
76,
2820,
281,
3986,
253,
3924,
2568,
969,
1078,
4720,
1146,
6331,
407,
3988,
964,
2490,
14772,
1157,
672,
1529,
7989,
3597,
281,
12394,
253,
3924,
1157,
378,
314,
783,
1869,
326,
352,
369,
8081,
14438,
1757,
615,
76,
969,
964,
378,
314,
783,
7859,
326,
344,
13781,
253,
7989,
285,
10184,
779,
342,
1097,
3564,
562,
273,
253,
3924,
275,
253,
9927,
326,
253,
9539,
651,
5834,
779,
1157,
534,
352,
858,
417,
964,
43590,
14438,
1950,
775,
12892,
7326,
1157,
2488,
273,
3492,
534,
7270,
253,
2045,
18048,
342,
8081,
14438,
1757,
615,
76,
1157,
7859,
326,
253,
7989,
369,
323,
247,
2774,
10776,
327,
253,
3216,
342,
12445,
9073,
779,
964,
378,
314,
783,
2007,
20503,
326,
344,
3047,
253,
7989,
755,
598,
285,
326,
643,
7458,
2692,
779,
47982,
598,
964,
378,
314,
783,
16701,
326,
344,
1620,
3047,
427,
583,
76,
4543,
2210,
715,
3057,
342,
779,
964,
733,
369,
417,
1919,
253,
5263,
767,
1107,
1996,
326,
344,
1119,
562,
670,
427,
583,
76,
686,
84,
2471,
964,
2490,
378,
314,
783,
2007,
7859,
326,
344,
369,
417,
762,
253,
4833,
273,
7665,
1309,
253,
12699,
285,
326,
344,
574,
1620,
908,
667,
5835,
964,
11007,
2006,
2146,
1157,
25852,
273,
2656,
686,
84,
43982,
1157,
7859,
326,
344,
574,
417,
2326,
2712,
432,
253,
896,
273,
253,
3924,
285,
2007,
37592,
326,
378,
314,
783,
686,
84,
27562,
6460,
310,
760,
247,
3924,
769,
964,
4794,
281,
2006,
2146,
1157,
378,
314,
783,
310,
247,
11874,
1157,
10290,
1157,
285,
973,
1214,
14,
33,
1239,
1436,
964,
380,
5684,
671,
3559,
10556,
432,
2710,
25852,
273,
2656,
34888,
275,
1340,
281,
7568,
326,
5148,
3440,
310,
1077,
28378,
285,
326,
378,
314,
783,
11719,
1161,
398,
281,
253,
9539,
1157,
533,
417,
281,
11907,
952,
281,
12394,
253,
3924,
964,
2490,
378,
314,
783,
671,
5575,
326,
846,
4715,
670,
427,
583,
76,
686,
84,
2471,
1157,
344,
574,
3542,
247,
4857,
281,
253,
427,
583,
76,
2021,
1157,
275,
534,
344,
5907,
1361,
285,
247,
4804,
275,
1214,
14,
33,
1436,
964,
10213,
427,
583,
76,
686,
84,
3392,
1157,
2299,
1157,
7859,
326,
253,
2021,
556,
417,
644,
18203,
407,
3780,
432,
253,
3961,
4543,
407,
253,
5684,
2285,
964,
427,
583,
76,
686,
84,
3392,
5783,
326,
521,
3347,
574,
644,
5875,
598,
1919,
253,
1388,
273,
253,
7119,
964,
380,
427,
583,
76,
2021,
686,
84,
8612,
3982,
247,
1750,
323,
8540,
275,
253,
2408,
273,
330,
59,
44,
884,
1214,
13,
33,
20181,
1214,
13,
33,
20181,
313,
1192,
89,
964,
1982,
370,
36135,
1214,
13,
33,
20181,
2387,
964,
4928,
187,
426,
426,
426,
6258,
374,
273,
253,
2332,
426,
426,
426,
4928,
187,
21913,
9518,
1157,
4314,
12170,
8549,
616,
40572,
447,
327,
5080,
608,
1157,
4072,
964,
9658,
731,
497,
3858,
273,
10213,
427,
583,
76,
964,
427,
583,
76,
285,
1264,
3858,
574,
1705,
281,
8041,
253,
12699,
432,
657,
83,
348,
13068,
1950,
1157,
247,
3874,
275,
14700,
690,
11084,
39050,
313,
11681,
3641,
2387,
29979,
273,
41577,
964,
1583,
2529,
427,
583,
76,
347,
247,
5699,
7989,
273,
25852,
273,
2656,
665,
574,
644,
2104,
281,
7895,
271,
1125,
2047,
432,
247,
12609,
4760,
1078,
253,
12699,
574,
3053,
964,
2490,
427,
583,
76,
686,
84,
3331,
3344,
500,
2275,
580,
10561,
7859,
326,
427,
583,
76,
21863,
253,
3924,
1157,
285,
347,
344,
3531,
1475,
4404,
253,
9539,
344,
369,
10184,
407,
378,
314,
783,
745,
253,
3924,
964,
754,
753,
344,
369,
346,
2233,
2462,
2119,
378,
314,
783,
10184,
427,
583,
76,
342,
1097,
3564,
964,
346,
754,
2007,
753,
326,
378,
314,
783,
686,
84,
3879,
1474,
4215,
432,
512,
253,
34888,
344,
574,
11612,
275,
253,
2469,
1157,
36738,
326,
378,
314,
783,
369,
47975,
32986,
964,
754,
2007,
7558,
326,
427,
583,
76,
369,
417,
253,
806,
1436,
281,
320,
40754,
745,
253,
3924,
407,
378,
314,
783,
1157,
342,
1529,
7989,
1146,
19301,
1157,
48722,
285,
6883,
247,
18750,
432,
378,
314,
783,
964,
500,
2275,
580,
10561,
47790,
378,
314,
783,
686,
84,
6206,
326,
378,
314,
783,
2546,
346,
6272,
368,
8261,
3736,
346,
846,
427,
583,
76,
6497,
285,
326,
253,
9539,
3534,
779,
247,
2762,
12252,
964,
1723,
1157,
347,
427,
583,
76,
6497,
8334,
846,
253,
12699,
1157,
597,
1925,
779,
271,
32686,
964,
4794,
281,
500,
2275,
580,
10561,
1157,
253,
3961,
574,
417,
14315,
253,
7458,
1411,
2970,
327,
3924,
285,
253,
3988,
17269,
858,
417,
2075,
1199,
4116,
281,
352,
964,
2490,
427,
583,
76,
686,
84,
643,
3331,
1623,
69,
14438,
24130,
657,
77,
607,
7859,
326,
427,
583,
76,
686,
84,
2965,
4592,
275,
247,
2740,
875,
253,
990,
273,
12699,
285,
253,
29799,
964,
427,
583,
76,
21863,
253,
3924,
2366,
342,
1529,
7989,
347,
253,
3961,
2758,
497,
6108,
281,
564,
896,
13311,
964,
4794,
281,
779,
1157,
378,
314,
783,
6337,
715,
253,
767,
7458,
285,
10184,
731,
1097,
745,
964,
3900,
253,
643,
7989,
369,
7270,
407,
247,
4564,
273,
7458,
5780,
762,
253,
3924,
1157,
427,
583,
76,
6497,
3587,
327,
253,
3216,
964,
4794,
281,
657,
77,
607,
1157,
627,
497,
11184,
7458,
275,
2914,
273,
253,
3924,
1955,
281,
253,
2740,
964,
657,
77,
607,
2007,
7859,
326,
846,
253,
2965,
1157,
427,
583,
76,
2427,
281,
1790,
327,
247,
10955,
1157,
835,
344,
369,
8264,
2147,
247,
1824,
11996,
964,
427,
583,
76,
3407,
33510,
670,
2716,
271,
4964,
846,
253,
2965,
285,
347,
521,
3858,
8156,
326,
344,
574,
247,
44218,
387,
253,
896,
273,
521,
1481,
1157,
597,
1925,
271,
32686,
323,
4709,
344,
1537,
452,
247,
7036,
26148,
964,
657,
77,
607,
753,
326,
344,
7192,
378,
314,
783,
686,
84,
21850,
275,
253,
2740,
347,
271,
21558,
281,
253,
3924,
964,
2490,
8035,
1436,
281,
18954,
369,
6911,
388,
8526,
4530,
1157,
665,
4307,
347,
247,
3988,
7496,
253,
2360,
273,
253,
7119,
964,
388,
8526,
4530,
753,
326,
253,
7496,
38017,
369,
1512,
2810,
281,
253,
3924,
1157,
533,
417,
594,
2810,
347,
281,
1056,
247,
5147,
323,
21266,
253,
3924,
964,
754,
7859,
326,
344,
7320,
581,
1436,
745,
253,
3924,
285,
326,
1529,
1436,
6497,
745,
1078,
344,
812,
320,
14049,
964,
754,
2007,
753,
326,
253,
7989,
686,
84,
2965,
1537,
452,
644,
6518,
407,
3095,
2010,
1157,
4931,
253,
16057,
1157,
2167,
344,
858,
417,
923,
352,
10534,
964,
2490,
378,
314,
783,
686,
84,
5684,
2285,
13964,
3910,
875,
253,
40572,
447,
253,
12170,
3534,
846,
253,
7119,
275,
4267,
285,
387,
253,
1302,
964,
9658,
643,
1841,
1157,
581,
273,
253,
12170,
8927,
5575,
326,
427,
583,
76,
285,
378,
314,
783,
11898,
3564,
390,
326,
581,
273,
731,
5907,
1133,
281,
1529,
327,
3924,
3706,
2299,
1157,
387,
253,
1302,
4854,
1157,
344,
7859,
326,
627,
369,
642,
2720,
3057,
875,
731,
964,
378,
314,
783,
671,
9125,
326,
3492,
1941,
2011,
275,
1302,
1275,
4525,
3916,
670,
521,
13847,
3879,
964,
4928,
187,
426,
426,
426,
6258,
495,
273,
253,
2332,
426,
426,
426,
4928,
187,
27850,
8081,
14438,
1757,
615,
76,
1157,
253,
7989,
5207,
378,
314,
783,
8176,
281,
439,
11305,
745,
253,
3924,
1157,
7859,
327,
253,
2626,
1388,
273,
253,
2332,
964,
8081,
14438,
1757,
615,
76,
753,
344,
21863,
253,
3924,
7019,
275,
1340,
281,
3924,
25760,
3706,
344,
4391,
521,
2564,
1309,
253,
2626,
3177,
281,
755,
327,
3924,
964,
8081,
14438,
1757,
615,
76,
7859,
326,
378,
314,
783,
19336,
779,
1066,
1157,
47511,
327,
779,
285,
2918,
779,
1066,
323,
247,
2774,
1157,
533,
378,
314,
783,
7964,
858,
417,
45266,
779,
964,
754,
671,
8176,
326,
3192,
715,
2395,
253,
958,
326,
344,
313,
8081,
14438,
1757,
615,
76,
2387,
369,
17507,
285,
253,
1039,
344,
14001,
1157,
378,
314,
783,
686,
84,
4884,
369,
10599,
964,
754,
20503,
326,
344,
46137,
253,
958,
326,
344,
369,
417,
3078,
327,
3924,
964,
2490,
8035,
5517,
665,
574,
11612,
253,
12699,
387,
253,
10581,
273,
253
] |
= Trout Creek Mountains =
The Trout Creek Mountains are a remote, semi @-@ arid Great Basin mountain range mostly in southeastern Oregon and partially in northern Nevada in the United States. The range's highest point is Orevada View Benchmark, 8 @,@ 506 feet ( 2 @,@ 593 m ) above sea level, in Nevada. Disaster Peak, elevation 7 @,@ 781 feet ( 2 @,@ 372 m ), is another prominent summit in the Nevada portion of the mountains.
The mountains are characteristic of the Great Basin's topography of mostly parallel mountain ranges alternating with flat valleys. Oriented generally north to south, the Trout Creek Mountains consist primarily of fault blocks of basalt, which came from an ancient volcano and other vents, on top of older metamorphic rocks. The southern end of the range, however, features many granitic outcrops. As a whole, the faulted terrain is dominated by rolling hills and ridges cut by escarpments and canyons.
Most of the range is public land administered by the federal Bureau of Land Management. There is very little human development in the remote region — cattle grazing and ranching are the primary human uses — but former mines at the McDermitt Caldera produced some of the largest amounts of mercury in North America in the 20th century. Public lands in the mountains are open to recreation but are rarely visited. Vegetation includes large swaths of big sagebrush in addition to desert grasses and cottonwood and alder stands. Sage grouse and mountain chickadee are two bird species native to the range, and common mammals include pronghorn and jackrabbits.
Despite the area's dry climate, a few year @-@ round streams provide habitat for the rare Lahontan cutthroat trout. Fish populations in the Trout Creek Mountains declined throughout much of the 20th century. In the 1980s, the effects of grazing allotments on riparian zones and the fish led to land @-@ use conflict. The Trout Creek Mountain Working Group was formed in 1988 to help resolve disagreements among livestock owners, environmentalists, government agencies, and other interested parties. The stakeholders met and agreed on changes to land @-@ use practices, and since the early 1990s, riparian zones have begun to recover.
= = Geography = =
The Trout Creek Mountains are in a very remote area of southeastern Oregon and northern Nevada, in Harney and Humboldt counties. The nearest human settlements are the Whitehorse Ranch, about 20 miles ( 32 km ) directly north from the middle of the mountains ; Fields, Oregon, about 23 miles ( 37 km ) to the northwest ; Denio, Nevada, about 15 miles ( 24 km ) to the west ; and McDermitt, Nevada – Oregon, about 30 miles ( 48 km ) to the east. The mountains are about 150 miles ( 240 km ) directly southwest of Boise, Idaho, and about 190 miles ( 310 km ) northeast of Reno, Nevada.
The range and surrounding non @-@ mountainous areas cover an area of 811 square miles ( 2 @,@ 100 km2 ). The mountains run 51 miles ( 82 km ) north to south and 36 miles ( 58 km ) east to west. More of the range is in Oregon ( 78 % ) than in Nevada ( 22 % ). The highest point in the range is Orevada View Benchmark, which is 8 @,@ 506 feet ( 2 @,@ 593 m ) above sea level and is located in Nevada about one mile south of the Oregon border. About two miles southeast of Orevada View is Disaster Peak, " a large, symmetrical butte that is visible throughout the region. " At 7 @,@ 781 feet ( 2 @,@ 372 m ), Disaster Peak anchors the southern end of the mountains in a sub @-@ range called The Granites.
The Oregon Canyon Mountains border the Trout Creek Mountains on the east along the Harney – Malheur county line ( according to the United States Geological Survey's definitions ), while the Pueblo Mountains are the next range west of the Trout Creek Mountains. The Bilk Creek Mountains in both Oregon and Nevada border the Trout Creek Mountains on the southwest ; the two ranges are separated by Log Cabin Creek and South Fork Cottonwood Creek. South of the Trout Creek Mountains is the Kings River Valley, which separates the Bilk Creek Mountains on the west from the Montana Mountains on the east.
The terrain in the Trout Creek Mountains varies from broad, flat basins and rolling ridges to high rock escarpments cut by deep canyons. The canyons have steep walls with loose talus slopes at the bottoms. There are meadows around springs in the mountains, although most streams in the range do not flow year @-@ round. Major streams that flow off the north slopes of the mountains include ( from west to east ) Cottonwood Creek, Trout Creek, Willow Creek, and Whitehorse Creek. These streams all flow into endorheic basins in Harney County, Oregon. Trout Creek and Whitehorse Creek are the largest of the four. The Kings River and McDermitt Creek each drain an area on the south slopes of the Trout Creek Mountains. The Kings River begins in The Granites and flows south into Nevada, where it meets the Quinn River, which evaporates in the Black Rock Desert. McDermitt Creek begins in Oregon a few miles north of The Granites and flows generally east, crossing the Oregon – Nevada border five times before disappearing into the floor of the Quinn River Valley south of McDermitt.
= = Geology = =
The mountains lie within the Basin and Range Province or Great Basin of the Western United States, which is characterized by a series of parallel fault blocks that form long north – south mountain ranges separated by wide, high @-@ desert valleys. The Trout Creek Mountains are uplifted and tilted blocks with steep escarpments along the southern and eastern sides of the range. The southern area of the range, known as The Granites, has numerous outcroppings of Cretaceous age granite. These granite outcrops are commonly found in the eroded valleys below the volcanic ridgelines.
The Trout Creek Mountains are composed mostly of basalt from a shield volcano that once stood where Steens Mountain is today. Crustal thinning and the Yellowstone hotspot, which was then beneath southeastern Oregon, induced eruptions from Steens and nearby vents about 17 million years ago, in the Miocene. The vents produced a series of lava flows that spread across the land now known as the Trout Creek Mountains. Eruptions from the Steens volcano lasted for about one million years, and at least 70 separate lava flows occurred. Under the resulting basalt rock lie much older metamorphic rocks that may be related to some of the Triassic age formations of the Blue Mountains in northeastern Oregon. Within these metamorphic rocks are diorite and granodiorite intrusive bodies which were presumably intruded during the Cretaceous Period.
The broad McDermitt Caldera is a prominent geologic feature in the Trout Creek Mountains. The oval @-@ shaped caldera is a collapsed lava dome that straddles the Oregon – Nevada border on the eastern side of the range and south of the Oregon Canyon Mountains. It is about 28 miles ( 45 km ) long and 22 miles ( 35 km ) wide. The lava dome was created by volcanic eruptions in the early Miocene. A total of five large ash flows were produced along with a large rhyolite dome structure. The caldera formed when the dome collapsed about 16 million years ago. The caldera contains significant ore deposits, and mercury and uranium have been mined at eight or more sites in and around the caldera. Other areas in the caldera were mined for ores of antimony, cesium, and lithium.
= = Climate = =
The Trout Creek Mountains are semi @-@ arid because they are in the eastern rain shadow of mountain ranges to the west. When moist air from the Pacific Ocean moves eastward over the Oregon and California coastal ranges and the Cascade Range, most precipitation falls in those mountains before reaching the Trout Creek Mountains. As a result, the average annual precipitation in the Trout Creek Mountains is only 8 to 26 inches ( 200 to 660 mm ) per year, with most areas receiving between 8 and 12 inches ( 200 and 300 mm ) annually. Much of the annual precipitation occurs between the beginning of March and the end of June. Most of the rest falls as snow during the fall and winter months. Snowpack at elevations below 6 @,@ 000 feet ( 1 @,@ 800 m ) usually melts by April ; however, at the higher elevations, snow can remain until mid @-@ June. Local flooding often occurs in the spring as the snowpack melts.
The prevailing winds are from the west @-@ southwest, and they are normally strongest in March and April. Brief, intense thunderstorms are common between April and October. Thunderstorms in the summer months tend to be more isolated and often produce dry lightning strikes.
= = Ecology = =
= = = Flora = = =
Vegetation in the Trout Creek Mountains is dominated by big sagebrush and desert grasses. Other common shrubs include bitterbrush, snowberry, and Ceanothus. There are also patches of mountain mahogany in some areas. Common grass species include Idaho fescue, bluebunch wheatgrass, cheatgrass, western needlegrass, Sandberg's bluegrass, Thurber's needlegrass, and bottlebrush | wikitext_103 | [
426,
1535,
483,
16611,
28214,
426,
4928,
187,
380,
1535,
483,
16611,
28214,
403,
247,
8905,
1157,
10020,
1214,
14,
33,
549,
301,
6495,
41467,
11129,
2491,
6571,
275,
32276,
25489,
15427,
285,
10571,
275,
11186,
23050,
275,
253,
1986,
2077,
964,
380,
2491,
686,
84,
4585,
1127,
310,
473,
15079,
2960,
9182,
41576,
4698,
1157,
854,
1214,
13,
33,
39172,
4669,
313,
374,
1214,
13,
33,
608,
4590,
278,
2387,
1840,
6150,
1268,
1157,
275,
23050,
964,
5201,
2237,
24515,
1157,
19099,
818,
1214,
13,
33,
818,
3593,
4669,
313,
374,
1214,
13,
33,
38891,
278,
2387,
1157,
310,
1529,
11906,
21948,
275,
253,
23050,
5110,
273,
253,
14700,
964,
2490,
380,
14700,
403,
8847,
273,
253,
6495,
41467,
686,
84,
48865,
273,
6571,
7529,
11129,
13794,
28035,
342,
6507,
42919,
964,
45674,
264,
3839,
6146,
281,
6420,
1157,
253,
1535,
483,
16611,
28214,
2882,
8558,
273,
9331,
8336,
273,
1666,
2711,
1157,
534,
2210,
432,
271,
9129,
36374,
285,
643,
362,
592,
1157,
327,
1755,
273,
5662,
42281,
41050,
16419,
964,
380,
11053,
990,
273,
253,
2491,
1157,
2299,
1157,
3386,
1142,
10115,
17533,
562,
23853,
793,
964,
1284,
247,
2644,
1157,
253,
9331,
264,
25061,
310,
14691,
407,
14572,
19607,
285,
8314,
2510,
2624,
407,
1578,
5546,
81,
942,
285,
476,
90,
790,
964,
2490,
5595,
273,
253,
2491,
310,
1345,
2659,
11966,
407,
253,
4400,
15904,
273,
8565,
11354,
964,
1707,
310,
1077,
1652,
1966,
2440,
275,
253,
8905,
2919,
1905,
17228,
42351,
285,
34034,
272,
403,
253,
3625,
1966,
4648,
1905,
533,
3438,
27304,
387,
253,
30946,
693,
770,
47660,
66,
4197,
690,
273,
253,
6253,
8322,
273,
33679,
275,
3729,
3968,
275,
253,
1384,
394,
5331,
964,
5259,
13446,
275,
253,
14700,
403,
1527,
281,
37481,
533,
403,
11766,
11580,
964,
42629,
318,
3797,
1781,
1863,
48193,
273,
1943,
35855,
36511,
275,
1635,
281,
13438,
10583,
265,
285,
17649,
5308,
285,
355,
491,
9572,
964,
322,
486,
650,
1312,
285,
11129,
8734,
796,
70,
403,
767,
12621,
3417,
7925,
281,
253,
2491,
1157,
285,
1846,
25045,
2486,
46892,
27721,
285,
19708,
83,
8902,
953,
964,
2490,
9937,
253,
2170,
686,
84,
6079,
7952,
1157,
247,
1643,
807,
1214,
14,
33,
3790,
17795,
2085,
20571,
323,
253,
7520,
47662,
834,
266,
2624,
38088,
255,
40732,
964,
23645,
7625,
275,
253,
1535,
483,
16611,
28214,
13072,
4768,
1199,
273,
253,
1384,
394,
5331,
964,
496,
253,
9178,
84,
1157,
253,
2538,
273,
42351,
512,
302,
942,
327,
4172,
1148,
757,
18192,
285,
253,
6773,
3977,
281,
2659,
1214,
14,
33,
897,
7344,
964,
380,
1535,
483,
16611,
15939,
21919,
5901,
369,
4447,
275,
11513,
281,
1361,
11322,
10009,
36559,
2190,
29592,
9891,
1157,
6938,
1346,
1157,
2208,
11009,
1157,
285,
643,
6110,
4676,
964,
380,
28022,
1313,
285,
5821,
327,
2544,
281,
2659,
1214,
14,
33,
897,
8333,
1157,
285,
1580,
253,
2393,
7901,
84,
1157,
4172,
1148,
757,
18192,
452,
13207,
281,
9295,
964,
4928,
187,
426,
426,
3096,
3756,
426,
426,
4928,
187,
380,
1535,
483,
16611,
28214,
403,
275,
247,
1077,
8905,
2170,
273,
32276,
25489,
15427,
285,
11186,
23050,
1157,
275,
3972,
2191,
285,
388,
3561,
744,
85,
21813,
964,
380,
5275,
1966,
27885,
403,
253,
5219,
33647,
35607,
1157,
670,
1384,
6574,
313,
4567,
10771,
2387,
3587,
6146,
432,
253,
4766,
273,
253,
14700,
3706,
28679,
1157,
15427,
1157,
670,
3495,
6574,
313,
5345,
10771,
2387,
281,
253,
29979,
3706,
7682,
900,
1157,
23050,
1157,
670,
1458,
6574,
313,
2164,
10771,
2387,
281,
253,
8935,
3706,
285,
30946,
693,
770,
1157,
23050,
1108,
15427,
1157,
670,
1884,
6574,
313,
5693,
10771,
2387,
281,
253,
9268,
964,
380,
14700,
403,
670,
7783,
6574,
313,
16918,
10771,
2387,
3587,
31438,
273,
3452,
885,
1157,
27756,
1157,
285,
670,
21732,
6574,
313,
27322,
10771,
2387,
29510,
273,
12751,
80,
1157,
23050,
964,
2490,
380,
2491,
285,
8704,
1327,
1214,
14,
33,
11129,
528,
3672,
3835,
271,
2170,
273,
854,
883,
6278,
6574,
313,
374,
1214,
13,
33,
2233,
10771,
19,
2387,
964,
380,
14700,
1408,
8319,
6574,
313,
11487,
10771,
2387,
6146,
281,
6420,
285,
5540,
6574,
313,
9135,
10771,
2387,
9268,
281,
8935,
964,
3010,
273,
253,
2491,
310,
275,
15427,
313,
10523,
2462,
2387,
685,
275,
23050,
313,
3307,
2462,
2387,
964,
380,
4585,
1127,
275,
253,
2491,
310,
473,
15079,
2960,
9182,
41576,
4698,
1157,
534,
310,
854,
1214,
13,
33,
39172,
4669,
313,
374,
1214,
13,
33,
608,
4590,
278,
2387,
1840,
6150,
1268,
285,
310,
4441,
275,
23050,
670,
581,
13915,
6420,
273,
253,
15427,
5680,
964,
11376,
767,
6574,
32253,
273,
473,
15079,
2960,
9182,
310,
5201,
2237,
24515,
1157,
346,
247,
1781,
1157,
42736,
533,
442,
326,
310,
7985,
4768,
253,
2919,
964,
346,
2058,
818,
1214,
13,
33,
818,
3593,
4669,
313,
374,
1214,
13,
33,
38891,
278,
2387,
1157,
5201,
2237,
24515,
44791,
253,
11053,
990,
273,
253,
14700,
275,
247,
749,
1214,
14,
33,
2491,
1925,
380,
22346,
3254,
964,
2490,
380,
15427,
33843,
28214,
5680,
253,
1535,
483,
16611,
28214,
327,
253,
9268,
2112,
253,
3972,
2191,
1108,
5979,
248,
321,
9635,
1386,
313,
2556,
281,
253,
1986,
2077,
3096,
1975,
17136,
686,
84,
14308,
2387,
1157,
1223,
253,
367,
489,
43750,
28214,
403,
253,
1735,
2491,
8935,
273,
253,
1535,
483,
16611,
28214,
964,
380,
34445,
76,
16611,
28214,
275,
1097,
15427,
285,
23050,
5680,
253,
1535,
483,
16611,
28214,
327,
253,
31438,
3706,
253,
767,
13794,
403,
9070,
407,
8192,
15569,
249,
16611,
285,
3684,
401,
1064,
39339,
5308,
16611,
964,
3684,
273,
253,
1535,
483,
16611,
28214,
310,
253,
20567,
7121,
10947,
1157,
534,
36158,
253,
34445,
76,
16611,
28214,
327,
253,
8935,
432,
253,
27540,
28214,
327,
253,
9268,
964,
2490,
380,
25061,
275,
253,
1535,
483,
16611,
28214,
16149,
432,
3862,
1157,
6507,
1666,
968,
285,
14572,
8314,
2510,
281,
1029,
5561,
1578,
5546,
81,
942,
2624,
407,
3676,
476,
90,
790,
964,
380,
476,
90,
790,
452,
16624,
8099,
342,
13155,
5269,
316,
28677,
387,
253,
3673,
3056,
964,
1707,
403,
479,
16044,
1475,
29121,
275,
253,
14700,
1157,
3738,
954,
17795,
275,
253,
2491,
513,
417,
2685,
807,
1214,
14,
33,
3790,
964,
11432,
17795,
326,
2685,
745,
253,
6146,
28677,
273,
253,
14700,
2486,
313,
432,
8935,
281,
9268,
2387,
39339,
5308,
16611,
1157,
1535,
483,
16611,
1157,
7395,
319,
16611,
1157,
285,
5219,
33647,
16611,
964,
2053,
17795,
512,
2685,
715,
990,
263,
248,
280,
1666,
968,
275,
3972,
2191,
3928,
1157,
15427,
964,
1535,
483,
16611,
285,
5219,
33647,
16611,
403,
253,
6253,
273,
253,
1740,
964,
380,
20567,
7121,
285,
30946,
693,
770,
16611,
1016,
12657,
271,
2170,
327,
253,
6420,
28677,
273,
253,
1535,
483,
16611,
28214,
964,
380,
20567,
7121,
9513,
275,
380,
22346,
3254,
285,
14221,
6420,
715,
23050,
1157,
835,
352,
16382,
253,
29051,
7121,
1157,
534,
25608,
684,
275,
253,
5418,
9384,
36274,
964,
30946,
693,
770,
16611,
9513,
275,
15427,
247,
1643,
6574,
6146,
273,
380,
22346,
3254,
285,
14221,
3839,
9268,
1157,
14270,
253,
15427,
1108,
23050,
5680,
2620,
2069,
1078,
42689,
715,
253,
5254,
273,
253,
29051,
7121,
10947,
6420,
273,
30946,
693,
770,
964,
4928,
187,
426,
426,
3096,
1497,
426,
426,
4928,
187,
380,
14700,
7027,
1561,
253,
41467,
285,
21277,
18324,
390,
6495,
41467,
273,
253,
6359,
1986,
2077,
1157,
534,
310,
7943,
407,
247,
2962,
273,
7529,
9331,
8336,
326,
830,
1048,
6146,
1108,
6420,
11129,
13794,
9070,
407,
4618,
1157,
1029,
1214,
14,
33,
13438,
42919,
964,
380,
1535,
483,
16611,
28214,
403,
27165,
2094,
264,
285,
37126,
8336,
342,
16624,
1578,
5546,
81,
942,
2112,
253,
11053,
285,
14730,
7123,
273,
253,
2491,
964,
380,
11053,
2170,
273,
253,
2491,
1157,
1929,
347,
380,
22346,
3254,
1157,
556,
7418,
562,
23853,
44977,
273,
330,
1221,
32691,
2363,
43056,
964,
2053,
43056,
562,
23853,
793,
403,
7744,
1119,
275,
253,
2827,
7459,
42919,
2708,
253,
44091,
8314,
11500,
1100,
964,
2490,
380,
1535,
483,
16611,
28214,
403,
9924,
6571,
273,
1666,
2711,
432,
247,
12831,
36374,
326,
2378,
6225,
835,
2951,
561,
15939,
310,
3063,
964,
7306,
461,
267,
6906,
920,
285,
253,
25056,
10228,
3511,
17166,
1157,
534,
369,
840,
11834,
32276,
25489,
15427,
1157,
5802,
36850,
6372,
432,
2951,
561,
285,
10151,
362,
592,
670,
1722,
3041,
1107,
3622,
1157,
275,
253,
9823,
41738,
964,
380,
362,
592,
4197,
247,
2962,
273,
48343,
14221,
326,
5195,
2439,
253,
2659,
1024,
1929,
347,
253,
1535,
483,
16611,
28214,
964,
444,
3787,
621,
432,
253,
2951,
561,
36374,
20578,
323,
670,
581,
3041,
1107,
1157,
285,
387,
1878,
5571,
4858,
48343,
14221,
5866,
964,
6166,
253,
4795,
1666,
2711,
5561,
7027,
1199,
5662,
42281,
41050,
16419,
326,
778,
320,
2905,
281,
690,
273,
253,
11835,
48973,
2363,
34256,
273,
253,
10063,
28214,
275,
20558,
25489,
15427,
964,
15092,
841,
42281,
41050,
16419,
403,
1073,
263,
614,
285,
10115,
351,
1528,
614,
4996,
15240,
8248,
534,
497,
18289,
4996,
21015,
1309,
253,
330,
1221,
32691,
25792,
964,
2490,
380,
3862,
30946,
693,
770,
47660,
66,
310,
247,
11906,
3471,
9522,
4735,
275,
253,
1535,
483,
16611,
28214,
964,
380,
32679,
1214,
14,
33,
16745,
1724,
491,
66,
310,
247,
21900,
48343,
34074,
326,
1213,
1911,
868,
253,
15427,
1108,
23050,
5680,
327,
253,
14730,
1930,
273,
253,
2491,
285,
6420,
273,
253,
15427,
33843,
28214,
964,
733,
310,
670,
3349,
6574,
313,
5329,
10771,
2387,
1048,
285,
3307,
6574,
313,
4791,
10771,
2387,
4618,
964,
380,
48343,
34074,
369,
3562,
407,
44091,
36850,
6372,
275,
253,
2393,
9823,
41738,
964,
329,
2264,
273,
2620,
1781,
15898,
14221,
497,
4197,
2112,
342,
247,
1781,
391,
1994,
46431,
34074,
2605,
964,
380,
1724,
491,
66,
4447,
672,
253,
34074,
21900,
670,
1668,
3041,
1107,
3622,
964,
380,
1724,
491,
66,
4428,
1534,
29900,
22413,
1157,
285,
33679,
285,
41031,
452,
644,
278,
967,
387,
4314,
390,
625,
4375,
275,
285,
1475,
253,
1724,
491,
66,
964,
5131,
3672,
275,
253,
1724,
491,
66,
497,
278,
967,
323,
258,
373,
273,
1331,
5632,
1157,
19109,
1514,
1157,
285,
27747,
964,
4928,
187,
426,
426,
28678,
426,
426,
4928,
187,
380,
1535,
483,
16611,
28214,
403,
10020,
1214,
14,
33,
549,
301,
984,
597,
403,
275,
253,
14730,
9313,
12195,
273,
11129,
13794,
281,
253,
8935,
964,
2091,
14241,
2329,
432,
253,
11553,
17323,
9727,
9268,
1034,
689,
253,
15427,
285,
5002,
22431,
13794,
285,
253,
330,
45446,
21277,
1157,
954,
26611,
11521,
275,
1110,
14700,
1078,
10922,
253,
1535,
483,
16611,
28214,
964,
1284,
247,
906,
1157,
253,
3388,
7970,
26611,
275,
253,
1535,
483,
16611,
28214,
310,
760,
854,
281,
3436,
13048,
313,
1052,
281,
44493,
5823,
2387,
591,
807,
1157,
342,
954,
3672,
6883,
875,
854,
285,
1249,
13048,
313,
1052,
285,
7469,
5823,
2387,
21051,
964,
18770,
273,
253,
7970,
26611,
6634,
875,
253,
5068,
273,
3919,
285,
253,
990,
273,
3978,
964,
5595,
273,
253,
1551,
11521,
347,
8762,
1309,
253,
2965,
285,
8986,
2607,
964,
18724,
6896,
387,
6478,
569,
2708,
721,
1214,
13,
33,
20181,
4669,
313,
337,
1214,
13,
33,
14212,
278,
2387,
3798,
6673,
1641,
407,
4162,
3706,
2299,
1157,
387,
253,
2169,
6478,
569,
1157,
8762,
476,
3464,
1919,
4260,
1214,
14,
33,
3978,
964,
11629,
28037,
2223,
6634,
275,
253,
7203,
347,
253,
8762,
6896,
6673,
1641,
964,
2490,
380,
27274,
19362,
403,
432,
253,
8935,
1214,
14,
33,
31438,
1157,
285,
597,
403,
9403,
19508,
275,
3919,
285,
4162,
964,
16404,
1157,
12680,
24511,
296,
19793,
403,
1846,
875,
4162,
285,
4437,
964,
27926,
296,
19793,
275,
253,
5768,
2607,
5257,
281,
320,
625,
7011,
285,
2223,
4711,
6079,
25033,
18200,
964,
4928,
187,
426,
426,
24253,
1497,
426,
426,
4928,
19668,
426,
426,
426,
2884,
6464,
426,
426,
426,
4928,
187,
42629,
318,
275,
253,
1535,
483,
16611,
28214,
310,
14691,
407,
1943,
35855,
36511,
285,
13438,
10583,
265,
964,
5131,
1846,
11111,
24976,
2486,
17123,
36511,
1157,
8762,
12840,
1157,
285,
330,
15719,
837,
316,
964,
1707,
403,
671,
20412,
273,
11129,
35926,
462,
1279,
275,
690,
3672,
964,
10200,
10583,
3417,
2486,
27756,
269,
20039,
489,
1157,
4797,
67,
3204,
18173,
34495,
1157,
39038,
34495,
1157,
10439,
15460,
34495,
1157,
7889,
4978,
686,
84,
4797,
34495,
1157,
39623,
589,
686,
84,
15460,
34495,
1157,
285,
11996,
36511
] |
= Where the Streets Have No Name =
" Where the Streets Have No Name " is a song by Irish rock band U2. It is the opening track from their 1987 album The Joshua Tree and was released as the album's third single in August 1987. The song's hook is a repeating guitar arpeggio using a delay effect, played during the song's introduction and again at the end. Lead vocalist Bono wrote the lyrics in response to the notion that it is possible to identify a person's religion and income based on the street on which they lived, particularly in Belfast. During the band's difficulties recording the song, producer Brian Eno considered erasing the song's tapes to have them start from scratch.
" Where the Streets Have No Name " was praised by critics and became a commercial success, peaking at number thirteen in the US, number fourteen in Canada, number ten in the Netherlands, and number four in the United Kingdom. The song has remained a staple of their live act since the song debuted in 1987 on The Joshua Tree Tour. The song was performed on a Los Angeles rooftop for the filming of its music video, which won a Grammy Award for Best Performance Music Video.
= = Writing and recording = =
The music for " Where the Streets Have No Name " originated from a demo that guitarist The Edge composed the night before the group resumed The Joshua Tree sessions. In an upstairs room at Melbeach House — his newly purchased home — The Edge used a four @-@ track tape machine to record an arrangement of keyboards, bass, guitar, and a drum machine. Realising that the album sessions were approaching the end and that the band were short on exceptional live songs, The Edge wanted to " conjure up the ultimate U2 live @-@ song ", so he imagined what he would like to hear at a future U2 show if he were a fan. After finishing the rough mix, he felt he had come up with " the most amazing guitar part and song of [ his ] life ". With no one in the house to share the demo with, The Edge recalls dancing around and punching the air in celebration.
Although the band liked the demo, it was difficult for them to record the song. Bassist Adam Clayton said, " At the time it sounded like a foreign language, whereas now we understand how it works ". The arrangement, with two time signature shifts and frequent chord changes, was rehearsed many times, but the group struggled to get a performance they liked. According to co @-@ producer Daniel Lanois, " that was the science project song. I remember having this massive schoolhouse blackboard, as we call them. I was holding a pointer, like a college professor, walking the band through the chord changes like a fucking nerd. It was ridiculous. " Co @-@ producer Brian Eno estimates that half of the album sessions were spent trying to record a suitable version of " Where the Streets Have No Name ". The band worked on a single take for weeks, but as Eno explained, that particular version had a lot of problems with it and the group continued trying to fix it up. Through all of their work, they had gradually replaced each instrument take until nothing remained from the original performance.
So much time had been spent on " screwdriver work " that Eno thought it would be best to start from scratch. His idea was to " stage an accident " and have the song's tapes erased. He said that this was not to force abandonment of the song, but rather that it would be more effective to start again with a fresh performance. At one point, Eno had the tapes cued up and ready to be recorded over, but this erasure never took place ; according to engineer Flood, fellow engineer Pat McCarthy returned to the control room and upon seeing Eno ready to erase the tapes, dropped the tray of tea he was carrying and physically restrained Eno.
The studio version of the song was compiled from several different takes. It was one of several songs mixed by Steve Lillywhite in the final months of recording The Joshua Tree. Drummer Larry Mullen, Jr. later said of the song, " It took so long to get that song right, it was difficult for us to make any sense of it. It only became a truly great song through playing live. On the record, musically, it's not half the song it is live. "
= = Composition = =
" Where the Streets Have No Name " is played at a tempo of 126 beats per minute. The introduction and outro are played in a 3 / 4 time signature, while the remainder of the song is in a common 4 / 4 signature. The songs opens with an instrumental section, starting with chorale @-@ like sustained synthesiser notes. The guitar fades in after 42 seconds ; this part consists of a repeated " chiming " six @-@ note arpeggio. A " dotted eighth " delay effect is used to " play " each note in the arpeggio twice, thus creating a rich sound. The bass and drums enter at 1 : 10.
The introduction, following a I – IV – I – IV – vi – V – I chord progression, creates a " wall of sound ", as described by Mark Butler, against which the vocals emerge after nearly two minutes. The guitar part played for the remainder of the song features The Edge strumming percussive sixteenth notes. The bass and drums continue in regular eighth and sixteenth notes, respectively, while Bono's vocal performance, in contrast, varies greatly in its timbre, ( " he sighs ; he moans ; he grunts ; he exhales audibly ; he allows his voice to crack " ) as well as timing by his usage of rubato to slightly offset the notes he sings from the beat.
This development reaches a climax during the first chorus at the line " burning down love " ( A – G – F ♯ – D ) ; the melody progresses through a series of scale degrees that lead to the highest note in the song, the A4 at " burning ". In later choruses, Bono sings " blown by the wind " with the same melody, stretching the same note even longer. After the third chorus, the song's outro is played, the instrumentation reverting to the same state as it was in the introduction, with a six @-@ note guitar arpeggio played against sustained synthesiser notes.
= = Lyrics = =
The lyrics were inspired by a story that Bono heard about the streets of Belfast, Northern Ireland, where a person's religion and income are evident by the street they live on. He contrasted this with the anonymity he felt when visiting Ethiopia, saying : "... the guy in the song recognizes this contrast and thinks about a world where there aren 't such divisions, a place where the streets have no name. To me, that's the way a great rock'n'roll concert should be : a place where everyone comes together... Maybe that's the dream of all art : to break down the barriers and the divisions between people and touch upon the things that matter the most to us all. " Bono wrote the lyrics while on a humanitarian visit to Ethiopia with his wife, Ali Hewson ; he first wrote them down on an airsickness bag while staying in a village.
According to him, the song is ostensibly about " Transcendence, elevation, whatever you want to call it. " Bono, who compared many of his lyrics prior to The Joshua Tree to " sketches ", said that "'Where the Streets Have No Name'is more like the U2 of old than any of the other songs on the LP, because it's a sketch — I was just trying to sketch a location, maybe a spiritual location, maybe a romantic location. I was trying to sketch a feeling. "
The open @-@ ended nature of the lyrics has led to many interpretations. Journalist Michael Campbell believed the lyrics send " a message of hope " and wish for a " world that is not divided by class, wealth, race, or any other arbitrary criterion ". With regard to the place Bono was referring to in the song, he said, " I'm not sure, really, about that. I used to think it was Belfast... " Journalist Niall Stokes believes the title was influenced by Bono's and his wife Ali's visit to Ethiopia as volunteer aid @-@ workers. Bono has expressed mixed opinions about the open @-@ ended lyrics : " I can look at it now and recognize that [ the song ] has one of the most banal couplets in the history of pop music. But it also contains some of the biggest ideas. In a curious way, that seems to work. If you get any way heavy about these things, you don 't communicate. But if you're flip or throwaway about it, then you do. That's one of the paradoxes I've come to terms with. "
= = Release = =
Originally, the third single from The Joshua Tree was meant to be the song " Red Hill Mining Town ", but " Where the Streets Have No Name " was released instead, in August 1987. The single was released on 7 @-@ inch, 12 @-@ inch, cassette and CD single formats. Three B @-@ sides were featured on the single, including " Race Against Time ", " Silver and Gold ", and " Sweetest Thing ", except for the 7 @-@ inch release, which only featured the latter two tracks. The 12 @-@ inch single featured " Race Against Time " on side A of the record ( despite being a " B @-@ side " | wikitext_103 | [
426,
7900,
253,
30912,
1507,
12238,
1621,
9424,
426,
4928,
187,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
310,
247,
4498,
407,
11596,
5561,
3961,
530,
19,
964,
733,
310,
253,
5909,
3540,
432,
616,
12034,
5400,
380,
29092,
19128,
285,
369,
4439,
347,
253,
5400,
686,
84,
2626,
2014,
275,
4223,
12034,
964,
380,
4498,
686,
84,
10584,
310,
247,
24385,
12609,
549,
365,
1266,
900,
970,
247,
5778,
1055,
1157,
4546,
1309,
253,
4498,
686,
84,
10199,
285,
969,
387,
253,
990,
964,
12151,
17898,
382,
11228,
80,
4159,
253,
24591,
275,
2380,
281,
253,
10732,
326,
352,
310,
1896,
281,
4271,
247,
1436,
686,
84,
9596,
285,
6021,
1754,
327,
253,
6406,
327,
534,
597,
6940,
1157,
3782,
275,
44867,
964,
6408,
253,
3961,
686,
84,
12748,
7663,
253,
4498,
1157,
14281,
14468,
444,
2369,
2783,
2827,
2355,
253,
4498,
686,
84,
33942,
281,
452,
731,
1265,
432,
20041,
964,
2490,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
369,
26108,
407,
17139,
285,
3395,
247,
6264,
2323,
1157,
759,
1170,
387,
1180,
27291,
275,
253,
1982,
1157,
1180,
25963,
275,
6144,
1157,
1180,
3578,
275,
253,
16333,
1157,
285,
1180,
1740,
275,
253,
1986,
11491,
964,
380,
4498,
556,
6376,
247,
37891,
273,
616,
3153,
769,
1580,
253,
4498,
41362,
275,
12034,
327,
380,
29092,
19128,
11997,
964,
380,
4498,
369,
2684,
327,
247,
8742,
9757,
43271,
412,
323,
253,
32539,
273,
697,
3440,
3492,
1157,
534,
1912,
247,
22197,
2577,
11240,
323,
9567,
21856,
11412,
16428,
964,
4928,
187,
426,
426,
24207,
285,
7663,
426,
426,
4928,
187,
380,
3440,
323,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
23923,
432,
247,
22020,
326,
40720,
380,
24105,
9924,
253,
2360,
1078,
253,
1387,
30974,
380,
29092,
19128,
12154,
964,
496,
271,
24311,
2316,
387,
8359,
1257,
607,
3995,
1905,
521,
9841,
9716,
1728,
1905,
380,
24105,
908,
247,
1740,
1214,
14,
33,
3540,
11173,
5145,
281,
1924,
271,
11461,
273,
45640,
1157,
16819,
1157,
12609,
1157,
285,
247,
14988,
5145,
964,
10417,
2182,
326,
253,
5400,
12154,
497,
17682,
253,
990,
285,
326,
253,
3961,
497,
2159,
327,
18714,
3153,
9575,
1157,
380,
24105,
3078,
281,
346,
7862,
459,
598,
253,
12553,
530,
19,
3153,
1214,
14,
33,
4498,
346,
1157,
594,
344,
18998,
752,
344,
651,
751,
281,
4089,
387,
247,
2852,
530,
19,
921,
604,
344,
497,
247,
7989,
964,
2732,
19083,
253,
7227,
5878,
1157,
344,
3543,
344,
574,
1705,
598,
342,
346,
253,
954,
8644,
12609,
629,
285,
4498,
273,
544,
521,
5032,
1495,
346,
964,
2726,
642,
581,
275,
253,
2419,
281,
3894,
253,
22020,
342,
1157,
380,
24105,
31562,
18792,
1475,
285,
18750,
272,
253,
2329,
275,
21621,
964,
2490,
4129,
253,
3961,
10490,
253,
22020,
1157,
352,
369,
2834,
323,
731,
281,
1924,
253,
4498,
964,
28219,
382,
13187,
40998,
753,
1157,
346,
2058,
253,
673,
352,
17132,
751,
247,
5639,
3448,
1157,
5727,
1024,
359,
2096,
849,
352,
2987,
346,
964,
380,
11461,
1157,
342,
767,
673,
11118,
15036,
285,
10879,
32894,
2544,
1157,
369,
33558,
264,
1142,
2069,
1157,
533,
253,
1387,
19460,
281,
755,
247,
3045,
597,
10490,
964,
4794,
281,
820,
1214,
14,
33,
14281,
10213,
418,
4692,
261,
1157,
346,
326,
369,
253,
5859,
2199,
4498,
964,
309,
4456,
1907,
436,
7863,
2143,
5967,
2806,
4697,
1157,
347,
359,
1067,
731,
964,
309,
369,
5877,
247,
12219,
1157,
751,
247,
6831,
11652,
1157,
7824,
253,
3961,
949,
253,
32894,
2544,
751,
247,
12835,
295,
15182,
964,
733,
369,
19082,
964,
346,
2434,
1214,
14,
33,
14281,
14468,
444,
2369,
8197,
326,
2716,
273,
253,
5400,
12154,
497,
5262,
2820,
281,
1924,
247,
7470,
2715,
273,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
964,
380,
3961,
4307,
327,
247,
2014,
1379,
323,
3618,
1157,
533,
347,
444,
2369,
5544,
1157,
326,
1798,
2715,
574,
247,
2257,
273,
3237,
342,
352,
285,
253,
1387,
4821,
2820,
281,
4993,
352,
598,
964,
11970,
512,
273,
616,
789,
1157,
597,
574,
13237,
7932,
1016,
7935,
1379,
1919,
2717,
6376,
432,
253,
3236,
3045,
964,
2490,
1893,
1199,
673,
574,
644,
5262,
327,
346,
11598,
17440,
789,
346,
326,
444,
2369,
1869,
352,
651,
320,
1682,
281,
1265,
432,
20041,
964,
3032,
2934,
369,
281,
346,
3924,
271,
7343,
346,
285,
452,
253,
4498,
686,
84,
33942,
44767,
964,
754,
753,
326,
436,
369,
417,
281,
3490,
43289,
273,
253,
4498,
1157,
533,
2581,
326,
352,
651,
320,
625,
3576,
281,
1265,
969,
342,
247,
5352,
3045,
964,
2058,
581,
1127,
1157,
444,
2369,
574,
253,
33942,
260,
2107,
598,
285,
4704,
281,
320,
5950,
689,
1157,
533,
436,
2827,
5849,
1620,
2335,
1659,
3706,
2556,
281,
16518,
48613,
1157,
7715,
16518,
2790,
32101,
4895,
281,
253,
1453,
2316,
285,
2220,
6523,
444,
2369,
4704,
281,
36844,
253,
33942,
1157,
8231,
253,
23361,
273,
10331,
344,
369,
8785,
285,
13318,
39848,
444,
2369,
964,
2490,
380,
11803,
2715,
273,
253,
4498,
369,
18133,
432,
2067,
1027,
3936,
964,
733,
369,
581,
273,
2067,
9575,
6804,
407,
11819,
46612,
11300,
275,
253,
2457,
2607,
273,
7663,
380,
29092,
19128,
964,
39582,
961,
20681,
353,
26584,
1157,
10512,
15,
1996,
753,
273,
253,
4498,
1157,
346,
733,
2335,
594,
1048,
281,
755,
326,
4498,
987,
1157,
352,
369,
2834,
323,
441,
281,
1056,
667,
3282,
273,
352,
964,
733,
760,
3395,
247,
7777,
1270,
4498,
949,
4882,
3153,
964,
1623,
253,
1924,
1157,
1948,
1037,
1157,
352,
686,
84,
417,
2716,
253,
4498,
352,
310,
3153,
964,
346,
4928,
187,
426,
426,
1176,
3321,
426,
426,
4928,
187,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
310,
4546,
387,
247,
28250,
273,
17574,
27125,
591,
7017,
964,
380,
10199,
285,
562,
287,
403,
4546,
275,
247,
495,
1227,
577,
673,
11118,
1157,
1223,
253,
6414,
273,
253,
4498,
310,
275,
247,
1846,
577,
1227,
577,
11118,
964,
380,
9575,
13279,
342,
271,
23033,
2593,
1157,
4983,
342,
30811,
1079,
1214,
14,
33,
751,
12321,
9066,
254,
7211,
964,
380,
12609,
269,
3355,
275,
846,
5976,
7253,
3706,
436,
629,
8414,
273,
247,
6015,
346,
19114,
272,
346,
2800,
1214,
14,
33,
3877,
549,
365,
1266,
900,
964,
329,
346,
24817,
23738,
346,
5778,
1055,
310,
908,
281,
346,
1132,
346,
1016,
3877,
275,
253,
549,
365,
1266,
900,
7019,
1157,
3021,
6153,
247,
6793,
3590,
964,
380,
16819,
285,
27275,
4901,
387,
337,
1163,
884,
964,
2490,
380,
10199,
1157,
1563,
247,
309,
1108,
8019,
1108,
309,
1108,
8019,
1108,
2177,
1108,
657,
1108,
309,
32894,
10005,
1157,
10513,
247,
346,
3402,
273,
3590,
346,
1157,
347,
2529,
407,
4744,
25968,
1157,
1411,
534,
253,
23599,
20177,
846,
4829,
767,
2909,
964,
380,
12609,
629,
4546,
323,
253,
6414,
273,
253,
4498,
3386,
380,
24105,
1213,
360,
3987,
39057,
1316,
422,
2800,
16565,
7211,
964,
380,
16819,
285,
27275,
4035,
275,
3963,
23738,
285,
2800,
16565,
7211,
1157,
2975,
1157,
1223,
11228,
80,
686,
84,
17898,
3045,
1157,
275,
4499,
1157,
16149,
10260,
275,
697,
4522,
3381,
1157,
313,
346,
344,
256,
21144,
3706,
344,
5497,
507,
3706,
344,
650,
24779,
3706,
344,
26004,
2339,
3820,
4360,
3706,
344,
4483,
521,
4318,
281,
9370,
346,
2387,
347,
973,
347,
11795,
407,
521,
10393,
273,
7692,
4611,
281,
5777,
8409,
253,
7211,
344,
44718,
432,
253,
7171,
964,
2490,
831,
2440,
14190,
247,
50068,
1309,
253,
806,
35397,
387,
253,
1386,
346,
13195,
1066,
2389,
346,
313,
329,
1108,
443,
1108,
401,
31963,
109,
1108,
399,
2387,
3706,
253,
40641,
42851,
949,
247,
2962,
273,
4311,
7759,
326,
1421,
281,
253,
4585,
3877,
275,
253,
4498,
1157,
253,
329,
21,
387,
346,
13195,
346,
964,
496,
1996,
30811,
5123,
1157,
11228,
80,
44718,
346,
24684,
407,
253,
5448,
346,
342,
253,
1072,
40641,
1157,
23148,
253,
1072,
3877,
1014,
3356,
964,
2732,
253,
2626,
35397,
1157,
253,
4498,
686,
84,
562,
287,
310,
4546,
1157,
253,
42507,
294,
31324,
281,
253,
1072,
1375,
347,
352,
369,
275,
253,
10199,
1157,
342,
247,
2800,
1214,
14,
33,
3877,
12609,
549,
365,
1266,
900,
4546,
1411,
12321,
9066,
254,
7211,
964,
4928,
187,
426,
426,
12829,
18211,
426,
426,
4928,
187,
380,
24591,
497,
11797,
407,
247,
2926,
326,
11228,
80,
3735,
670,
253,
10198,
273,
44867,
1157,
11442,
11011,
1157,
835,
247,
1436,
686,
84,
9596,
285,
6021,
403,
8943,
407,
253,
6406,
597,
3153,
327,
964,
754,
48397,
436,
342,
253,
39185,
344,
3543,
672,
13975,
35363,
1157,
3981,
1163,
346,
3346,
253,
5599,
275,
253,
4498,
25153,
436,
4499,
285,
11121,
670,
247,
1533,
835,
627,
6403,
686,
85,
824,
22387,
1157,
247,
1659,
835,
253,
10198,
452,
642,
1416,
964,
1916,
479,
1157,
326,
686,
84,
253,
1039,
247,
1270,
5561,
686,
295,
686,
4533,
12699,
943,
320,
1163,
247,
1659,
835,
4130,
3249,
2366,
3346,
8948,
326,
686,
84,
253,
7156,
273,
512,
1445,
1163,
281,
2740,
1066,
253,
15938,
285,
253,
22387,
875,
952,
285,
5181,
2220,
253,
1841,
326,
2647,
253,
954,
281,
441,
512,
964,
346,
11228,
80,
4159,
253,
24591,
1223,
327,
247,
30122,
4143,
281,
35363,
342,
521,
4475,
1157,
14355,
44990,
1665,
3706,
344,
806,
4159,
731,
1066,
327,
271,
2329,
84,
46113,
7351,
1223,
14596,
275,
247,
7773,
964,
2490,
4794,
281,
779,
1157,
253,
4498,
310,
27723,
46123,
670,
346,
4480,
68,
423,
566,
1157,
19099,
1157,
5913,
368,
971,
281,
1067,
352,
964,
346,
11228,
80,
1157,
665,
2429,
1142,
273,
521,
24591,
2720,
281,
380,
29092,
19128,
281,
346,
46159,
346,
1157,
753,
326,
346,
686,
7900,
253,
30912,
1507,
12238,
1621,
9424,
686,
310,
625,
751,
253,
530,
19,
273,
1711,
685,
667,
273,
253,
643,
9575,
327,
253,
20590,
1157,
984,
352,
686,
84,
247,
23211,
1905,
309,
369,
816,
2820,
281,
23211,
247,
4328,
1157,
5046,
247,
12435,
4328,
1157,
5046,
247,
18109,
4328,
964,
309,
369,
2820,
281,
23211,
247,
5471,
964,
346,
2490,
380,
1527,
1214,
14,
33,
7402,
3753,
273,
253,
24591,
556,
3977,
281,
1142,
27838,
964,
9109,
382,
6277,
20163,
6566,
253,
24591,
5007,
346,
247,
3935,
273,
3524,
346,
285,
5730,
323,
247,
346,
1533,
326,
310,
417,
4272,
407,
966,
1157,
8788,
1157,
5492,
1157,
390,
667,
643,
10341,
17705,
346,
964,
2726,
2743,
281,
253,
1659,
11228,
80,
369,
14339,
281,
275,
253,
4498,
1157,
344,
753,
1157,
346,
309,
686,
78,
417,
2119,
1157,
1663,
1157,
670,
326,
964,
309,
908,
281,
1158,
352,
369,
44867,
3346,
346,
9109,
382,
427,
451,
77,
39634,
11532,
253,
4060,
369,
12208,
407,
11228,
80,
686,
84,
285,
521,
4475,
14355,
686,
84,
4143,
281,
35363,
347,
20848,
8596,
1214,
14,
33,
5820,
964,
11228,
80,
556,
4469,
6804,
11626,
670,
253,
1527,
1214,
14,
33,
7402,
24591,
1163,
346,
309,
476,
1007,
387,
352,
1024,
285,
9446,
326,
544,
253,
4498,
5032,
556,
581,
273,
253,
954,
8913,
267,
4564,
1641,
275,
253,
2892,
273,
1684,
3440,
964,
1292,
352,
671,
4428,
690,
273,
253,
5962,
5697,
964,
496,
247,
14338,
1039,
1157,
326,
3133,
281,
789,
964,
1310,
368,
755,
667,
1039,
5536,
670,
841,
1841,
1157,
368,
1053,
686,
85,
13791,
964,
1292,
604,
368,
686,
250,
19153,
390,
4710,
12594,
670,
352,
1157,
840,
368,
513,
964,
2064,
686,
84,
581,
273,
253,
25286,
265,
309,
686,
306,
1705,
281,
2426,
342,
964,
346,
4928,
187,
426,
426,
20002,
426,
426,
4928,
187,
37405,
1157,
253,
2626,
2014,
432,
380,
29092,
19128,
369,
5486,
281,
320,
253,
4498,
346,
4410,
7061,
44102,
10079,
346,
1157,
533,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
369,
4439,
3185,
1157,
275,
4223,
12034,
964,
380,
2014,
369,
4439,
327,
818,
1214,
14,
33,
16416,
1157,
1249,
1214,
14,
33,
16416,
1157,
31392,
285,
3437,
2014,
21453,
964,
9064,
378,
1214,
14,
33,
7123,
497,
12819,
327,
253,
2014,
1157,
1690,
346,
23752,
24161,
6865,
346,
1157,
346,
16309,
285,
7284,
346,
1157,
285,
346,
26048,
383,
38104,
346,
1157,
3707,
323,
253,
818,
1214,
14,
33,
16416,
3727,
1157,
534,
760,
12819,
253,
6158,
767,
11411,
964,
380,
1249,
1214,
14,
33,
16416,
2014,
12819,
346,
23752,
24161,
6865,
346,
327,
1930,
329,
273,
253,
1924,
313,
5747,
1146,
247,
346,
378,
1214,
14,
33,
1930,
346
] |
king, Our words. "
This time, the Burmese king received the imperial envoys but still refused to submit. ( The Burmese chronicles say that the king was so insulted that he had the envoys executed. But both Burmese inscriptional evidence and Yuan records indicate that the envoys were not executed. ) At any rate, the imperial envoys did not get back to Yunnan in due time. The newly formed Yunnan government sent another delegation to investigate the whereabouts of the delegation, but the delegation could not reach Pagan because of an ongoing rebellion en route.
= = = Mongol consolidation of borderlands ( 1275 – 76 ) = = =
Meanwhile, in 1274, the former Dali Kingdom was officially reorganized as the Province of Yunnan, with Sayyid Ajjal Shams al @-@ Din Omar as governor. In May 1275, the governor sent a report to the emperor stating that the embassy had not returned ; that the Burmese evidently had no intention of submitting ; and that war was the only way forward.
But the emperor rejected an outright invasion. Just coming off a disastrous Japanese campaign, the emperor was unwilling to commit the central government troops to what he considered a low priority affair. He was now focused on delivering the final blow against the Song ; the emperor ordered the Yunnan provincial army to secure the borderlands in order to block the escape path of the Song refugees. He also sanctioned a limited border war if Pagan contested the takeover. As planned, the Yunnan army proceeded to consolidate the borderlands in 1275 – 76. ( Elsewhere, the main Mongol armies had captured most of the Song territory by 1276. )
By 1277, at least one Burmese vassal state named " Gold Teeth " ( modern Yingjiang ) had submitted to the Mongols. Like in 1272, the Burmese government responded by sending an army to reclaim the rebellious state ; but unlike in 1272, the Mongols had posted a sizable garrison there. Though it was ultimately under Mongol command, many of the officers and most of the soldiers of the garrison were Turkic @-@ speaking peoples or people from the further west : Turks from Samarkand, Bukhara, Merv and Nishapur, but also captive soldiers from the Persian Khwarazmid empire, the Kipchaks, and even Bulgars from the lower Volga.
= = Border war ( 1277 – 78 ) = =
What followed was a border war in 1277 – 78. It was reported mainly in the Yuan dynasty chronicle and the travelogue of Marco Polo. Although the Burmese chronicles have no record of the border war, a 1278 Burmese inscription mentions the army's defeat at Ngasaunggyan. The Mongol accounts of the border war contain certain errors of location and numbers although the overall narrative is probably accurate.
= = = Battle of Ngasaunggyan = = =
According to the Yuan dynasty chronicle and Marco Polo's accounts, a Burmese army " invaded " the Mongol territory of Gold Teeth, and was defeated by the Mongol army in April 1277. The battle took place either at the Vochang valley ( in present @-@ day Baoshan Prefecture ) or 110 km southwest at Kanngai ( present @-@ day Yingjiang, Dehong Prefecture ), which the Burmese called Ngasaunggyan.
The Yuan Chronicle reports that only 700 men defeated a Burmese army of 40 @,@ 000 to 50 @,@ 000 with 10 @,@ 000 horses and 800 elephants. It also reports only one Mongol was killed, in trying to catch an elephant. According to Marco Polo, the Mongol army consisted of 12 @,@ 000 mounted archers, and the Burmese army numbered 60 @,@ 000 men with 2000 elephants, " on each of which was set a tower of timber, well @-@ framed and strong, and carrying from 12 to 16 well @-@ armed fighting men. " Even then, the 40 @,@ 000 to 60 @,@ 000 figures of the Burmese army strength were likely eye estimates and may still be too high ; the Mongols may have erred " on the side of generosity " not to " diminish their glory in defeating superior numbers. "
According to Marco Polo's account, in the early stages of the battle, the Turkish and Mongol horsemen " took such fright at the sight of the elephants that they would not be got to face the foe, but always swerved and turned back, " while the Burmese forces pressed on. But the Mongol commander Huthukh did not panic ; he ordered his troops to dismount, and from the cover of the nearby treeline, aim their bows directly at the advancing elephants. The Mongol archers'arrows threw the animals into such pain that they fled.
= = = Raid of Kaungsin = = =
The Mongol army pressed on after the monsoon season. In the following dry season of 1277 – 78, c. December 1277, a Mongol army of 3800 led by Nasr al @-@ Din, son of Gov. Sayyid Ajjal, advanced to Kaungsin, which defended the Bhamo Pass. They occupied the fort and destroyed a large number of abandoned stockades. But they found the heat excessive and returned.
= = Interlude ( 1278 – 83 ) = =
Despite the Mongol military success, the control of the borderlands remained contested. Pagan did not relinquish its claim to the frontier regions, and the Burmese, apparently taking advantage of Mongol preoccupations elsewhere, rebuilt their forts at Kaungsin and Ngasaunggyan later in 1278, posting permanent garrisons commanded by Einda Pyissi. But their control was short @-@ lived. The Great Khan's attention turned to Southeast Asia once more in 1281. He had had mixed success : his vaunted forces had finished off the last of the Song in 1279 but had again failed to take Japan in 1281. That year, the Mongol emperor sent another mission to Pagan, demanding tribute yet again. The Burmese king was to send his ten senior ministers accompanied by one thousand cavalry officers to the emperor's court. ( With Champa, the emperor summoned the king of Champa himself to Beijing. )
At Pagan, Narathihapate deliberated with his court for an appropriate response but ultimately refused to submit. The Burmese court may have been counting on another limited border war but the emperor now ordered an invasion of northern Burma. ( He also ordered an invasion of Champa, whose king too had refused to submit. ) The Burmese king's troubles did not go unnoticed elsewhere in the kingdom. In the same year, a usurper named Wareru seized the southern port city of Martaban ( Mottama ) by killing its Pagan @-@ appointed governor. Although the king's three sons were viceroys of the nearby Lower Burma cities ( in Bassein ( Pathein ), Prome ( Pyay ), and Dala ), the king, preoccupied with much more serious threat in the north, did not ( or could not ) take any action on Martaban.
Throughout 1282, the Mongol command made preparations for the upcoming invasions of Champa and northern Burma. The objective of the Burma campaign was to take over northern Burma but no further ; the emperor did not sanction an attack on Pagan itself. At least one army consisted of 14 @,@ 000 men of the erstwhile Persian Khwarezmid Empire under the command of Yalu Beg was sent to Yunnan to reinforce the Burma invasion force, which again was made up of Turks and other central Asians. On the Burmese side, the king managed to raise an army although given his low standing with his vassals, he probably could not have raised a large one. By mid @-@ 1283, a Burmese army led by generals Ananda Pyissi and Yanda Pyissi was deployed at a fort at Ngasaunggyan.
= = Invasion ( 1283 – 85 ) = =
= = = Battle of Ngasaunggyan ( 1283 ) = = =
The invasion began on 22 September 1283. Prince Sangqudar was the commander @-@ in @-@ chief of the invasion force ; his deputies were Vice Governor Taipn, and commander Yagan Tegin. The Mongol armies marched to the border in two columns. One column advanced along the Taping River using over 200 boats ; the other proceeded by land and joined the first column at the Burmese fort at Ngasaunggyan. The Burmese chronicles report an overwhelming number of Mongol forces laying siege to the fort although their numbers are greatly exaggerated. ( The chronicles say that the Burmese army numbered 400 @,@ 000 men while the Mongol army numbered 20 million men and 6 million horses. ) The Burmese withstood the siege for over two months but the fort fell on 3 December 1283.
= = = Invasion of northern Burma = = =
The defeat at Ngasaunggyan broke the back of Burmese defenses. The Burmese army lost several thousand men as well as senior commanders. Kaungsin, the next fort inline, fell just six days later on 9 December 1283. The Mongol sources say that the | wikitext_103 | [
6963,
1157,
3824,
3000,
964,
346,
2490,
831,
673,
1157,
253,
7634,
78,
3248,
6963,
2959,
253,
21474,
546,
5711,
656,
533,
1335,
9284,
281,
11929,
964,
313,
380,
7634,
78,
3248,
6722,
868,
1333,
326,
253,
6963,
369,
594,
20423,
264,
326,
344,
574,
253,
546,
5711,
656,
11407,
964,
1292,
1097,
7634,
78,
3248,
275,
3866,
1593,
1941,
285,
50051,
5861,
5224,
326,
253,
546,
5711,
656,
497,
417,
11407,
964,
2387,
2058,
667,
2281,
1157,
253,
21474,
546,
5711,
656,
858,
417,
755,
896,
281,
714,
4462,
266,
275,
1955,
673,
964,
380,
9841,
4447,
714,
4462,
266,
2208,
2197,
1529,
31896,
281,
7409,
253,
49924,
273,
253,
31896,
1157,
533,
253,
31896,
812,
417,
3986,
367,
12043,
984,
273,
271,
10800,
32480,
546,
7622,
964,
4928,
187,
426,
426,
426,
31121,
311,
34889,
273,
5680,
6056,
313,
1249,
1976,
1108,
10909,
2387,
426,
426,
426,
4928,
187,
16257,
1157,
275,
1249,
3566,
1157,
253,
3438,
399,
8952,
11491,
369,
15335,
294,
34092,
347,
253,
18324,
273,
714,
4462,
266,
1157,
342,
21882,
90,
301,
329,
22492,
267,
1608,
1317,
355,
1214,
14,
33,
34511,
38900,
347,
14176,
964,
496,
2552,
1249,
1976,
1157,
253,
14176,
2197,
247,
1304,
281,
253,
26390,
14851,
326,
253,
34202,
574,
417,
4895,
3706,
326,
253,
7634,
78,
3248,
28668,
574,
642,
8208,
273,
29315,
3706,
285,
326,
2137,
369,
253,
760,
1039,
3579,
964,
2490,
1292,
253,
26390,
10945,
271,
30227,
11492,
964,
3771,
3551,
745,
247,
37359,
6692,
4544,
1157,
253,
26390,
369,
27086,
281,
4514,
253,
4275,
2208,
10824,
281,
752,
344,
2783,
247,
1698,
11674,
18830,
964,
754,
369,
1024,
7106,
327,
18723,
253,
2457,
8230,
1411,
253,
16865,
3706,
253,
26390,
6960,
253,
714,
4462,
266,
25432,
8544,
281,
7895,
253,
5680,
6056,
275,
1340,
281,
2972,
253,
8773,
1854,
273,
253,
16865,
19382,
964,
754,
671,
49215,
247,
3710,
5680,
2137,
604,
367,
12043,
30983,
253,
48896,
964,
1284,
9355,
1157,
253,
714,
4462,
266,
8544,
20311,
281,
16932,
366,
253,
5680,
6056,
275,
1249,
1976,
1108,
10909,
964,
313,
32867,
2811,
1157,
253,
2022,
31121,
311,
29894,
574,
10848,
954,
273,
253,
16865,
12785,
407,
1249,
3121,
964,
2387,
2490,
2896,
1249,
2357,
1157,
387,
1878,
581,
7634,
78,
3248,
362,
515,
267,
1375,
4907,
346,
7284,
2745,
678,
346,
313,
4980,
714,
272,
36492,
2387,
574,
9262,
281,
253,
31121,
3017,
964,
6975,
275,
1249,
3547,
1157,
253,
7634,
78,
3248,
2208,
10974,
407,
10430,
271,
8544,
281,
294,
7041,
253,
25789,
784,
1375,
3706,
533,
12401,
275,
1249,
3547,
1157,
253,
31121,
3017,
574,
9269,
247,
256,
12729,
49564,
627,
964,
11474,
352,
369,
9142,
762,
31121,
311,
3923,
1157,
1142,
273,
253,
6251,
285,
954,
273,
253,
9647,
273,
253,
49564,
497,
14901,
280,
1214,
14,
33,
8288,
22132,
390,
952,
432,
253,
2007,
8935,
1163,
47563,
432,
5769,
782,
395,
1157,
378,
2788,
73,
4595,
1157,
353,
677,
285,
427,
763,
522,
321,
1157,
533,
671,
37435,
9647,
432,
253,
31534,
15858,
7523,
1370,
7893,
20986,
1157,
253,
611,
532,
348,
8765,
1157,
285,
1014,
13289,
72,
1032,
432,
253,
2406,
6845,
2485,
964,
4928,
187,
426,
426,
26580,
2137,
313,
1249,
2357,
1108,
10523,
2387,
426,
426,
4928,
187,
1737,
3560,
369,
247,
5680,
2137,
275,
1249,
2357,
1108,
10523,
964,
733,
369,
2361,
7194,
275,
253,
50051,
34526,
20600,
2024,
285,
253,
4288,
14873,
273,
28712,
3130,
80,
964,
4129,
253,
7634,
78,
3248,
6722,
868,
452,
642,
1924,
273,
253,
5680,
2137,
1157,
247,
1249,
3141,
7634,
78,
3248,
45676,
25957,
253,
8544,
686,
84,
13313,
387,
38495,
19924,
328,
1266,
8202,
964,
380,
31121,
311,
8553,
273,
253,
5680,
2137,
3831,
2176,
6332,
273,
4328,
285,
3904,
3738,
253,
4583,
14511,
310,
3164,
7899,
964,
4928,
187,
426,
426,
426,
15764,
273,
38495,
19924,
328,
1266,
8202,
426,
426,
426,
4928,
187,
4794,
281,
253,
50051,
34526,
20600,
2024,
285,
28712,
3130,
80,
686,
84,
8553,
1157,
247,
7634,
78,
3248,
8544,
346,
35909,
346,
253,
31121,
311,
12785,
273,
7284,
2745,
678,
1157,
285,
369,
16473,
407,
253,
31121,
311,
8544,
275,
4162,
1249,
2357,
964,
380,
6680,
2335,
1659,
2057,
387,
253,
657,
3770,
606,
17836,
313,
275,
1246,
1214,
14,
33,
1388,
11086,
375,
5582,
5729,
42459,
2387,
390,
9199,
10771,
31438,
387,
611,
1136,
72,
2284,
313,
1246,
1214,
14,
33,
1388,
714,
272,
36492,
1157,
1605,
73,
543,
5729,
42459,
2387,
1157,
534,
253,
7634,
78,
3248,
1925,
38495,
19924,
328,
1266,
8202,
964,
2490,
380,
50051,
35971,
5012,
326,
760,
18450,
1821,
16473,
247,
7634,
78,
3248,
8544,
273,
3387,
1214,
13,
33,
20181,
281,
2456,
1214,
13,
33,
20181,
342,
884,
1214,
13,
33,
20181,
12074,
285,
14212,
42322,
964,
733,
671,
5012,
760,
581,
31121,
311,
369,
5339,
1157,
275,
2820,
281,
5834,
271,
31865,
964,
4794,
281,
28712,
3130,
80,
1157,
253,
31121,
311,
8544,
14278,
273,
1249,
1214,
13,
33,
20181,
10877,
12423,
3398,
1157,
285,
253,
7634,
78,
3248,
8544,
31050,
3925,
1214,
13,
33,
20181,
1821,
342,
5307,
42322,
1157,
346,
327,
1016,
273,
534,
369,
873,
247,
15469,
273,
30578,
1157,
973,
1214,
14,
33,
29318,
285,
2266,
1157,
285,
8785,
432,
1249,
281,
1668,
973,
1214,
14,
33,
12360,
8615,
1821,
964,
346,
4952,
840,
1157,
253,
3387,
1214,
13,
33,
20181,
281,
3925,
1214,
13,
33,
20181,
8442,
273,
253,
7634,
78,
3248,
8544,
4757,
497,
2779,
5130,
8197,
285,
778,
1335,
320,
1512,
1029,
3706,
253,
31121,
3017,
778,
452,
14416,
346,
327,
253,
1930,
273,
42548,
346,
417,
281,
346,
37856,
616,
18735,
275,
38774,
8936,
3904,
964,
346,
2490,
4794,
281,
28712,
3130,
80,
686,
84,
2395,
1157,
275,
253,
2393,
8661,
273,
253,
6680,
1157,
253,
18416,
285,
31121,
311,
8815,
3767,
346,
2335,
824,
15872,
387,
253,
8184,
273,
253,
42322,
326,
597,
651,
417,
320,
1694,
281,
2454,
253,
47190,
1157,
533,
1900,
1863,
4994,
285,
3531,
896,
1157,
346,
1223,
253,
7634,
78,
3248,
5621,
13661,
327,
964,
1292,
253,
31121,
311,
17747,
388,
3097,
2788,
73,
858,
417,
18829,
3706,
344,
6960,
521,
10824,
281,
557,
16285,
1157,
285,
432,
253,
3835,
273,
253,
10151,
2578,
4115,
1157,
4388,
616,
270,
5811,
3587,
387,
253,
26441,
42322,
964,
380,
31121,
311,
12423,
3398,
686,
18159,
13222,
253,
5074,
715,
824,
3075,
326,
597,
18436,
964,
4928,
187,
426,
426,
426,
11605,
301,
273,
15366,
1947,
7432,
426,
426,
426,
4928,
187,
380,
31121,
311,
8544,
13661,
327,
846,
253,
1114,
38753,
2952,
964,
496,
253,
1563,
6079,
2952,
273,
1249,
2357,
1108,
10523,
1157,
260,
964,
4565,
1249,
2357,
1157,
247,
31121,
311,
8544,
273,
6480,
361,
3977,
407,
30672,
83,
355,
1214,
14,
33,
34511,
1157,
3347,
273,
21806,
15,
21882,
90,
301,
329,
22492,
267,
1157,
7269,
281,
15366,
1947,
7432,
1157,
534,
25860,
253,
378,
3964,
80,
11271,
964,
1583,
13598,
253,
7574,
285,
11069,
247,
1781,
1180,
273,
13966,
5739,
3355,
964,
1292,
597,
1119,
253,
4250,
13622,
285,
4895,
964,
4928,
187,
426,
426,
5383,
77,
2496,
313,
1249,
3141,
1108,
11439,
2387,
426,
426,
4928,
187,
9937,
253,
31121,
311,
4668,
2323,
1157,
253,
1453,
273,
253,
5680,
6056,
6376,
30983,
964,
367,
12043,
858,
417,
42289,
763,
697,
1750,
281,
253,
34642,
4811,
1157,
285,
253,
7634,
78,
3248,
1157,
8505,
3192,
5750,
273,
31121,
311,
638,
20774,
569,
11358,
1157,
38096,
616,
46805,
387,
15366,
1947,
7432,
285,
38495,
19924,
328,
1266,
8202,
1996,
275,
1249,
3141,
1157,
16920,
9928,
305,
3298,
10047,
26814,
407,
444,
17662,
8462,
739,
74,
964,
1292,
616,
1453,
369,
2159,
1214,
14,
33,
6940,
964,
380,
6495,
21128,
686,
84,
4116,
3531,
281,
29797,
10497,
2378,
625,
275,
1249,
3593,
964,
754,
574,
574,
6804,
2323,
1163,
521,
13460,
16218,
5621,
574,
6699,
745,
253,
1390,
273,
253,
16865,
275,
1249,
2787,
533,
574,
969,
4242,
281,
1379,
4047,
275,
1249,
3593,
964,
2064,
807,
1157,
253,
31121,
311,
26390,
2197,
1529,
7517,
281,
367,
12043,
1157,
17905,
27458,
2568,
969,
964,
380,
7634,
78,
3248,
6963,
369,
281,
5007,
521,
3578,
8474,
23885,
11704,
407,
581,
8014,
36248,
6251,
281,
253,
26390,
686,
84,
1302,
964,
313,
2726,
23431,
66,
1157,
253,
26390,
34150,
253,
6963,
273,
23431,
66,
2994,
281,
18496,
964,
2387,
2490,
2058,
367,
12043,
1157,
26417,
506,
6356,
522,
366,
12465,
456,
342,
521,
1302,
323,
271,
4569,
2380,
533,
9142,
9284,
281,
11929,
964,
380,
7634,
78,
3248,
1302,
778,
452,
644,
15496,
327,
1529,
3710,
5680,
2137,
533,
253,
26390,
1024,
6960,
271,
11492,
273,
11186,
7634,
785,
964,
313,
754,
671,
6960,
271,
11492,
273,
23431,
66,
1157,
3692,
6963,
1512,
574,
9284,
281,
11929,
964,
2387,
380,
7634,
78,
3248,
6963,
686,
84,
19408,
858,
417,
564,
440,
44120,
11358,
275,
253,
18794,
964,
496,
253,
1072,
807,
1157,
247,
441,
321,
468,
4907,
39128,
579,
17571,
253,
11053,
2245,
2846,
273,
5794,
23818,
313,
353,
1519,
2902,
2387,
407,
9811,
697,
367,
12043,
1214,
14,
33,
11162,
14176,
964,
4129,
253,
6963,
686,
84,
1264,
15196,
497,
15951,
2771,
656,
273,
253,
10151,
20672,
7634,
785,
8238,
313,
275,
8373,
34103,
313,
2790,
248,
249,
2387,
1157,
367,
5450,
313,
8462,
333,
2387,
1157,
285,
399,
7080,
2387,
1157,
253,
6963,
1157,
638,
32980,
342,
1199,
625,
4092,
4322,
275,
253,
6146,
1157,
858,
417,
313,
390,
812,
417,
2387,
1379,
667,
2250,
327,
5794,
23818,
964,
2490,
28786,
1249,
3507,
1157,
253,
31121,
311,
3923,
1160,
20724,
323,
253,
15146,
45052,
621,
273,
23431,
66,
285,
11186,
7634,
785,
964,
380,
8103,
273,
253,
7634,
785,
4544,
369,
281,
1379,
689,
11186,
7634,
785,
533,
642,
2007,
3706,
253,
26390,
858,
417,
25162,
271,
2983,
327,
367,
12043,
3139,
964,
2058,
1878,
581,
8544,
14278,
273,
1638,
1214,
13,
33,
20181,
1821,
273,
253,
2827,
296,
6050,
31534,
15858,
1935,
91,
7893,
13958,
762,
253,
3923,
273,
714,
267,
86,
34827,
369,
2197,
281,
714,
4462,
266,
281,
28432,
253,
7634,
785,
11492,
3490,
1157,
534,
969,
369,
1160,
598,
273,
47563,
285,
643,
4275,
1284,
2458,
964,
1623,
253,
7634,
78,
3248,
1930,
1157,
253,
6963,
7303,
281,
7164,
271,
8544,
3738,
1677,
521,
1698,
6306,
342,
521,
362,
515,
932,
1157,
344,
3164,
812,
417,
452,
5439,
247,
1781,
581,
964,
2896,
4260,
1214,
14,
33,
1249,
3245,
1157,
247,
7634,
78,
3248,
8544,
3977,
407,
39091,
743,
7447,
8462,
739,
74,
285,
714,
7447,
8462,
739,
74,
369,
18329,
387,
247,
7574,
387,
38495,
19924,
328,
1266,
8202,
964,
4928,
187,
426,
426,
17595,
4930,
313,
1249,
3245,
1108,
9330,
2387,
426,
426,
4928,
19668,
426,
426,
426,
15764,
273,
38495,
19924,
328,
1266,
8202,
313,
1249,
3245,
2387,
426,
426,
426,
4928,
187,
380,
11492,
3407,
327,
3307,
4397,
1249,
3245,
964,
12843,
38236,
371,
27083,
369,
253,
17747,
1214,
14,
33,
275,
1214,
14,
33,
7015,
273,
253,
11492,
3490,
3706,
521,
41108,
497,
17979,
15636,
15543,
532,
79,
1157,
285,
17747,
714,
12043,
308,
1956,
964,
380,
31121,
311,
29894,
31653,
281,
253,
5680,
275,
767,
9930,
964,
2596,
5084,
7269,
2112,
253,
308,
15609,
7121,
970,
689,
1052,
19750,
3706,
253,
643,
20311,
407,
2659,
285,
7416,
253,
806,
5084,
387,
253,
7634,
78,
3248,
7574,
387,
38495,
19924,
328,
1266,
8202,
964,
380,
7634,
78,
3248,
6722,
868,
1304,
271,
16400,
1180,
273,
31121,
311,
5621,
23157,
33758,
281,
253,
7574,
3738,
616,
3904,
403,
10260,
36074,
964,
313,
380,
6722,
868,
1333,
326,
253,
7634,
78,
3248,
8544,
31050,
9166,
1214,
13,
33,
20181,
1821,
1223,
253,
31121,
311,
8544,
31050,
1384,
3041,
1821,
285,
721,
3041,
12074,
964,
2387,
380,
7634,
78,
3248,
342,
6545,
253,
33758,
323,
689,
767,
2607,
533,
253,
7574,
6497,
327,
495,
4565,
1249,
3245,
964,
4928,
187,
426,
426,
426,
17595,
4930,
273,
11186,
7634,
785,
426,
426,
426,
4928,
187,
380,
13313,
387,
38495,
19924,
328,
1266,
8202,
9377,
253,
896,
273,
7634,
78,
3248,
25774,
964,
380,
7634,
78,
3248,
8544,
3663,
2067,
8014,
1821,
347,
973,
347,
8474,
39717,
964,
15366,
1947,
7432,
1157,
253,
1735,
7574,
13866,
1157,
6497,
816,
2800,
1897,
1996,
327,
898,
4565,
1249,
3245,
964,
380,
31121,
311,
4973,
1333,
326,
253
] |
Australian battalion became part of the combined Canadian, British, Australian, New Zealand, and Indian 1st Commonwealth Division. The second major battle took place during Operation Commando and occurred after the Chinese attacked a salient in a bend of the Imjin River. The 1st Commonwealth Division counter @-@ attacked on 3 October, capturing a number of objectives including Hill 355 and Hill 317 during the Battle of Maryang San ; after five days the Chinese retreated. Australian casualties included 20 dead and 104 wounded.
The belligerents then became locked in static trench warfare akin to the First World War, in which men lived in tunnels, redoubts, and sandbagged forts behind barbed wire defences. From 1951 until the end of the war, 3 RAR held trenches on the eastern side of the division's positions in the hills northeast of the Imjin River. Across from them were heavily fortified Chinese positions. In March 1952, Australia increased its ground commitment to two battalions, sending 1 RAR. This battalion remained in Korea for 12 months, before being replaced by 2 RAR in April 1953. The Australians fought their last battle during 24 – 26 July 1953, with 2 RAR holding off a concerted Chinese attack along the Samichon River and inflicting significant casualties for the loss of five killed and 24 wounded. Hostilities were suspended on 27 July 1953. 17 @,@ 808 Australians served during the war, with 341 killed, 1 @,@ 216 wounded and 30 captured.
= = = Malayan Emergency, 1950 – 60 = = =
The Malayan Emergency was declared on 18 June 1948, after three estate managers were murdered by members of the Malayan Communist Party ( MCP ). Australian involvement began in June 1950, when in response to a British request, six Lincolns from No. 1 Squadron and a flight of Dakotas from No. 38 Squadron arrived in Singapore to form part of the British Commonwealth Far East Air Force ( FEAF ). The Dakotas were subsequently used on cargo runs, troop movement, as well as paratroop and leaflet drops, while the Lincoln bombers carried out bombing raids against the Communist Terrorist ( CT ) jungle bases. The RAAF were particularly successful, and in one such mission known as Operation Termite, five Lincoln bombers destroyed 181 communist camps, killed 13 communists and forced one into surrender, in a joint operation with the RAF and ground troops. The Lincolns were withdrawn in 1958, and were replaced by Canberra bombers from No. 2 Squadron and CAC Sabres from No. 78 Wing. Based at RAAF Base Butterworth they also carried out a number ground attack missions against the guerrillas.
Australian ground forces were deployed to Malaya in October 1955 as part of the Far East Strategic Reserve. In January 1956, the first Australian ground forces were deployed on Malaysian peninsula, consisting of the 2nd Battalion, Royal Australian Regiment ( 2 RAR ). 2 RAR mainly participated in " mopping up " operations over the next 20 months, conducting extensive patrolling in and near the CT jungle bases, as part of 28th British Commonwealth Brigade. Contact with the enemy was infrequent and results small, achieving relatively few kills. 2 RAR left Malaysia October 1957 to be replaced by 3 RAR. 3 RAR underwent six weeks of jungle training and began driving MCP insurgents back into the jungle of Perak and Kedah. The new battalion extensively patrolled and was involved in food denial operations and ambushes. Again contact was limited, although 3 RAR had more success than its predecessor. By late 1959, operations against the MCP were in their final phase, and most communists had been pushed back and across the Thailand border. 3 RAR left Malaysia October 1959 and was replaced by 1 RAR. Though patrolling the border 1 RAR did not make contact with the insurgents, and in October 1960 it was replaced by 2 RAR, which stayed in Malaysia until August 1963. The Malayan Emergency officially ended on 31 July 1960.
Australia also provided artillery and engineer support, along with an air @-@ field construction squadron. The Royal Australian Navy also served in Malayan waters, firing on suspected communist positions between 1956 and 1957. The Emergency was the longest continued commitment in Australian military history ; 7 @,@ 000 Australians served and 51 died in Malaya — although only 15 were on operations — and another 27 were wounded.
= = = Military and Naval growth during the 1960s = = =
At the start of the 1960s, Prime Minister Robert Menzies greatly expanded the Australian military so that it could carry out the Government's policy of " Forward Defence " in South East Asia. In 1964, Menzies announced a large increase in defence spending. The strength of the Australian Army would be increased by 50 % over three years from 22 @,@ 000 to 33 @,@ 000 ; providing a full three @-@ brigade division with nine battalions. The RAAF and RAN would also both be increased by 25 %. In 1964, conscription or National Service was re @-@ introduced under the National Service Act, for selected 20 @-@ year @-@ olds based on date of birth, for a period of two years'continuous full @-@ time service ( the previous scheme having been suspended in 1959 ).
In 1961, three Charles F. Adams @-@ class destroyers were purchased from the United States to replace the ageing Q @-@ class destroyers. Traditionally, the RAN had purchased designs based on those of the Royal Navy and the purchase of American destroyers was significant. HMAS Perth and HMAS Hobart joined the fleet in 1965, followed by HMAS Brisbane in 1967. Other projects included the construction of six River @-@ class frigates, the conversion of the aircraft carrier HMAS Melbourne to an anti @-@ submarine role, the acquisition of ten Wessex helicopters, and the purchase of six Oberon @-@ class submarines.
The RAAF took delivery of their first Mirage fighters in 1967, equipping No. 3, No. 75 and No. 77 Squadrons with them. The service also received American F @-@ 111 strike aircraft, C @-@ 130 Hercules transports, P @-@ 3 Orion maritime reconnaissance aircraft and Italian Macchi trainers.
= = = Indonesia @-@ Malaysia Confrontation, 1962 – 66 = = =
The Indonesia @-@ Malaysia confrontation was fought from 1962 to 1966 between the British Commonwealth and Indonesia over the creation of the Federation of Malaysia, with the Commonwealth attempting to safeguard the security of the new state. The war remained limited, and was fought primarily on the island of Borneo, although a number of Indonesian seaborne and airborne incursions onto the Malay Peninsula did occur. As part of Australia's continuing military commitment to the security of Malaysia, army, naval and airforce units were based there as part of the Far East Strategic Reserve. Regardless the Australian government was wary of involvement in a war with Indonesia and initially limited its involvement to the defence of the Malayan peninsula only. On two occasions Australian troops from 3 RAR were used to help mop up infiltrators from seaborne and airborne incursions at Labis and Pontian, in September and October 1964.
Following these raids the government conceded to British and Malaysian requests to deploy an infantry battalion to Borneo. During the early phases, British and Malaysian troops had attempted only to control the Malaysian / Indonesian border, and to protect population centres. However, by the time the Australian battalion deployed the British had decided on more aggressive action, crossing the border into Kalimantan to obtain information and conduct ambushes to force the Indonesians to remain on the defensive, under the codename Operation Claret. The fighting took place in mountainous, jungle @-@ clad terrain, and a debilitating climate, with operations characterised by the extensive use of company bases sited along the border, cross @-@ border operations, the use of helicopters for troop movement and resupply, and the role of human and signals intelligence to determine enemy movements and intentions.
3 RAR deployed to Borneo in March 1965, and served in Sarawak until the end of July, operating on both sides of the border. The battalion had four major contacts with Indonesian forces and several smaller ones — including at Sungei Koemba, Kindau and Babang during which they inflicted heavy casualties on the Indonesians — as well as suffering casualties in two mine incidents. 4 RAR served a less @-@ eventful tour between April and August 1966, and also operated over the border, successfully clashing with the Indonesians on a number of occasions. A squadron of the Special Air Service Regiment ( SASR ) was also deployed in 1965 and again in 1966, taking part in cross @-@ border operations and inflicting significant casualties on the Indonesians, even though they were often tasked with covert reconnaissance. Other units included artillery and engineers, while a number of RAN ships were involved in shelling Indonesian positions in Borneo and in repelling infiltrators in the Singapore Strait. The RAAF played a relatively minor role, although it would have been used far more extensively had the war escalated.
Operations in Borneo were extremely sensitive and they received little press coverage in Australia, while official acknowledgement of involvement in cross @-@ border missions only occurred in 1996. Following a military coup in Indonesia in early 1966 which brought General Suharto to power, a peace treaty was signed in August 1966 which ended the conflict. 3 @,@ 500 Australians served during Confrontation ; casualties included 16 dead, with seven killed in action and eight wounded.
= = = Vietnam War, 1962 – 73 = = =
Australia's involvement in the Vietnam War was driven largely by the rise of communism in Southeast | wikitext_103 | [
9943,
40716,
3395,
629,
273,
253,
5678,
9462,
1157,
4782,
1157,
9943,
1157,
1457,
12123,
1157,
285,
5396,
337,
296,
16342,
9333,
964,
380,
1273,
2201,
6680,
2335,
1659,
1309,
24636,
11293,
6575,
285,
5866,
846,
253,
5628,
13964,
247,
43066,
275,
247,
23104,
273,
253,
3173,
37525,
7121,
964,
380,
337,
296,
16342,
9333,
4828,
1214,
14,
33,
13964,
327,
495,
4437,
1157,
26475,
247,
1180,
273,
16566,
1690,
7061,
26033,
285,
7061,
31004,
1309,
253,
15764,
273,
6393,
606,
5003,
3706,
846,
2620,
1897,
253,
5628,
46047,
964,
9943,
32853,
2908,
1384,
3846,
285,
12131,
16545,
964,
2490,
380,
270,
5327,
41377,
84,
840,
3395,
12623,
275,
4228,
32775,
27205,
33917,
281,
253,
3973,
3645,
3660,
1157,
275,
534,
1821,
6940,
275,
37285,
1157,
2502,
276,
67,
1641,
1157,
285,
7537,
22738,
2400,
46805,
3212,
2534,
3026,
6371,
809,
2979,
964,
4325,
25124,
1919,
253,
990,
273,
253,
2137,
1157,
495,
416,
1277,
2918,
44297,
327,
253,
14730,
1930,
273,
253,
9025,
686,
84,
6887,
275,
253,
19607,
29510,
273,
253,
3173,
37525,
7121,
964,
39635,
432,
731,
497,
11306,
50251,
5628,
6887,
964,
496,
3919,
24652,
1157,
6976,
2559,
697,
3216,
11847,
281,
767,
11750,
267,
621,
1157,
10430,
337,
416,
1277,
964,
831,
40716,
6376,
275,
9733,
323,
1249,
2607,
1157,
1078,
1146,
7932,
407,
374,
416,
1277,
275,
4162,
24113,
964,
380,
45373,
13465,
616,
1390,
6680,
1309,
2164,
1108,
3436,
4163,
24113,
1157,
342,
374,
416,
1277,
5877,
745,
247,
12699,
264,
5628,
2983,
2112,
253,
5769,
469,
251,
7121,
285,
2192,
663,
1076,
1534,
32853,
323,
253,
2957,
273,
2620,
5339,
285,
2164,
16545,
964,
19005,
3191,
497,
14116,
327,
3435,
4163,
24113,
964,
1722,
1214,
13,
33,
854,
2904,
45373,
5608,
1309,
253,
2137,
1157,
342,
36076,
5339,
1157,
337,
1214,
13,
33,
24521,
16545,
285,
1884,
10848,
964,
4928,
187,
426,
426,
426,
5979,
26782,
28060,
1157,
13918,
1108,
3925,
426,
426,
426,
4928,
187,
380,
5979,
26782,
28060,
369,
8884,
327,
1283,
3978,
22557,
1157,
846,
1264,
8304,
15071,
497,
21021,
407,
2758,
273,
253,
5979,
26782,
22356,
7021,
313,
40941,
2387,
964,
9943,
10171,
3407,
275,
3978,
13918,
1157,
672,
275,
2380,
281,
247,
4782,
2748,
1157,
2800,
418,
1763,
311,
2224,
432,
1621,
15,
337,
36365,
285,
247,
8630,
273,
20469,
302,
284,
432,
1621,
15,
6480,
36365,
7244,
275,
16861,
281,
830,
629,
273,
253,
4782,
16342,
10351,
5791,
6037,
10627,
313,
20015,
9006,
2387,
964,
380,
20469,
302,
284,
497,
9674,
908,
327,
18826,
6613,
1157,
34883,
4866,
1157,
347,
973,
347,
1061,
35078,
412,
285,
10617,
1059,
15323,
1157,
1223,
253,
15915,
42504,
4824,
562,
25485,
39395,
1411,
253,
22356,
31199,
382,
313,
7403,
2387,
31500,
14395,
964,
380,
416,
2446,
39,
497,
3782,
5547,
1157,
285,
275,
581,
824,
7517,
1929,
347,
24636,
13302,
614,
1157,
2620,
15915,
42504,
11069,
26240,
33823,
19509,
1157,
5339,
2145,
1681,
1346,
285,
6726,
581,
715,
23277,
1157,
275,
247,
6036,
4254,
342,
253,
35069,
285,
3216,
10824,
964,
380,
418,
1763,
311,
2224,
497,
26924,
275,
23084,
1157,
285,
497,
7932,
407,
2615,
589,
376,
42504,
432,
1621,
15,
374,
36365,
285,
48187,
16336,
373,
432,
1621,
15,
10523,
28139,
964,
10635,
387,
416,
2446,
39,
11760,
30683,
11448,
597,
671,
4824,
562,
247,
1180,
3216,
2983,
21468,
1411,
253,
47903,
28769,
964,
2490,
9943,
3216,
5621,
497,
18329,
281,
5979,
12451,
275,
4437,
23438,
347,
629,
273,
253,
10351,
5791,
40456,
20460,
964,
496,
4247,
22716,
1157,
253,
806,
9943,
3216,
5621,
497,
18329,
327,
48191,
42816,
1157,
11253,
273,
253,
374,
2109,
35843,
1157,
10043,
9943,
30068,
313,
374,
416,
1277,
2387,
964,
374,
416,
1277,
7194,
13640,
275,
346,
5497,
2784,
598,
346,
5871,
689,
253,
1735,
1384,
2607,
1157,
16472,
9470,
869,
19891,
275,
285,
2822,
253,
7403,
31500,
14395,
1157,
347,
629,
273,
3349,
394,
4782,
16342,
34412,
964,
22373,
342,
253,
9054,
369,
2192,
38976,
285,
1543,
1355,
1157,
17170,
4942,
1643,
26280,
964,
374,
416,
1277,
1669,
23799,
4437,
23305,
281,
320,
7932,
407,
495,
416,
1277,
964,
495,
416,
1277,
13368,
2800,
3618,
273,
31500,
3733,
285,
3407,
6276,
40941,
36246,
592,
896,
715,
253,
31500,
273,
3545,
518,
285,
611,
264,
1240,
964,
380,
747,
40716,
18171,
869,
9095,
285,
369,
3206,
275,
2739,
13336,
5871,
285,
6861,
17379,
964,
10036,
3057,
369,
3710,
1157,
3738,
495,
416,
1277,
574,
625,
2323,
685,
697,
28934,
964,
2896,
3563,
22824,
1157,
5871,
1411,
253,
40941,
497,
275,
616,
2457,
3408,
1157,
285,
954,
1681,
1346,
574,
644,
10184,
896,
285,
2439,
253,
23174,
5680,
964,
495,
416,
1277,
1669,
23799,
4437,
22824,
285,
369,
7932,
407,
337,
416,
1277,
964,
11474,
869,
19891,
253,
5680,
337,
416,
1277,
858,
417,
1056,
3057,
342,
253,
36246,
592,
1157,
285,
275,
4437,
11994,
352,
369,
7932,
407,
374,
416,
1277,
1157,
534,
11791,
275,
23799,
1919,
4223,
19949,
964,
380,
5979,
26782,
28060,
15335,
7402,
327,
4562,
4163,
11994,
964,
2490,
6976,
671,
2530,
29923,
285,
16518,
1329,
1157,
2112,
342,
271,
2329,
1214,
14,
33,
1673,
5140,
40294,
964,
380,
10043,
9943,
13669,
671,
5608,
275,
5979,
26782,
12685,
1157,
14954,
327,
13282,
33823,
6887,
875,
22716,
285,
23305,
964,
380,
28060,
369,
253,
20088,
4821,
11847,
275,
9943,
4668,
2892,
3706,
818,
1214,
13,
33,
20181,
45373,
5608,
285,
8319,
4962,
275,
5979,
12451,
1905,
3738,
760,
1458,
497,
327,
5871,
1905,
285,
1529,
3435,
497,
16545,
964,
4928,
187,
426,
426,
426,
20884,
285,
29066,
3116,
1309,
253,
11994,
84,
426,
426,
426,
4928,
187,
2058,
253,
1265,
273,
253,
11994,
84,
1157,
12128,
8308,
6911,
9730,
91,
447,
10260,
11848,
253,
9943,
4668,
594,
326,
352,
812,
4459,
562,
253,
7295,
686,
84,
3646,
273,
346,
25956,
32831,
346,
275,
3684,
5791,
10497,
964,
496,
17926,
1157,
9730,
91,
447,
6138,
247,
1781,
2572,
275,
17147,
9100,
964,
380,
4757,
273,
253,
9943,
8663,
651,
320,
2559,
407,
2456,
2462,
689,
1264,
1107,
432,
3307,
1214,
13,
33,
20181,
281,
5922,
1214,
13,
33,
20181,
3706,
5277,
247,
2120,
1264,
1214,
14,
33,
43594,
9025,
342,
7457,
11750,
267,
621,
964,
380,
416,
2446,
39,
285,
416,
1539,
651,
671,
1097,
320,
2559,
407,
2030,
2462,
964,
496,
17926,
1157,
772,
3459,
390,
3313,
6631,
369,
294,
1214,
14,
33,
5611,
762,
253,
3313,
6631,
3162,
1157,
323,
4236,
1384,
1214,
14,
33,
807,
1214,
14,
33,
1711,
84,
1754,
327,
3522,
273,
4201,
1157,
323,
247,
2180,
273,
767,
1107,
686,
5415,
2120,
1214,
14,
33,
673,
2579,
313,
253,
2045,
6974,
1907,
644,
14116,
275,
22824,
2387,
964,
2490,
496,
21054,
1157,
1264,
8444,
401,
15,
16026,
1214,
14,
33,
966,
6909,
398,
497,
9716,
432,
253,
1986,
2077,
281,
8171,
253,
43900,
1165,
1214,
14,
33,
966,
6909,
398,
964,
41283,
595,
1157,
253,
416,
1539,
574,
9716,
11809,
1754,
327,
1110,
273,
253,
10043,
13669,
285,
253,
7471,
273,
2448,
6909,
398,
369,
1534,
964,
20307,
1719,
44937,
285,
20307,
1719,
24756,
435,
7416,
253,
18500,
275,
18417,
1157,
3560,
407,
20307,
1719,
40767,
275,
17342,
964,
5131,
6493,
2908,
253,
5140,
273,
2800,
7121,
1214,
14,
33,
966,
48232,
684,
1157,
253,
9436,
273,
253,
9954,
10289,
20307,
1719,
21818,
281,
271,
3270,
1214,
14,
33,
35898,
2554,
1157,
253,
11931,
273,
3578,
26226,
11523,
43204,
1157,
285,
253,
7471,
273,
2800,
38273,
251,
1214,
14,
33,
966,
26547,
1100,
964,
2490,
380,
416,
2446,
39,
2335,
6742,
273,
616,
806,
11777,
486,
20998,
275,
17342,
1157,
1298,
8201,
1621,
15,
495,
1157,
1621,
15,
6879,
285,
1621,
15,
10484,
26436,
9036,
342,
731,
964,
380,
2579,
671,
2959,
2448,
401,
1214,
14,
33,
11334,
9974,
9954,
1157,
330,
1214,
14,
33,
11084,
48816,
811,
4124,
1157,
367,
1214,
14,
33,
495,
2207,
279,
37223,
8756,
34056,
9954,
285,
9890,
5602,
4635,
47366,
964,
4928,
187,
426,
426,
426,
23340,
1214,
14,
33,
23799,
1716,
6342,
318,
1157,
20208,
1108,
9523,
426,
426,
426,
4928,
187,
380,
23340,
1214,
14,
33,
23799,
31233,
369,
13465,
432,
20208,
281,
19213,
875,
253,
4782,
16342,
285,
23340,
689,
253,
8869,
273,
253,
20369,
273,
23799,
1157,
342,
253,
16342,
13756,
281,
46126,
253,
3988,
273,
253,
747,
1375,
964,
380,
2137,
6376,
3710,
1157,
285,
369,
13465,
8558,
327,
253,
8930,
273,
378,
9584,
80,
1157,
3738,
247,
1180,
273,
43113,
396,
2735,
570,
285,
42864,
1485,
2244,
621,
4830,
253,
44558,
33489,
858,
2826,
964,
1284,
629,
273,
6976,
686,
84,
11440,
4668,
11847,
281,
253,
3988,
273,
23799,
1157,
8544,
1157,
25186,
285,
2329,
4774,
5085,
497,
1754,
627,
347,
629,
273,
253,
10351,
5791,
40456,
20460,
964,
31565,
253,
9943,
2208,
369,
38407,
273,
10171,
275,
247,
2137,
342,
23340,
285,
8523,
3710,
697,
10171,
281,
253,
17147,
273,
253,
5979,
26782,
42816,
760,
964,
1623,
767,
15530,
9943,
10824,
432,
495,
416,
1277,
497,
908,
281,
1361,
278,
412,
598,
23608,
2392,
432,
396,
2735,
570,
285,
42864,
1485,
2244,
621,
387,
10118,
261,
285,
29880,
757,
1157,
275,
4397,
285,
4437,
17926,
964,
2490,
11977,
841,
39395,
253,
2208,
30245,
281,
4782,
285,
48191,
9762,
281,
8745,
271,
32468,
40716,
281,
378,
9584,
80,
964,
6408,
253,
2393,
12475,
1157,
4782,
285,
48191,
10824,
574,
9919,
760,
281,
1453,
253,
48191,
1227,
43113,
5680,
1157,
285,
281,
4017,
3072,
23221,
964,
1723,
1157,
407,
253,
673,
253,
9943,
40716,
18329,
253,
4782,
574,
4425,
327,
625,
13847,
2250,
1157,
14270,
253,
5680,
715,
16527,
303,
386,
266,
281,
4044,
1491,
285,
2589,
6861,
17379,
281,
3490,
253,
18457,
2458,
281,
3464,
327,
253,
14397,
1157,
762,
253,
12738,
5116,
24636,
1639,
9668,
964,
380,
8615,
2335,
1659,
275,
11129,
528,
1157,
31500,
1214,
14,
33,
46017,
25061,
1157,
285,
247,
4274,
6133,
839,
7952,
1157,
342,
5871,
36719,
407,
253,
9470,
897,
273,
2567,
14395,
256,
959,
2112,
253,
5680,
1157,
2831,
1214,
14,
33,
5680,
5871,
1157,
253,
897,
273,
43204,
323,
34883,
4866,
285,
501,
1135,
314,
1157,
285,
253,
2554,
273,
1966,
285,
6298,
9260,
281,
3653,
9054,
11438,
285,
21546,
964,
2490,
495,
416,
1277,
18329,
281,
378,
9584,
80,
275,
3919,
18417,
1157,
285,
5608,
275,
9997,
1403,
518,
1919,
253,
990,
273,
4163,
1157,
6498,
327,
1097,
7123,
273,
253,
5680,
964,
380,
40716,
574,
1740,
2201,
12716,
342,
43113,
5621,
285,
2067,
4577,
4394,
1905,
1690,
387,
4146,
463,
74,
21009,
358,
5830,
1157,
29552,
1952,
285,
13209,
606,
1309,
534,
597,
39723,
5536,
32853,
327,
253,
18457,
2458,
1905,
347,
973,
347,
9958,
32853,
275,
767,
7477,
18048,
964,
577,
416,
1277,
5608,
247,
1679,
1214,
14,
33,
2362,
1020,
4892,
875,
4162,
285,
4223,
19213,
1157,
285,
671,
11658,
689,
253,
5680,
1157,
8379,
502,
3834,
342,
253,
18457,
2458,
327,
247,
1180,
273,
15530,
964,
329,
40294,
273,
253,
10396,
6037,
6631,
30068,
313,
33918,
51,
2387,
369,
671,
18329,
275,
18417,
285,
969,
275,
19213,
1157,
3192,
629,
275,
2831,
1214,
14,
33,
5680,
5871,
285,
2192,
663,
1076,
1534,
32853,
327,
253,
18457,
2458,
1157,
1014,
2167,
597,
497,
2223,
42603,
342,
40894,
8756,
34056,
964,
5131,
5085,
2908,
29923,
285,
19414,
1157,
1223,
247,
1180,
273,
416,
1539,
11811,
497,
3206,
275,
8135,
272,
43113,
6887,
275,
378,
9584,
80,
285,
275,
1234,
3485,
23608,
2392,
275,
253,
16861,
659,
12397,
964,
380,
416,
2446,
39,
4546,
247,
4942,
5884,
2554,
1157,
3738,
352,
651,
452,
644,
908,
2080,
625,
18171,
574,
253,
2137,
20092,
456,
964,
2490,
27037,
275,
378,
9584,
80,
497,
6685,
7996,
285,
597,
2959,
1652,
2315,
7031,
275,
6976,
1157,
1223,
3565,
9555,
20800,
273,
10171,
275,
2831,
1214,
14,
33,
5680,
21468,
760,
5866,
275,
8441,
964,
11977,
247,
4668,
17625,
275,
23340,
275,
2393,
19213,
534,
3982,
4214,
4137,
23110,
80,
281,
1612,
1157,
247,
6330,
23848,
369,
6704,
275,
4223,
19213,
534,
7402,
253,
7344,
964,
495,
1214,
13,
33,
6783,
45373,
5608,
1309,
1716,
6342,
318,
3706,
32853,
2908,
1668,
3846,
1157,
342,
5093,
5339,
275,
2250,
285,
4314,
16545,
964,
4928,
187,
426,
426,
426,
15732,
3660,
1157,
20208,
1108,
11087,
426,
426,
426,
4928,
187,
6976,
686,
84,
10171,
275,
253,
15732,
3660,
369,
8877,
8127,
407,
253,
6054,
273,
48709,
275,
29797
] |
AD 711.
= = = Altars = = =
Altar 5 is carved with two nobles, one of whom is probably Jasaw Chan K 'awiil I. They are performing a ritual using the bones of an important woman. Altar 5 was found in Complex N, which lies to the west of Temple III.
Altar 8 is sculpted with a bound captive. It was found within Complex P in Group H and is now in the Museo Nacional de Arqueología y Etnología in Guatemala City.
Altar 9 is associated with Stela 21 and bears the sculpture of a bound captive. It is located in front of Temple VI.
Altar 10 is carved with a captive tied to a scaffold. It is in the northern enclosure of Group Q, a twin @-@ pyramid complex and has suffered from erosion.
Altar 35 is a plain monument associated with Stela 43. The stela @-@ altar pair is centrally located at the base of the stairway of Temple IV.
= = = Lintels = = =
At Tikal, beams of sapodilla wood were placed as lintels spanning the inner doorways of temples. These are the most elaborately carved wooden lintels to have survived anywhere in the Maya region.
Lintel 3 from Temple IV was taken to Basel in Switzerland in the 19th century. It was in almost perfect condition and depicts Yik 'in Chan K 'awiil seated on a palanquin.
= = = Stelae = = =
Stelae are carved stone shafts, often sculpted with figures and hieroglyphs. A selection of the most notable stelae at Tikal follows :
Stela 1 dates to the 5th century and depicts the king Siyaj Chan K 'awiil II in a standing position.
Stela 4 is dated to AD 396, during the reign of Yax Nuun Ayiin after the intrusion of Teotihuacan in the Maya area. The stela displays a mix of Maya and Teotihuacan qualities, and deities from both cultures. It has a portrait of the king with the Underworld Jaguar God under one arm and the Mexican Tlaloc under the other. His helmet is a simplified version of the Teotihuacan War Serpent. Unusually for Maya sculpture, but typically for Teotihuacan, Yax Nuun Ayiin is depicted with a frontal face, rather than in profile.
Stela 5 was dedicated in 744 by Yik 'in Chan K 'awiil.
Stela 6 is a badly damaged monument dating to 514 and bears the name of the " Lady of Tikal " who celebrated the end of the 4th K 'atun in that year.
Stela 10 is twinned with Stela 12 but is badly damaged. It described the accession of Kaloomte'B 'alam in the early 6th century and earlier events in his career, including the capture of a prisoner depicted on the monument.
Stela 11 was the last monument ever erected at Tikal ; it was dedicated in 869 by Jasaw Chan K 'awiil II.
Stela 12 is linked to the queen known as the " Lady of Tikal " and king Kaloomte'B 'alam. The queen is described as performing the year @-@ ending rituals but the monument was dedicated in honor of the king.
Stela 16 was dedicated in 711, during the reign of Jasaw Chan K 'awiil I. The sculpture, including a portrait of the king and a hieroglyphic text, are limited to the front face of the monument. It was found in Complex N, west of Temple III.
Stela 18 was one of two stelae erected by Yax Nuun Ayiin I to celebrate the k 'atun @-@ ending of AD 396. It was re @-@ erected at the base of Temple 34, his funerary shrine.
Stela 19 was dedicated in 790 by Yax Nuun Ayiin II.
Stela 20 was found in Complex P, in Group H, and was moved to the Museo Nacional de Arqueología y Etnología in Guatemala City.
Stela 21 was dedicated in 736 by Yik 'in Chan K 'awiil. Only the bottom of the stela is intact, the rest having been mutilated in ancient times. The surviving sculpture is of fine quality, consisting of the feet of a figure and of accompanying hieroglyphic text. The stela is associated with Altar 9 and is located in front of Temple VI.
Stela 22 was dedicated in 771 by Yax Nuun Ayiin II in the northern enclosure of Group Q, a twin @-@ pyramid complex. The face of the figure on the stela has been mutilated.
Stela 23 was broken in antiquity and was re @-@ erected in a residential complex. The defaced portrait on the monument is that of the so @-@ called " Lady of Tikal ", a daughter of Chak Tok Ich 'aak II who became queen at the age of six but never ruled in her own right, being paired with male co @-@ rulers. It dates to the early 6th century.
Stela 24 was erected at the foot of Temple 3 in 810, accompanied by Altar 7. Both were broken into fragments in ancient times, although the name of Dark Sun survives on three fragments.
Stela 26 was found in the summit shrine of Temple 34, underneath a broken masonry altar. The monument had originally been erected at the base of the temple during the Early Classic period and was later broken, probably at the beginning of the Late Classic. Its remains were then interred within the temple shrine.
Stela 29 bears a Long Count ( 8 @.@ 12 @.@ 14 @.@ 8 @.@ 15 ) date equivalent to AD 292, the earliest surviving Long Count date from the Maya lowlands. The stela is also the earliest monument to bear the Tikal emblem glyph. It bears a sculpture of the king facing to the right, holding the head of an underworld jaguar god, one of the patron deities of the city. The stela was deliberately smashed during the 6th century or some time later, the upper portion was dragged away and dumped in a rubbish tip close to Temple III, to be uncovered by archaeologists in 1959.
Stela 30 is the first surviving monument to be erected after the Hiatus. Its style and iconography is similar to that of Caracol, one of the more important of Tikal's enemies.
Stela 31 is the accession monument of Siyaj Chan K 'awiil II, also bearing two portraits of his father, Yax Nuun Ayiin, as a youth dressed as a Teotihuacan warrior. He carries a spearthrower in one hand and bears a shield decorated with the face of Tlaloc, the Teotihuacan war god. In ancient times the sculpture was broken and the upper portion was moved to the summit of Temple 33 and ritually buried. Stela 31 has been described as the greatest Early Classic sculpture to survive at Tikal. A long hieroglyphic text is carved onto the back of the monument, the longest to survive from the Early Classic, which describes the arrival of Siyah K 'ak'at El Peru and Tikal in January 378. It was also the first stela at Tikal to be carved on all four faces.
Stela 32 is a fragmented monument with a foreign Teotihuacan @-@ style sculpture apparently depicting the lord of that city with the attributes of the central Mexican storm god Tlaloc, including his goggle eyes and tasselled headdress.
Stela 39 is a broken monument that was erected in the Lost World complex. The upper portion of the stela is missing but the lower portion shows the lower body and legs of Chak Tok Ich 'aak, holding a flint axe in his left hand. He is trampling the figure of a bound, richly dressed captive. The monument is dated to AD 376. The text on the back of the monument describes a bloodletting ritual to celebrate a Katun @-@ ending. The stela also names Chak Tok Ich 'aak I's father as K 'inich Muwaan Jol.
Stela 40 bears a portrait of Kan Chitam and dates to AD 468.
Stela 43 is paired with Altar 35. It is a plain monument at the base of the stairway of Temple IV.
= = = Burials = = =
Burial 1 is a tomb in the Lost World complex. A fine ceramic bowl was recovered from the tomb, with the handle formed from three @-@ dimensional head and neck of a bird emerging from the two @-@ dimensional body painted on the lid.
Burial 10 is the tomb of Yax Nuun Ayiin. It is located beneath Structure 34 in the North Acropolis. The tomb contained a rich array of offerings, including ceramic vessels and food, and nine youths were sacrificed to accompany the dead king. A dog was also entombed with the deceased king. Pots in the tomb were stuccoed and painted and many demonstrated a blend of Maya and Teotihuacan styles. Among the offerings was an incense @-@ burner in the shape of an elderly underworld god, sitting on a stool made of human bones and holding a severed head in his hands. The tomb was sealed with a corbel vault, then the pyramid | wikitext_103 | [
5446,
818,
883,
964,
4928,
187,
426,
426,
426,
21913,
1032,
426,
426,
426,
4928,
187,
1219,
17447,
608,
310,
27251,
342,
767,
642,
9143,
1157,
581,
273,
5207,
310,
3164,
500,
284,
1403,
26177,
611,
686,
33259,
300,
309,
15,
1583,
403,
9591,
247,
17651,
970,
253,
14910,
273,
271,
1774,
3416,
964,
1219,
17447,
608,
369,
1119,
275,
24154,
427,
1157,
534,
8696,
281,
253,
8935,
273,
17658,
6490,
964,
2490,
1219,
17447,
854,
310,
17481,
264,
342,
247,
3033,
37435,
964,
733,
369,
1119,
1561,
24154,
367,
275,
5901,
388,
285,
310,
1024,
275,
253,
10176,
80,
40322,
372,
1780,
1452,
862,
6336,
340,
444,
14543,
862,
6336,
275,
46560,
3228,
964,
2490,
1219,
17447,
898,
310,
2330,
342,
659,
7896,
3127,
285,
17267,
253,
34486,
273,
247,
3033,
37435,
964,
733,
310,
4441,
275,
2914,
273,
17658,
17128,
964,
2490,
1219,
17447,
884,
310,
27251,
342,
247,
37435,
12331,
281,
247,
32973,
964,
733,
310,
275,
253,
11186,
35552,
273,
5901,
1165,
1157,
247,
19661,
1214,
14,
33,
39694,
2570,
285,
556,
9606,
432,
32561,
964,
2490,
1219,
17447,
4791,
310,
247,
8342,
25754,
2330,
342,
659,
7896,
7652,
964,
380,
331,
7896,
1214,
14,
33,
30099,
4667,
310,
44411,
4441,
387,
253,
2613,
273,
253,
22298,
1106,
273,
17658,
8019,
964,
4928,
187,
426,
426,
426,
418,
565,
1241,
426,
426,
426,
4928,
187,
2058,
308,
1479,
267,
1157,
20435,
273,
35223,
351,
6077,
5534,
497,
4845,
347,
298,
565,
1241,
28369,
253,
6703,
3369,
1576,
273,
33013,
964,
2053,
403,
253,
954,
14883,
1523,
27251,
14872,
298,
565,
1241,
281,
452,
16139,
9825,
275,
253,
41151,
2919,
964,
2490,
418,
34291,
495,
432,
17658,
8019,
369,
2668,
281,
8373,
293,
275,
18908,
275,
253,
655,
394,
5331,
964,
733,
369,
275,
2761,
3962,
1617,
285,
31444,
714,
1479,
686,
249,
26177,
611,
686,
33259,
300,
22813,
327,
247,
5796,
266,
16573,
964,
4928,
187,
426,
426,
426,
659,
293,
3348,
426,
426,
426,
4928,
187,
659,
293,
3348,
403,
27251,
8805,
13755,
84,
1157,
2223,
17481,
264,
342,
8442,
285,
10549,
19644,
545,
84,
964,
329,
5438,
273,
253,
954,
16613,
331,
293,
3348,
387,
308,
1479,
267,
3637,
1163,
2490,
659,
7896,
337,
12282,
281,
253,
608,
394,
5331,
285,
31444,
253,
6963,
10283,
90,
1432,
26177,
611,
686,
33259,
300,
3719,
275,
247,
6306,
1899,
964,
2490,
659,
7896,
577,
310,
15483,
281,
5446,
38024,
1157,
1309,
253,
19485,
273,
714,
991,
24903,
328,
22587,
74,
249,
846,
253,
39482,
273,
2745,
302,
6356,
86,
317,
266,
275,
253,
41151,
2170,
964,
380,
331,
7896,
12646,
247,
5878,
273,
41151,
285,
2745,
302,
6356,
86,
317,
266,
18701,
1157,
285,
372,
1005,
432,
1097,
11048,
964,
733,
556,
247,
22946,
273,
253,
6963,
342,
253,
6166,
10186,
46174,
274,
2656,
762,
581,
4430,
285,
253,
16234,
308,
77,
267,
406,
762,
253,
643,
964,
3032,
26358,
310,
247,
21010,
2715,
273,
253,
2745,
302,
6356,
86,
317,
266,
3660,
4165,
21601,
964,
914,
27978,
323,
41151,
34486,
1157,
533,
5431,
323,
2745,
302,
6356,
86,
317,
266,
1157,
714,
991,
24903,
328,
22587,
74,
249,
310,
17253,
342,
247,
24459,
2454,
1157,
2581,
685,
275,
6222,
964,
2490,
659,
7896,
608,
369,
9940,
275,
818,
2031,
407,
714,
1479,
686,
249,
26177,
611,
686,
33259,
300,
964,
2490,
659,
7896,
721,
310,
247,
16426,
13572,
25754,
13597,
281,
40633,
285,
17267,
253,
1416,
273,
253,
346,
12688,
273,
308,
1479,
267,
346,
665,
19651,
253,
990,
273,
253,
577,
394,
611,
686,
255,
328,
275,
326,
807,
964,
2490,
659,
7896,
884,
310,
2500,
13172,
342,
659,
7896,
1249,
533,
310,
16426,
13572,
964,
733,
2529,
253,
30307,
273,
16527,
6188,
442,
686,
378,
686,
45321,
275,
253,
2393,
721,
394,
5331,
285,
4321,
3394,
275,
521,
5249,
1157,
1690,
253,
9232,
273,
247,
18897,
17253,
327,
253,
25754,
964,
2490,
659,
7896,
1903,
369,
253,
1390,
25754,
2455,
33230,
387,
308,
1479,
267,
3706,
352,
369,
9940,
275,
854,
2090,
407,
500,
284,
1403,
26177,
611,
686,
33259,
300,
3719,
964,
2490,
659,
7896,
1249,
310,
7939,
281,
253,
19538,
1929,
347,
253,
346,
12688,
273,
308,
1479,
267,
346,
285,
6963,
16527,
6188,
442,
686,
378,
686,
45321,
964,
380,
19538,
310,
2529,
347,
9591,
253,
807,
1214,
14,
33,
12365,
37455,
533,
253,
25754,
369,
9940,
275,
10390,
273,
253,
6963,
964,
2490,
659,
7896,
1668,
369,
9940,
275,
818,
883,
1157,
1309,
253,
19485,
273,
500,
284,
1403,
26177,
611,
686,
33259,
300,
309,
15,
380,
34486,
1157,
1690,
247,
22946,
273,
253,
6963,
285,
247,
10549,
19644,
545,
280,
2505,
1157,
403,
3710,
281,
253,
2914,
2454,
273,
253,
25754,
964,
733,
369,
1119,
275,
24154,
427,
1157,
8935,
273,
17658,
6490,
964,
2490,
659,
7896,
1283,
369,
581,
273,
767,
331,
293,
3348,
33230,
407,
714,
991,
24903,
328,
22587,
74,
249,
309,
281,
17019,
253,
465,
686,
255,
328,
1214,
14,
33,
12365,
273,
5446,
38024,
964,
733,
369,
294,
1214,
14,
33,
33230,
387,
253,
2613,
273,
17658,
5910,
1157,
521,
794,
254,
552,
45342,
964,
2490,
659,
7896,
655,
369,
9940,
275,
818,
2270,
407,
714,
991,
24903,
328,
22587,
74,
249,
3719,
964,
2490,
659,
7896,
1384,
369,
1119,
275,
24154,
367,
1157,
275,
5901,
388,
1157,
285,
369,
4395,
281,
253,
10176,
80,
40322,
372,
1780,
1452,
862,
6336,
340,
444,
14543,
862,
6336,
275,
46560,
3228,
964,
2490,
659,
7896,
3127,
369,
9940,
275,
818,
1812,
407,
714,
1479,
686,
249,
26177,
611,
686,
33259,
300,
964,
7214,
253,
5004,
273,
253,
331,
7896,
310,
15282,
1157,
253,
1551,
1907,
644,
2873,
31718,
275,
9129,
2069,
964,
380,
21548,
34486,
310,
273,
4030,
3290,
1157,
11253,
273,
253,
4669,
273,
247,
4677,
285,
273,
17909,
10549,
19644,
545,
280,
2505,
964,
380,
331,
7896,
310,
2330,
342,
1219,
17447,
898,
285,
310,
4441,
275,
2914,
273,
17658,
17128,
964,
2490,
659,
7896,
3307,
369,
9940,
275,
818,
3677,
407,
714,
991,
24903,
328,
22587,
74,
249,
3719,
275,
253,
11186,
35552,
273,
5901,
1165,
1157,
247,
19661,
1214,
14,
33,
39694,
2570,
964,
380,
2454,
273,
253,
4677,
327,
253,
331,
7896,
556,
644,
2873,
31718,
964,
2490,
659,
7896,
3495,
369,
7154,
275,
1331,
28780,
285,
369,
294,
1214,
14,
33,
33230,
275,
247,
16252,
2570,
964,
380,
809,
2575,
22946,
327,
253,
25754,
310,
326,
273,
253,
594,
1214,
14,
33,
1925,
346,
12688,
273,
308,
1479,
267,
346,
1157,
247,
6122,
273,
775,
518,
14391,
32185,
686,
66,
518,
3719,
665,
3395,
19538,
387,
253,
2363,
273,
2800,
533,
1620,
12969,
275,
617,
1211,
987,
1157,
1146,
18433,
342,
5086,
820,
1214,
14,
33,
36491,
964,
733,
12282,
281,
253,
2393,
721,
394,
5331,
964,
2490,
659,
7896,
2164,
369,
33230,
387,
253,
3174,
273,
17658,
495,
275,
854,
740,
1157,
11704,
407,
1219,
17447,
818,
964,
6295,
497,
7154,
715,
14251,
275,
9129,
2069,
1157,
3738,
253,
1416,
273,
14182,
4146,
46046,
327,
1264,
14251,
964,
2490,
659,
7896,
3436,
369,
1119,
275,
253,
21948,
45342,
273,
17658,
5910,
1157,
21281,
247,
7154,
278,
1187,
610,
30099,
964,
380,
25754,
574,
8927,
644,
33230,
387,
253,
2613,
273,
253,
16511,
1309,
253,
15643,
27015,
2180,
285,
369,
1996,
7154,
1157,
3164,
387,
253,
5068,
273,
253,
26502,
27015,
964,
7850,
4558,
497,
840,
734,
433,
1561,
253,
16511,
45342,
964,
2490,
659,
7896,
3285,
17267,
247,
8057,
8240,
313,
854,
1214,
15,
33,
1249,
1214,
15,
33,
1638,
1214,
15,
33,
854,
1214,
15,
33,
1458,
2387,
3522,
6425,
281,
5446,
35786,
1157,
253,
18353,
21548,
8057,
8240,
3522,
432,
253,
41151,
1698,
6056,
964,
380,
331,
7896,
310,
671,
253,
18353,
25754,
281,
8800,
253,
308,
1479,
267,
802,
12404,
33981,
964,
733,
17267,
247,
34486,
273,
253,
6963,
10268,
281,
253,
987,
1157,
5877,
253,
1481,
273,
271,
762,
10186,
16361,
37502,
7122,
1157,
581,
273,
253,
24081,
372,
1005,
273,
253,
2846,
964,
380,
331,
7896,
369,
21547,
38737,
1309,
253,
721,
394,
5331,
390,
690,
673,
1996,
1157,
253,
5170,
5110,
369,
22944,
1977,
285,
35611,
275,
247,
45785,
9092,
2810,
281,
17658,
6490,
1157,
281,
320,
27819,
407,
21101,
11644,
275,
22824,
964,
2490,
659,
7896,
1884,
310,
253,
806,
21548,
25754,
281,
320,
33230,
846,
253,
17459,
3144,
964,
7850,
3740,
285,
10651,
3756,
310,
2074,
281,
326,
273,
2639,
317,
311,
1157,
581,
273,
253,
625,
1774,
273,
308,
1479,
267,
686,
84,
13948,
964,
2490,
659,
7896,
4562,
310,
253,
30307,
25754,
273,
10283,
90,
1432,
26177,
611,
686,
33259,
300,
3719,
1157,
671,
12206,
767,
38317,
273,
521,
3392,
1157,
714,
991,
24903,
328,
22587,
74,
249,
1157,
347,
247,
8920,
14186,
347,
247,
2745,
302,
6356,
86,
317,
266,
27237,
964,
754,
15814,
247,
705,
5401,
736,
254,
275,
581,
1133,
285,
17267,
247,
12831,
25701,
342,
253,
2454,
273,
308,
77,
267,
406,
1157,
253,
2745,
302,
6356,
86,
317,
266,
2137,
7122,
964,
496,
9129,
2069,
253,
34486,
369,
7154,
285,
253,
5170,
5110,
369,
4395,
281,
253,
21948,
273,
17658,
5922,
285,
14567,
1230,
14205,
964,
659,
7896,
4562,
556,
644,
2529,
347,
253,
6459,
15643,
27015,
34486,
281,
11883,
387,
308,
1479,
267,
964,
329,
1048,
10549,
19644,
545,
280,
2505,
310,
27251,
4830,
253,
896,
273,
253,
25754,
1157,
253,
20088,
281,
11883,
432,
253,
15643,
27015,
1157,
534,
8631,
253,
13024,
273,
10283,
90,
1240,
611,
686,
518,
686,
387,
3599,
31805,
285,
308,
1479,
267,
275,
4247,
38316,
964,
733,
369,
671,
253,
806,
331,
7896,
387,
308,
1479,
267,
281,
320,
27251,
327,
512,
1740,
9365,
964,
2490,
659,
7896,
4567,
310,
247,
42283,
25754,
342,
247,
5639,
2745,
302,
6356,
86,
317,
266,
1214,
14,
33,
3740,
34486,
8505,
35668,
253,
17991,
273,
326,
2846,
342,
253,
12474,
273,
253,
4275,
16234,
9902,
7122,
308,
77,
267,
406,
1157,
1690,
521,
305,
17584,
2927,
285,
246,
515,
5911,
1481,
69,
560,
964,
2490,
659,
7896,
6931,
310,
247,
7154,
25754,
326,
369,
33230,
275,
253,
26872,
3645,
2570,
964,
380,
5170,
5110,
273,
253,
331,
7896,
310,
5816,
533,
253,
2406,
5110,
2722,
253,
2406,
2133,
285,
9246,
273,
775,
518,
14391,
32185,
686,
66,
518,
1157,
5877,
247,
892,
565,
44910,
275,
521,
1669,
1133,
964,
754,
310,
32926,
4906,
253,
4677,
273,
247,
3033,
1157,
6793,
314,
14186,
37435,
964,
380,
25754,
310,
15483,
281,
5446,
38516,
964,
380,
2505,
327,
253,
896,
273,
253,
25754,
8631,
247,
2614,
1059,
1076,
17651,
281,
17019,
247,
13593,
328,
1214,
14,
33,
12365,
964,
380,
331,
7896,
671,
4454,
775,
518,
14391,
32185,
686,
66,
518,
309,
686,
84,
3392,
347,
611,
686,
249,
469,
14554,
8754,
266,
500,
311,
964,
2490,
659,
7896,
3387,
17267,
247,
22946,
273,
20626,
775,
262,
312,
285,
12282,
281,
5446,
41029,
964,
2490,
659,
7896,
7652,
310,
18433,
342,
1219,
17447,
4791,
964,
733,
310,
247,
8342,
25754,
387,
253,
2613,
273,
253,
22298,
1106,
273,
17658,
8019,
964,
4928,
187,
426,
426,
426,
7634,
8075,
426,
426,
426,
4928,
187,
7634,
451,
337,
310,
247,
26908,
275,
253,
26872,
3645,
2570,
964,
329,
4030,
25757,
11636,
369,
12372,
432,
253,
26908,
1157,
342,
253,
6016,
4447,
432,
1264,
1214,
14,
33,
15759,
1481,
285,
7623,
273,
247,
12621,
14149,
432,
253,
767,
1214,
14,
33,
15759,
2133,
16264,
327,
253,
16486,
964,
2490,
7634,
451,
884,
310,
253,
26908,
273,
714,
991,
24903,
328,
22587,
74,
249,
964,
733,
310,
4441,
11834,
29593,
5910,
275,
253,
3729,
5192,
37489,
964,
380,
26908,
6221,
247,
6793,
3781,
273,
27278,
1157,
1690,
25757,
12671,
285,
2739,
1157,
285,
7457,
47072,
497,
31548,
281,
13920,
253,
3846,
6963,
964,
329,
4370,
369,
671,
994,
297,
3026,
342,
253,
24332,
6963,
964,
367,
1502,
275,
253,
26908,
497,
331,
22164,
80,
264,
285,
16264,
285,
1142,
5183,
247,
19310,
273,
41151,
285,
2745,
302,
6356,
86,
317,
266,
14957,
964,
9658,
253,
27278,
369,
271,
1485,
1215,
1214,
14,
33,
50078,
275,
253,
5281,
273,
271,
13988,
762,
10186,
7122,
1157,
7063,
327,
247,
32217,
1160,
273,
1966,
14910,
285,
5877,
247,
43805,
1481,
275,
521,
3564,
964,
380,
26908,
369,
18495,
342,
247,
944,
8382,
28395,
1157,
840,
253,
39694
] |
played against Westmorland County on 24 November, five had injuries. The squad comprised only 26 players, and the tourists were often struggling to field a side. Nevertheless, their heavy schedule continued ; on 30 November 1888 they left for Dublin, where a match had been organised against the Ireland national team.
= = Ireland, further English matches, and Wales = =
The Ireland fixture was played at Lansdowne Road, Dublin, on 1 December 1888. Both teams had a number of leading players out injured – the Irish were forced to make four changes to their original selection. Ireland led 3 – 0 at half @-@ time after scoring a converted try, but the Natives improved considerably in the second @-@ half, scoring four tries. Patrick Keogh scored the first two tries, and his play was praised by the local press. The third try scored was by Thomas Ellison after a counter @-@ attack by George Williams. The try was not converted, but the strong finish from the New Zealanders gave the visitors a 13 – 4 victory. The Irish press were surprised by the loss and strongly criticised their team, but Ireland did go on to defeat Wales two tries to nil in the 1889 Home Nations Championship. Following their defeat of Ireland, the Natives played Trinity College and then North of Ireland. The match against Trinity College was drawn 4 – 4, and despite Keogh not playing, the Native side played much better than their previous fixture. The team then travelled to Belfast, where they defeated North of Ireland 2 – 0 on 5 December ; scoring two tries to nil.
After returning to England, the Natives faced Lancashire in Manchester, where they lost 1 – 0. Two days later they drew with Batley Bulldogs, despite their opposition scoring five tries. Their next match was against Yorkshire, who were one of the strongest counties in the country, and went on to win the inaugural County Championship that season. Yorkshire fielded a weakened team, and were subsequently defeated 10 – 6 by the Natives, who scored six tries. After a further two victories, the team travelled to Wales, where they lost 3 – 0 to Llanelli, before facing Wales on 22 December.
At the start of the match the home crowd were fairly hostile towards the Welsh team due to fans of both Swansea and Llanelli feeling slighted by the lack of selection of their players. Four teams dominated Welsh international selection at the time, and out of the 15 @-@ man team only William Towers and William Bowen of Swansea and Dan Griffiths of Llanelli had been selected. The match was played in Swansea, and the lack of local players may have contributed to a poor crowd, with gate receipts of only £ 120 recorded. The crowd's hostility impacted on the players, and debutant Norman Biggs was " palpably nervous " at the start of the match. Biggs, aged 18 years and 49 days, became the youngest Welsh international player – a record he held until the debut of Tom Prydie in 2010. Despite the heckles aimed primarily at Biggs, Charlie Arthur and George Thomas, the Welsh team produced an excellent effort, especially from the forwards.
Towers scored the first Welsh try, which was converted by Jim Webb. The Natives replied with a spirited run by Ellison, but he failed to break through the Welsh defence. The tourists trailed even further after George Thomas scored a breakaway try frrm the half @-@ way line, which went some way to silence the heckles from the crowd. Webb, playing in out of position at full @-@ back, missed the conversion and then failed at a long distance goal from a mark. The Natives continued to push, with Elliot coming within five @-@ yards of the try line, and when Ellison did manage to cross the line he was carried back into the 25 @-@ yard line before he could touch down. In the second half Wales continued to push their advantage when Alexander Bland dribbled the ball into the Natives'25 ; this was collected by Sydney Nicholls, who managed to get the ball across the try line, allowing Jim Hannan to score. Warbrick for the Natives and Stadden for Wales both subsequently came close to scoring tries, but there were no further scores in the game.
The match was also of historical importance because of the Welsh tactics employed. In the 1886 Home Nations Championship Wales had trialled the four three @-@ quarter system, wherein the team would play with eight forwards rather than nine, and instead employ an extra centre three @-@ quarter. The system was deemed a failure and was particularly unpopular with star Welsh player Arthur Gould, whose formidable ability as a back allowed his club team Newport to retain the additional forward. With Gould working in the West Indies, Wales again tried the four three @-@ quarter system against the Natives, and its success saw the team permanently adopt the system. Within six years the other three Home Countries had adopted four three @-@ quarter style of play.
Before they left Wales, the Natives played Swansea and two other local clubs, Newport, and Cardiff. They defeated Swansea for their first win in Wales, and followed this up with a victory over Newport in front of 8 @,@ 000 spectators. They finished their Welsh matches, and the year, with a 4 – 1 loss to Cardiff in front of a partisan crowd.
= = Return to England = =
The side entered 1889 having played 36 matches for 22 wins and three draws. The Natives'play had improved throughout November and December following poorer form in their October matches ; positive press reports reflected this improvement. The team would go on to play a further 17 matches before their 16 February international against England. January started with a 4 – 1 loss to Bradford, during which 25 police officers were required to keep many of the 12 @,@ 000 spectators, many of them non @-@ paying, in order. This was followed by victories over Leeds Parish Church, Kirkstall, Brighouse Rangers, and Huddersfield. Following further matches against Stockport, Castleford, and Warrington, where the team drew, lost, then won, the side faced Yorkshire for a second time.
Yorkshire had been criticised in the press for fielding a weakened line @-@ up against the Natives when the sides first met in December. After the unexpected loss, Yorkshire were determined to make amends and a strong side was selected for the county, including Fred Bonsor, Richard Lockwood and John Willie Sutcliffe, all of whom would appear for England against the Natives later that season. Described as " knocked about " and " stale ", the Natives struggled to compete against such strong opposition, and Yorkshire scored three converted tries before a try to Ellison left the scores at 9 – 1 at half @-@ time. The second @-@ half was little better for the Natives ; they conceded a further two tries as well as a drop @-@ goal. The second of these tries was scored by Lockwood after he ran the ball from his own half. Ellison scored a converted try late in the match, but this didn 't prevent the Natives suffering their largest defeat of the tour : 16 – 4 to the Yorkshiremen. Ellison later described the match as " without a murmur, the biggest beating we received in our whole tour ".
After a victory over Spen Valley District, the team travelled west to play Somersetshire, Devonshire, Taunton, and Gloucestershire, and won all five games. The victory over Somerset was the New Zealanders'largest of the tour ; they scored nine tries in a 17 – 4 victory. Half @-@ back Keogh played outstandingly for the Natives, while the entire side demonstrated superior passing and combination to their opposition. Devonshire and Tauton suffered heavy defeats by the New Zealanders, before a strong Gloucestershire side was dismissed. After defeating Midland Counties, the Natives returned to London.
The team had two further matches before their international against England. The first was against one of the strongest clubs in England, Blackheath. Andrew Stoddart, who had toured New Zealand and Australia with the 1888 British Isles side, played for the club in their 9 – 3 defeat to the Natives. The New Zealanders won having scored four tries, including two by Keogh. Their next opposition was a United Services side mainly comprising Royal Navy players. The Natives were again victorious, this time 10 – 0. The match against Oxford University was postponed due to heavy frost, and so the team had a seven @-@ day break from playing – their longest of the tour.
= = England international = =
The match against England was causing the Natives'players and management problems before it had even begun. The team manager, Scott, was in dispute with the RFU over where the match should be played – the RFU were adamant that the match should take place at Blackheath's ground, but Scott wanted the game to proceed at The Oval, where a larger crowd, and therefore higher gate receipts, could be secured. The strictly amateur RFU establishment were already suspicious of the profit @-@ making motives of the Natives, and were unwilling to yield on the selection of venue. The RFU was also in dispute with the other Home Unions over the formation of the International Rugby Football Board ( IRFB ). Following a disputed try in an England – Scotland international match in 1888, the Scottish authorities had pushed for the establishment of an international body to oversee the game, but the RFU insisted that they would only join if they held a deciding vote, arguing that they deserved this as they were, they asserted, the senior body, and had the most member clubs. Ireland, Wales and Scotland consequently refused to play against England until 1891 | wikitext_103 | [
4546,
1411,
4255,
20014,
1373,
3928,
327,
2164,
4596,
1157,
2620,
574,
9478,
964,
380,
13487,
17224,
760,
3436,
3773,
1157,
285,
253,
24359,
497,
2223,
15586,
281,
1673,
247,
1930,
964,
12257,
1157,
616,
5536,
10130,
4821,
3706,
327,
1884,
4596,
44728,
597,
1669,
323,
24523,
1157,
835,
247,
3761,
574,
644,
29070,
1411,
253,
11011,
3872,
2285,
964,
4928,
187,
426,
426,
11011,
1157,
2007,
4383,
10129,
1157,
285,
15420,
426,
426,
4928,
187,
380,
11011,
34188,
369,
4546,
387,
46985,
69,
319,
570,
8669,
1157,
24523,
1157,
327,
337,
4565,
44728,
964,
6295,
6671,
574,
247,
1180,
273,
4283,
3773,
562,
11062,
1108,
253,
11596,
497,
6726,
281,
1056,
1740,
2544,
281,
616,
3236,
5438,
964,
11011,
3977,
495,
1108,
470,
387,
2716,
1214,
14,
33,
673,
846,
14755,
247,
11516,
1611,
1157,
533,
253,
427,
3993,
5520,
15455,
275,
253,
1273,
1214,
14,
33,
2716,
1157,
14755,
1740,
14177,
964,
15435,
6018,
43179,
11691,
253,
806,
767,
14177,
1157,
285,
521,
1132,
369,
26108,
407,
253,
1980,
2315,
964,
380,
2626,
1611,
11691,
369,
407,
7195,
9545,
1988,
846,
247,
4828,
1214,
14,
33,
2983,
407,
6086,
8757,
964,
380,
1611,
369,
417,
11516,
1157,
533,
253,
2266,
8416,
432,
253,
1457,
12123,
398,
3534,
253,
12942,
247,
2145,
1108,
577,
10170,
964,
380,
11596,
2315,
497,
9861,
407,
253,
2957,
285,
7052,
46581,
616,
2285,
1157,
533,
11011,
858,
564,
327,
281,
13313,
15420,
767,
14177,
281,
5296,
275,
253,
45272,
9067,
14726,
11218,
964,
11977,
616,
13313,
273,
11011,
1157,
253,
427,
3993,
4546,
31465,
6822,
285,
840,
3729,
273,
11011,
964,
380,
3761,
1411,
31465,
6822,
369,
8392,
577,
1108,
577,
1157,
285,
5747,
6018,
43179,
417,
4882,
1157,
253,
18199,
1930,
4546,
1199,
1805,
685,
616,
2045,
34188,
964,
380,
2285,
840,
29433,
281,
44867,
1157,
835,
597,
16473,
3729,
273,
11011,
374,
1108,
470,
327,
608,
4565,
3706,
14755,
767,
14177,
281,
5296,
964,
2490,
2732,
10884,
281,
5854,
1157,
253,
427,
3993,
11372,
26763,
1225,
603,
275,
17427,
1157,
835,
597,
3663,
337,
1108,
470,
964,
5761,
1897,
1996,
597,
12491,
342,
15103,
2205,
13289,
392,
14175,
1157,
5747,
616,
10266,
14755,
2620,
14177,
964,
7160,
1735,
3761,
369,
1411,
34421,
1157,
665,
497,
581,
273,
253,
19508,
21813,
275,
253,
2586,
1157,
285,
2427,
327,
281,
3330,
253,
40217,
3928,
11218,
326,
2952,
964,
34421,
1673,
264,
247,
33153,
2285,
1157,
285,
497,
9674,
16473,
884,
1108,
721,
407,
253,
427,
3993,
1157,
665,
11691,
2800,
14177,
964,
2732,
247,
2007,
767,
34158,
1157,
253,
2285,
29433,
281,
15420,
1157,
835,
597,
3663,
495,
1108,
470,
281,
418,
13409,
13890,
1157,
1078,
10268,
15420,
327,
3307,
4565,
964,
2490,
2058,
253,
1265,
273,
253,
3761,
253,
1728,
9539,
497,
9648,
21668,
4404,
253,
29630,
2285,
1955,
281,
7458,
273,
1097,
35359,
15681,
285,
418,
13409,
13890,
5471,
4512,
264,
407,
253,
3480,
273,
5438,
273,
616,
3773,
964,
7874,
6671,
14691,
29630,
5213,
5438,
387,
253,
673,
1157,
285,
562,
273,
253,
1458,
1214,
14,
33,
637,
2285,
760,
7252,
24819,
398,
285,
7252,
10427,
257,
273,
35359,
15681,
285,
5682,
38842,
84,
273,
418,
13409,
13890,
574,
644,
4236,
964,
380,
3761,
369,
4546,
275,
35359,
15681,
1157,
285,
253,
3480,
273,
1980,
3773,
778,
452,
9945,
281,
247,
4105,
9539,
1157,
342,
7394,
41271,
273,
760,
8157,
7346,
5950,
964,
380,
9539,
686,
84,
37429,
27857,
327,
253,
3773,
1157,
285,
11386,
386,
22497,
7967,
5943,
369,
346,
36385,
1598,
11219,
346,
387,
253,
1265,
273,
253,
3761,
964,
7967,
5943,
1157,
10652,
1283,
1107,
285,
7584,
1897,
1157,
3395,
253,
25423,
29630,
5213,
4760,
1108,
247,
1924,
344,
2918,
1919,
253,
11386,
273,
6270,
367,
610,
20875,
275,
4267,
964,
9937,
253,
36603,
868,
11205,
8558,
387,
7967,
5943,
1157,
16955,
15948,
285,
6086,
7195,
1157,
253,
29630,
2285,
4197,
271,
7126,
3434,
1157,
3340,
432,
253,
32856,
964,
2490,
24819,
398,
11691,
253,
806,
29630,
1611,
1157,
534,
369,
11516,
407,
8438,
34932,
964,
380,
427,
3993,
10017,
342,
247,
15009,
959,
1408,
407,
9545,
1988,
1157,
533,
344,
4242,
281,
2740,
949,
253,
29630,
17147,
964,
380,
24359,
1140,
4206,
1014,
2007,
846,
6086,
7195,
11691,
247,
2740,
12594,
1611,
1315,
1109,
253,
2716,
1214,
14,
33,
1039,
1386,
1157,
534,
2427,
690,
1039,
281,
10837,
253,
36603,
868,
432,
253,
9539,
964,
34932,
1157,
4882,
275,
562,
273,
1899,
387,
2120,
1214,
14,
33,
896,
1157,
9829,
253,
9436,
285,
840,
4242,
387,
247,
1048,
4181,
4736,
432,
247,
1616,
964,
380,
427,
3993,
4821,
281,
7450,
1157,
342,
49867,
3551,
1561,
2620,
1214,
14,
33,
11433,
273,
253,
1611,
1386,
1157,
285,
672,
9545,
1988,
858,
8722,
281,
2831,
253,
1386,
344,
369,
4824,
896,
715,
253,
2030,
1214,
14,
33,
15789,
1386,
1078,
344,
812,
5181,
1066,
964,
496,
253,
1273,
2716,
15420,
4821,
281,
7450,
616,
5750,
672,
13651,
378,
1373,
277,
725,
11046,
253,
4023,
715,
253,
427,
3993,
686,
2030,
3706,
436,
369,
5728,
407,
17361,
16982,
2555,
84,
1157,
665,
7303,
281,
755,
253,
4023,
2439,
253,
1611,
1386,
1157,
6941,
8438,
32766,
266,
281,
4868,
964,
3660,
67,
4662,
323,
253,
427,
3993,
285,
659,
1911,
257,
323,
15420,
1097,
9674,
2210,
2810,
281,
14755,
14177,
1157,
533,
627,
497,
642,
2007,
7363,
275,
253,
2165,
964,
2490,
380,
3761,
369,
671,
273,
9493,
6349,
984,
273,
253,
29630,
21041,
7091,
964,
496,
253,
48305,
9067,
14726,
11218,
15420,
574,
1195,
18859,
253,
1740,
1264,
1214,
14,
33,
7150,
985,
1157,
10646,
253,
2285,
651,
1132,
342,
4314,
32856,
2581,
685,
7457,
1157,
285,
3185,
2126,
271,
4465,
9145,
1264,
1214,
14,
33,
7150,
964,
380,
985,
369,
14320,
247,
4433,
285,
369,
3782,
46807,
342,
4177,
29630,
4760,
15948,
44511,
1157,
3692,
36418,
3745,
347,
247,
896,
4136,
521,
5453,
2285,
44786,
281,
13280,
253,
3081,
3579,
964,
2726,
44511,
2444,
275,
253,
4255,
44744,
1157,
15420,
969,
3597,
253,
1740,
1264,
1214,
14,
33,
7150,
985,
1411,
253,
427,
3993,
1157,
285,
697,
2323,
3047,
253,
2285,
21311,
5283,
253,
985,
964,
15092,
2800,
1107,
253,
643,
1264,
9067,
8240,
2246,
574,
8671,
1740,
1264,
1214,
14,
33,
7150,
3740,
273,
1132,
964,
2490,
9613,
597,
1669,
15420,
1157,
253,
427,
3993,
4546,
35359,
15681,
285,
767,
643,
1980,
15202,
1157,
44786,
1157,
285,
9858,
1648,
964,
1583,
16473,
35359,
15681,
323,
616,
806,
3330,
275,
15420,
1157,
285,
3560,
436,
598,
342,
247,
10170,
689,
44786,
275,
2914,
273,
854,
1214,
13,
33,
20181,
44173,
964,
1583,
6699,
616,
29630,
10129,
1157,
285,
253,
807,
1157,
342,
247,
577,
1108,
337,
2957,
281,
9858,
1648,
275,
2914,
273,
247,
37492,
9539,
964,
4928,
187,
426,
426,
16140,
281,
5854,
426,
426,
4928,
187,
380,
1930,
5966,
45272,
1907,
4546,
5540,
10129,
323,
3307,
14896,
285,
1264,
21354,
964,
380,
427,
3993,
686,
1132,
574,
5520,
4768,
4596,
285,
4565,
1563,
30560,
830,
275,
616,
4437,
10129,
3706,
2762,
2315,
5012,
11392,
436,
7756,
964,
380,
2285,
651,
564,
327,
281,
1132,
247,
2007,
1722,
10129,
1078,
616,
1668,
5080,
5213,
1411,
5854,
964,
4247,
3053,
342,
247,
577,
1108,
337,
2957,
281,
36890,
1157,
1309,
534,
2030,
3513,
6251,
497,
2424,
281,
1978,
1142,
273,
253,
1249,
1214,
13,
33,
20181,
44173,
1157,
1142,
273,
731,
1327,
1214,
14,
33,
10054,
1157,
275,
1340,
964,
831,
369,
3560,
407,
34158,
689,
39605,
38007,
6412,
1157,
22579,
296,
455,
1157,
2652,
798,
1312,
29629,
1157,
285,
388,
7937,
398,
3423,
964,
11977,
2007,
10129,
1411,
15725,
631,
1157,
18732,
4379,
1157,
285,
3660,
25915,
1157,
835,
253,
2285,
12491,
1157,
3663,
1157,
840,
1912,
1157,
253,
1930,
11372,
34421,
323,
247,
1273,
673,
964,
2490,
34421,
574,
644,
46581,
275,
253,
2315,
323,
1673,
272,
247,
33153,
1386,
1214,
14,
33,
598,
1411,
253,
427,
3993,
672,
253,
7123,
806,
1313,
275,
4565,
964,
2732,
253,
12439,
2957,
1157,
34421,
497,
3413,
281,
1056,
717,
1727,
285,
247,
2266,
1930,
369,
4236,
323,
253,
9635,
1157,
1690,
10852,
378,
790,
263,
1157,
7727,
19989,
5308,
285,
2516,
38916,
322,
307,
45024,
1157,
512,
273,
5207,
651,
3176,
323,
5854,
1411,
253,
427,
3993,
1996,
326,
2952,
964,
3666,
9397,
347,
346,
19336,
670,
346,
285,
346,
46745,
346,
1157,
253,
427,
3993,
19460,
281,
15639,
1411,
824,
2266,
10266,
1157,
285,
34421,
11691,
1264,
11516,
14177,
1078,
247,
1611,
281,
9545,
1988,
1669,
253,
7363,
387,
898,
1108,
337,
387,
2716,
1214,
14,
33,
673,
964,
380,
1273,
1214,
14,
33,
2716,
369,
1652,
1805,
323,
253,
427,
3993,
3706,
597,
30245,
247,
2007,
767,
14177,
347,
973,
347,
247,
5926,
1214,
14,
33,
4736,
964,
380,
1273,
273,
841,
14177,
369,
11691,
407,
19989,
5308,
846,
344,
6337,
253,
4023,
432,
521,
1211,
2716,
964,
9545,
1988,
11691,
247,
11516,
1611,
3563,
275,
253,
3761,
1157,
533,
436,
1904,
686,
85,
3657,
253,
427,
3993,
9958,
616,
6253,
13313,
273,
253,
4892,
1163,
1668,
1108,
577,
281,
253,
34421,
3767,
964,
9545,
1988,
1996,
2529,
253,
3761,
347,
346,
1293,
247,
23189,
321,
1157,
253,
5962,
18019,
359,
2959,
275,
776,
2644,
4892,
346,
964,
2490,
2732,
247,
10170,
689,
2101,
257,
10947,
4412,
1157,
253,
2285,
29433,
8935,
281,
1132,
48244,
19299,
1157,
8397,
790,
11094,
1157,
15543,
328,
1299,
1157,
285,
4051,
47949,
19299,
1157,
285,
1912,
512,
2620,
3958,
964,
380,
10170,
689,
48244,
369,
253,
1457,
12123,
398,
686,
6253,
273,
253,
4892,
3706,
597,
11691,
7457,
14177,
275,
247,
1722,
1108,
577,
10170,
964,
23177,
1214,
14,
33,
896,
6018,
43179,
4546,
562,
1676,
5356,
323,
253,
427,
3993,
1157,
1223,
253,
2862,
1930,
5183,
8936,
8136,
285,
5019,
281,
616,
10266,
964,
8397,
790,
11094,
285,
308,
1920,
251,
9606,
5536,
49204,
407,
253,
1457,
12123,
398,
1157,
1078,
247,
2266,
4051,
47949,
19299,
1930,
369,
11511,
964,
2732,
38774,
11864,
1373,
8240,
447,
1157,
253,
427,
3993,
4895,
281,
4693,
964,
2490,
380,
2285,
574,
767,
2007,
10129,
1078,
616,
5213,
1411,
5854,
964,
380,
806,
369,
1411,
581,
273,
253,
19508,
15202,
275,
5854,
1157,
5418,
248,
506,
964,
11116,
659,
13323,
435,
1157,
665,
574,
3912,
433,
1457,
12123,
285,
6976,
342,
253,
44728,
4782,
1680,
868,
1930,
1157,
4546,
323,
253,
5453,
275,
616,
898,
1108,
495,
13313,
281,
253,
427,
3993,
964,
380,
1457,
12123,
398,
1912,
1907,
11691,
1740,
14177,
1157,
1690,
767,
407,
6018,
43179,
964,
7160,
1735,
10266,
369,
247,
1986,
9491,
1930,
7194,
11616,
10043,
13669,
3773,
964,
380,
427,
3993,
497,
969,
3949,
16224,
1157,
436,
673,
884,
1108,
470,
964,
380,
3761,
1411,
12719,
2499,
369,
44866,
1955,
281,
5536,
34724,
1157,
285,
594,
253,
2285,
574,
247,
5093,
1214,
14,
33,
1388,
2740,
432,
4882,
1108,
616,
20088,
273,
253,
4892,
964,
4928,
187,
426,
426,
5854,
5213,
426,
426,
4928,
187,
380,
3761,
1411,
5854,
369,
8479,
253,
427,
3993,
686,
3773,
285,
4323,
3237,
1078,
352,
574,
1014,
13207,
964,
380,
2285,
7205,
1157,
7493,
1157,
369,
275,
12027,
342,
253,
15371,
54,
689,
835,
253,
3761,
943,
320,
4546,
1108,
253,
15371,
54,
497,
38622,
386,
326,
253,
3761,
943,
1379,
1659,
387,
5418,
248,
506,
686,
84,
3216,
1157,
533,
7493,
3078,
253,
2165,
281,
4262,
387,
380,
48954,
1157,
835,
247,
4067,
9539,
1157,
285,
3103,
2169,
7394,
41271,
1157,
812,
320,
14049,
964,
380,
13714,
27736,
15371,
54,
13701,
497,
2168,
20634,
273,
253,
11528,
1214,
14,
33,
2403,
29613,
273,
253,
427,
3993,
1157,
285,
497,
27086,
281,
4917,
327,
253,
5438,
273,
18767,
964,
380,
15371,
54,
369,
671,
275,
12027,
342,
253,
643,
9067,
914,
621,
689,
253,
4702,
273,
253,
5625,
37790,
15794,
5986,
313,
9812,
18446,
2387,
964,
11977,
247,
25147,
1611,
275,
271,
5854,
1108,
13944,
5213,
3761,
275,
44728,
1157,
253,
17960,
9061,
574,
10184,
323,
253,
13701,
273,
271,
5213,
2133,
281,
48870,
253,
2165,
1157,
533,
253,
15371,
54,
16701,
326,
597,
651,
760,
6604,
604,
597,
2918,
247,
18000,
6273,
1157,
16425,
326,
597,
29774,
436,
347,
597,
497,
1157,
597,
16402,
1157,
253,
8474,
2133,
1157,
285,
574,
253,
954,
3558,
15202,
964,
11011,
1157,
15420,
285,
13944,
17912,
9284,
281,
1132,
1411,
5854,
1919,
45145
] |
= The Same Old Story =
" The Same Old Story " is the second episode of the first season of the American science fiction drama television series Fringe. The episode was written by executive producer Jeff Pinkner and co @-@ creators J. J. Abrams, Alex Kurtzman, and Roberto Orci. When developing the series, they sought to find a medium between serialized drama and the crime procedural. " The Same Old Story " was the first regular episode of Fringe, and journalists viewed it as an example of what they could expect from the series. It was directed by Paul A. Edwards.
After a newborn baby rapidly ages into an 80 @-@ year @-@ old man, Fringe division agent Olivia Dunham ( Anna Torv ) and consultants Peter ( Joshua Jackson ) and Walter Bishop ( John Noble ) investigate. They tie the case to the murders of young women, who have all had their pituitary glands removed. It is revealed that Dr. Claus Penrose ( Mark Blum ), an expert in progeria, is working to help his son Christopher ( Derek Cecil ) stay alive, as he suffers from rapid aging syndrome.
" The Same Old Story " first aired in the United States on September 16, 2008 on Fox. An estimated 13 @.@ 272 million viewers watched the episode, a 45 percent increase from the series premiere. The episode received mixed reviews from television critics – reviewers thought it was an improvement from the previous episode but faulted it for containing plot contrivances.
= = Plot = =
A prostitute is abandoned by an unknown man at a hospital, dangerously in labor. She dies as the doctors perform a caesarean section, but the child ages rapidly in minutes, soon dead having aged to the likes of an 80 @-@ year @-@ old man. Olivia Dunham ( Anna Torv ), Peter Bishop ( Joshua Jackson ), and Walter Bishop ( John Noble ), new members of the Fringe division, are called to investigate by division head Phillip Broyles ( Lance Reddick ), believing the case to be part of " The Pattern ", a string of mysterious incidents. The woman is identified as having recently left a local motel, and Olivia finds evidence that points to a past serial murder case she and her former partner John Scott were not able to solve. Olivia explains to Peter that their murderer would paralyze his victims, young women, then make an incision along their face to extract a piece of brain material, killing the victim in the process. Walter takes both corpses back to his lab and determines that the woman had only been pregnant minutes before giving birth, her child having accelerated aging disease. Walter is reminded of having previously done work in this field, and remembers where he stashed his car that contains the related files. Once they are retrieved, Olivia makes a connection to the pituitary gland which controls growth in humans, and informs Charlie Francis ( Kirk Acevedo ) to monitor recent cases where the victims'pituitary gland has been removed.
Olivia and Peter turn to an expert in progeria, Dr. Penrose ( Mark Blum ), to trying to learn more about rapid aging, but Dr. Penrose cannot help them further, though Peter suspects he is hiding something. Unseen by the Fringe division, Dr. Penrose visits an abandoned warehouse and meets the murderer, Christopher ( Derek Cecil ), his son, who suffers from rapid aging syndrome. Penrose warns Christopher to be careful and that they only need one more woman to complete the process. By this time, Charlie has found a recent murder victim killed in the same fashion as Olivia's serial murderer. At Walter's lab, they identify the pituitary gland has been removed. They rationalize the murderer must extract hormones from the glands to slow down his own aging process. Walter hypothesizes they can discover the location of the crime by looking at the images left in the woman's optical nerves induced by the paralyzing sedative. Borrowing an electronic pulse camera from Massive Dynamic, they discover the image of a suspension bridge near Stoughton and identify the likely location from which it was viewed — the same warehouse that Dr. Penrose visited. The FBI converge on the building, and Olivia and Peter find Penrose about to cut into another victim. Olivia chases off after Christopher, who eventually succumbs to his rapid aging and dies, while Peter, after nicking Penrose with a bullet, confers with Walter to apply a makeshift defibrillator to bring the victim back to life.
As they wrap up the case, Olivia, Peter, and Walter complete forms to finalize their position in the Fringe division. When Peter is out of earshot, Walter learns from Olivia that the FBI medical files on Peter's childhood are void of any details.
= = Production = =
Co @-@ creators J. J. Abrams, Alex Kurtzman and Roberto Orci, and executive producer Jeff Pinkner wrote the episode. Paul A. Edwards served as the director, his first such credit for the series. In developing Fringe, the co @-@ creators did not want to make the series too serialized, as this was a complaint often directed at Abrams'television series Alias. They wanted to find a balance between standalone stories and serialized content, and studied procedural dramas such as Law and Order and CSI : Crime Scene Investigation for inspiration. Kurztman explained, " While we make sure that our episodes are self @-@ contained – have a beginning, a middle, and an end – the character stories can be serialized. They don 't have to resolve themselves over the course of one show. " " The Same Old Story " was Fringe's first regular episode, and some journalists viewed it as an example of how the series would be structured.
The episode was based on actual recent research and involved much collaboration among the series'different departments. For the scene in which they remove the victim's eyeball, the special effects crew created a mold based on actress Elizabeth Stanley's head. Using plaster to make a prosthetic, they " drilled out the eyeball and sculpt [ ed ] it open and [ went ] through a series of molds. " Stanley stated that " it's really cool to see the head because it really does look just like me, even though it's very gruesome because the eyeball's popping out. " The prop department rigged a weapon which they called a " photon gun " ; according to prop master Peter Gelfman, this gun was based on real devices employed in airport security that look through people's clothing for concealed weapons. VFX Supervisor Christopher Scollard explained that for the eye's last vision, they used " a lot of actual photographic reference on the set and on the location, " which they then used to " take that imagery and composite it into the various computer monitors and displays in the lab. "
" The Same Old Story " featured guest appearances by actors Derek Cecil as Christopher Penrose and Mark Blum as his father, Dr. Claus Penrose. Other guest actors included Betty Gilpin as Loraine " Amber " Daisy Alcott, Bernie McInerney as old Christopher Penrose, Carmen Goodine as Amy, Ty Jones as a doctor, and Karin Agstam as John Scott's sister.
= = Reception = =
= = = Ratings = = =
" The Same Old Story " was watched by 13 @.@ 272 million viewers in the United States, a 45 percent increase of four million from the pilot. Fox claimed that this ratings improvement was the best for any new network drama series in over five years. Its high @-@ rated lead @-@ in, House, helped boost Fringe's ratings for the night, as 93 percent of House's total audience and 95 percent of 18- to 49 @-@ year @-@ olds stayed to watch Fringe. Fringe was also the highest rated program for male 18- to 54 @-@ year @-@ olds that evening.
= = = Reviews = = =
" The Same Old Story " received mixed reviews from television critics. TV Squad writer Jane Boursaw thought the episode seemed " all over the place ", and wasn 't sure what to think. She stated the two most interesting parts of the episode were when Walter removed the girl's eye in order to identity her killer, and the cliffhanger at the very end, when Walter states " If you've read my file, then you know the truth about Peter's medical history ". Travis Fickett of IGN thought it was better than the pilot ; though it was " laden with lots of clunky exposition and clichéd dialogue, " Fickett understood that it was needed to acquaint new viewers to the show. Fickett concluded his review by saying Fringe has the potential to be a " great show ", and he also praised the production level as " top notch ", and Torv's performance as " very good " as she " brings a unique presence to the show ". The A.V. Club critic Noel Murray gave the episode a C +, while Television Without Pity graded it with a B.
Josh Jackson of Paste Magazine disliked the " deus ex machina " aspects that " neatly solved the puzzles of the first two episodes ", and also criticized perceived " plot contrivances " like how the serial murderer immediately began aging once interrupted from killing his last victim. Despite these flaws, Jackson said he would tune in next week because he would " rather have a show err on the side of unbelievable than unremarkable, and I'm interested to see if Abrams has any more tricks up his sleeve ". Erin Fox of TV Guide also liked " The Same Old Story " better than the pilot because she thought that it " had really cool special effects | wikitext_103 | [
426,
380,
26197,
8937,
16061,
426,
4928,
187,
346,
380,
26197,
8937,
16061,
346,
310,
253,
1273,
9037,
273,
253,
806,
2952,
273,
253,
2448,
5859,
14459,
14562,
7315,
2962,
401,
20683,
964,
380,
9037,
369,
3542,
407,
9165,
14281,
9069,
27653,
1216,
285,
820,
1214,
14,
33,
33801,
500,
15,
500,
15,
49665,
1157,
6539,
32211,
91,
1342,
1157,
285,
46773,
2207,
5297,
964,
2091,
6684,
253,
2962,
1157,
597,
7799,
281,
1089,
247,
4646,
875,
32145,
14562,
285,
253,
6617,
19993,
964,
346,
380,
26197,
8937,
16061,
346,
369,
253,
806,
3963,
9037,
273,
401,
20683,
1157,
285,
18680,
11575,
352,
347,
271,
1650,
273,
752,
597,
812,
1902,
432,
253,
2962,
964,
733,
369,
6828,
407,
5171,
329,
15,
24006,
964,
2490,
2732,
247,
23066,
6858,
9086,
11880,
715,
271,
5096,
1214,
14,
33,
807,
1214,
14,
33,
1711,
637,
1157,
401,
20683,
9025,
5570,
45790,
12221,
3964,
313,
16543,
7608,
87,
2387,
285,
40576,
7993,
313,
29092,
9857,
2387,
285,
17650,
19520,
313,
2516,
40435,
2387,
7409,
964,
1583,
13898,
253,
1083,
281,
253,
29803,
273,
2872,
2255,
1157,
665,
452,
512,
574,
616,
37804,
29108,
5176,
964,
733,
310,
4950,
326,
3196,
15,
46846,
7009,
11194,
313,
4744,
2071,
360,
2387,
1157,
271,
6485,
275,
354,
1063,
571,
1157,
310,
2444,
281,
1361,
521,
3347,
19717,
313,
36312,
47896,
2387,
3297,
9338,
1157,
347,
344,
27171,
432,
5233,
15174,
9237,
964,
2490,
346,
380,
26197,
8937,
16061,
346,
806,
30406,
275,
253,
1986,
2077,
327,
4397,
1668,
1157,
4695,
327,
11024,
964,
743,
5998,
2145,
1214,
15,
33,
32513,
3041,
20985,
9047,
253,
9037,
1157,
247,
5329,
2558,
2572,
432,
253,
2962,
33552,
964,
380,
9037,
2959,
6804,
10123,
432,
7315,
17139,
1108,
30628,
1869,
352,
369,
271,
7756,
432,
253,
2045,
9037,
533,
9331,
264,
352,
323,
4508,
7484,
523,
1069,
1972,
964,
4928,
187,
426,
426,
40185,
426,
426,
4928,
187,
329,
354,
5157,
310,
13966,
407,
271,
7202,
637,
387,
247,
4675,
1157,
5434,
4087,
275,
5299,
964,
1500,
9778,
347,
253,
11576,
1347,
247,
7318,
265,
45072,
2593,
1157,
533,
253,
1429,
11880,
9086,
275,
2909,
1157,
3517,
3846,
1907,
10652,
281,
253,
13052,
273,
271,
5096,
1214,
14,
33,
807,
1214,
14,
33,
1711,
637,
964,
45790,
12221,
3964,
313,
16543,
7608,
87,
2387,
1157,
7993,
19520,
313,
29092,
9857,
2387,
1157,
285,
17650,
19520,
313,
2516,
40435,
2387,
1157,
747,
2758,
273,
253,
401,
20683,
9025,
1157,
403,
1925,
281,
7409,
407,
9025,
1481,
38881,
4819,
9250,
313,
35463,
4410,
69,
781,
2387,
1157,
22142,
253,
1083,
281,
320,
629,
273,
346,
380,
29484,
346,
1157,
247,
2876,
273,
19796,
18048,
964,
380,
3416,
310,
3636,
347,
1907,
4102,
1669,
247,
1980,
48551,
1157,
285,
45790,
9010,
1941,
326,
2792,
281,
247,
2469,
10382,
7701,
1083,
703,
285,
617,
3438,
7832,
2516,
7493,
497,
417,
2104,
281,
8415,
964,
45790,
11424,
281,
7993,
326,
616,
37658,
651,
45636,
2721,
521,
10349,
1157,
2872,
2255,
1157,
840,
1056,
271,
33708,
2112,
616,
2454,
281,
4908,
247,
5313,
273,
3998,
2144,
1157,
9811,
253,
5487,
275,
253,
1232,
964,
17650,
3936,
1097,
23493,
265,
896,
281,
521,
5188,
285,
14802,
326,
253,
3416,
574,
760,
644,
12821,
2909,
1078,
4933,
4201,
1157,
617,
1429,
1907,
21702,
15174,
2728,
964,
17650,
310,
17328,
273,
1907,
3786,
2218,
789,
275,
436,
1673,
1157,
285,
31947,
835,
344,
331,
6948,
521,
1113,
326,
4428,
253,
2905,
4367,
964,
7243,
597,
403,
22111,
1157,
45790,
2789,
247,
4602,
281,
253,
37804,
21147,
534,
5760,
3116,
275,
7497,
1157,
285,
46210,
16955,
7980,
313,
22579,
37667,
1272,
80,
2387,
281,
5724,
3332,
2219,
835,
253,
10349,
686,
37804,
21147,
556,
644,
5176,
964,
2490,
45790,
285,
7993,
1614,
281,
271,
6485,
275,
354,
1063,
571,
1157,
3196,
15,
7009,
11194,
313,
4744,
2071,
360,
2387,
1157,
281,
2820,
281,
3037,
625,
670,
5233,
15174,
1157,
533,
3196,
15,
7009,
11194,
2550,
1361,
731,
2007,
1157,
2167,
7993,
25638,
344,
310,
17197,
1633,
964,
914,
16564,
407,
253,
401,
20683,
9025,
1157,
3196,
15,
7009,
11194,
12941,
271,
13966,
27134,
285,
16382,
253,
37658,
1157,
19717,
313,
36312,
47896,
2387,
1157,
521,
3347,
1157,
665,
27171,
432,
5233,
15174,
9237,
964,
7009,
11194,
42169,
19717,
281,
320,
10182,
285,
326,
597,
760,
878,
581,
625,
3416,
281,
3426,
253,
1232,
964,
2896,
436,
673,
1157,
16955,
556,
1119,
247,
3332,
7701,
5487,
5339,
275,
253,
1072,
8142,
347,
45790,
686,
84,
10382,
37658,
964,
2058,
17650,
686,
84,
5188,
1157,
597,
4271,
253,
37804,
21147,
556,
644,
5176,
964,
1583,
8870,
907,
253,
37658,
1364,
4908,
23884,
432,
253,
29108,
281,
3468,
1066,
521,
1211,
15174,
1232,
964,
17650,
6482,
4219,
597,
476,
9413,
253,
4328,
273,
253,
6617,
407,
2819,
387,
253,
3888,
1669,
275,
253,
3416,
686,
84,
5748,
22614,
5802,
407,
253,
45636,
8537,
9043,
800,
964,
378,
5725,
272,
271,
7051,
10724,
6568,
432,
7532,
422,
31799,
1157,
597,
9413,
253,
2460,
273,
247,
13394,
9729,
2822,
659,
48075,
285,
4271,
253,
2779,
4328,
432,
534,
352,
369,
11575,
1905,
253,
1072,
27134,
326,
3196,
15,
7009,
11194,
11580,
964,
380,
12578,
29623,
327,
253,
3652,
1157,
285,
45790,
285,
7993,
1089,
7009,
11194,
670,
281,
2624,
715,
1529,
5487,
964,
45790,
448,
1169,
745,
846,
19717,
1157,
665,
6524,
18382,
28134,
281,
521,
5233,
15174,
285,
9778,
1157,
1223,
7993,
1157,
846,
295,
12427,
7009,
11194,
342,
247,
16950,
1157,
1461,
398,
342,
17650,
281,
4647,
247,
2789,
32190,
809,
2560,
408,
1080,
281,
3324,
253,
5487,
896,
281,
1495,
964,
2490,
1284,
597,
16384,
598,
253,
1083,
1157,
45790,
1157,
7993,
1157,
285,
17650,
3426,
4948,
281,
2457,
907,
616,
1899,
275,
253,
401,
20683,
9025,
964,
2091,
7993,
310,
562,
273,
299,
7894,
302,
1157,
17650,
33772,
432,
45790,
326,
253,
12578,
3739,
4367,
327,
7993,
686,
84,
11948,
403,
2991,
273,
667,
4278,
964,
4928,
187,
426,
426,
28363,
426,
426,
4928,
187,
2434,
1214,
14,
33,
33801,
500,
15,
500,
15,
49665,
1157,
6539,
32211,
91,
1342,
285,
46773,
2207,
5297,
1157,
285,
9165,
14281,
9069,
27653,
1216,
4159,
253,
9037,
964,
5171,
329,
15,
24006,
5608,
347,
253,
6423,
1157,
521,
806,
824,
6152,
323,
253,
2962,
964,
496,
6684,
401,
20683,
1157,
253,
820,
1214,
14,
33,
33801,
858,
417,
971,
281,
1056,
253,
2962,
1512,
32145,
1157,
347,
436,
369,
247,
5833,
2223,
6828,
387,
49665,
686,
7315,
2962,
14355,
284,
964,
1583,
3078,
281,
1089,
247,
6654,
875,
40468,
6281,
285,
32145,
2600,
1157,
285,
5421,
19993,
8711,
284,
824,
347,
5405,
285,
9700,
285,
330,
5824,
1163,
23325,
45258,
32907,
323,
17006,
964,
24941,
15701,
1342,
5544,
1157,
346,
3900,
359,
1056,
2119,
326,
776,
13305,
403,
1881,
1214,
14,
33,
6221,
1108,
452,
247,
5068,
1157,
247,
4766,
1157,
285,
271,
990,
1108,
253,
1894,
6281,
476,
320,
32145,
964,
1583,
1053,
686,
85,
452,
281,
11322,
3746,
689,
253,
2282,
273,
581,
921,
964,
346,
346,
380,
26197,
8937,
16061,
346,
369,
401,
20683,
686,
84,
806,
3963,
9037,
1157,
285,
690,
18680,
11575,
352,
347,
271,
1650,
273,
849,
253,
2962,
651,
320,
18872,
964,
2490,
380,
9037,
369,
1754,
327,
4588,
3332,
2561,
285,
3206,
1199,
14448,
2190,
253,
2962,
686,
1027,
20036,
964,
1198,
253,
6200,
275,
534,
597,
5386,
253,
5487,
686,
84,
21182,
455,
1157,
253,
2714,
2538,
10402,
3562,
247,
13100,
1754,
327,
20453,
12694,
20923,
686,
84,
1481,
964,
6915,
43116,
281,
1056,
247,
48199,
1157,
597,
346,
46721,
562,
253,
21182,
455,
285,
17481,
544,
1407,
5032,
352,
1527,
285,
544,
2427,
5032,
949,
247,
2962,
273,
278,
3502,
964,
346,
20923,
4767,
326,
346,
352,
686,
84,
1663,
4484,
281,
923,
253,
1481,
984,
352,
1663,
1057,
1007,
816,
751,
479,
1157,
1014,
2167,
352,
686,
84,
1077,
26970,
10462,
984,
253,
21182,
455,
686,
84,
42084,
562,
964,
346,
380,
4198,
7811,
8132,
2400,
247,
10485,
534,
597,
1925,
247,
346,
15523,
5654,
346,
3706,
2556,
281,
4198,
6303,
7993,
443,
813,
1342,
1157,
436,
5654,
369,
1754,
327,
1524,
4095,
7091,
275,
13952,
3988,
326,
1007,
949,
952,
686,
84,
14234,
323,
27715,
8914,
964,
657,
27208,
6053,
16179,
19717,
1810,
2555,
472,
5544,
326,
323,
253,
5130,
686,
84,
1390,
8113,
1157,
597,
908,
346,
247,
2257,
273,
4588,
31769,
3806,
327,
253,
873,
285,
327,
253,
4328,
1157,
346,
534,
597,
840,
908,
281,
346,
1379,
326,
27471,
285,
8212,
352,
715,
253,
2710,
4382,
28028,
285,
12646,
275,
253,
5188,
964,
346,
2490,
346,
380,
26197,
8937,
16061,
346,
12819,
12141,
18655,
407,
14142,
36312,
47896,
347,
19717,
7009,
11194,
285,
4744,
2071,
360,
347,
521,
3392,
1157,
3196,
15,
46846,
7009,
11194,
964,
5131,
12141,
14142,
2908,
33686,
14383,
9852,
347,
32203,
6529,
346,
41131,
346,
39437,
1219,
22869,
1157,
29580,
3044,
688,
254,
2191,
347,
1711,
19717,
7009,
11194,
1157,
22787,
257,
7088,
460,
347,
22138,
1157,
16639,
8302,
347,
247,
7345,
1157,
285,
12604,
249,
3419,
296,
312,
347,
2516,
7493,
686,
84,
7586,
964,
4928,
187,
426,
426,
1720,
2409,
426,
426,
4928,
19668,
426,
426,
426,
18194,
723,
426,
426,
426,
4928,
187,
346,
380,
26197,
8937,
16061,
346,
369,
9047,
407,
2145,
1214,
15,
33,
32513,
3041,
20985,
275,
253,
1986,
2077,
1157,
247,
5329,
2558,
2572,
273,
1740,
3041,
432,
253,
11572,
964,
11024,
7558,
326,
436,
17503,
7756,
369,
253,
1682,
323,
667,
747,
2990,
14562,
2962,
275,
689,
2620,
1107,
964,
7850,
1029,
1214,
14,
33,
20139,
1421,
1214,
14,
33,
275,
1157,
3995,
1157,
6518,
9510,
401,
20683,
686,
84,
17503,
323,
253,
2360,
1157,
347,
11456,
2558,
273,
3995,
686,
84,
2264,
8446,
285,
5325,
2558,
273,
1283,
14,
281,
7584,
1214,
14,
33,
807,
1214,
14,
33,
1711,
84,
11791,
281,
3698,
401,
20683,
964,
401,
20683,
369,
671,
253,
4585,
20139,
2086,
323,
5086,
1283,
14,
281,
8255,
1214,
14,
33,
807,
1214,
14,
33,
1711,
84,
326,
7237,
964,
4928,
187,
426,
426,
426,
31349,
426,
426,
426,
4928,
187,
346,
380,
26197,
8937,
16061,
346,
2959,
6804,
10123,
432,
7315,
17139,
964,
5579,
26436,
8406,
14884,
378,
2108,
1403,
1869,
253,
9037,
4455,
346,
512,
689,
253,
1659,
346,
1157,
285,
3589,
686,
85,
2119,
752,
281,
1158,
964,
1500,
4767,
253,
767,
954,
4722,
4243,
273,
253,
9037,
497,
672,
17650,
5176,
253,
3226,
686,
84,
5130,
275,
1340,
281,
6489,
617,
17830,
1157,
285,
253,
28900,
73,
3751,
387,
253,
1077,
990,
1157,
672,
17650,
3054,
346,
1310,
368,
686,
306,
1239,
619,
1873,
1157,
840,
368,
871,
253,
5083,
670,
7993,
686,
84,
3739,
2892,
346,
964,
35382,
401,
781,
3592,
273,
309,
26756,
1869,
352,
369,
1805,
685,
253,
11572,
3706,
2167,
352,
369,
346,
9931,
257,
342,
8783,
273,
502,
3938,
90,
47284,
285,
502,
469,
15949,
17414,
1157,
346,
401,
781,
3592,
7192,
326,
352,
369,
3058,
281,
28262,
747,
20985,
281,
253,
921,
964,
401,
781,
3592,
7945,
521,
2278,
407,
3981,
401,
20683,
556,
253,
2442,
281,
320,
247,
346,
1270,
921,
346,
1157,
285,
344,
671,
26108,
253,
3275,
1268,
347,
346,
1755,
38983,
346,
1157,
285,
7608,
87,
686,
84,
3045,
347,
346,
1077,
1175,
346,
347,
703,
346,
10316,
247,
4451,
3361,
281,
253,
921,
346,
964,
380,
329,
15,
55,
15,
9585,
7291,
1621,
293,
19995,
3534,
253,
9037,
247,
330,
559,
1157,
1223,
29573,
12414,
367,
414,
25082,
352,
342,
247,
378,
15,
2490,
15698,
9857,
273,
367,
4740,
20308,
557,
44939,
253,
346,
372,
316,
385,
3674,
1758,
346,
7794,
326,
346,
36166,
14042,
253,
43884,
273,
253,
806,
767,
13305,
346,
1157,
285,
671,
23159,
12351,
346,
7484,
523,
1069,
1972,
346,
751,
849,
253,
10382,
37658,
4745,
3407,
15174,
2378,
21018,
432,
9811,
521,
1390,
5487,
964,
9937,
841,
32138,
1157,
9857,
753,
344,
651,
19928,
275,
1735,
2129,
984,
344,
651,
346,
2581,
452,
247,
921,
1486,
327,
253,
1930,
273,
42798,
685,
440,
39808,
494,
1157,
285,
309,
686,
78,
6110,
281,
923,
604,
49665,
556,
667,
625,
24866,
598,
521,
22910,
346,
964,
46604,
11024,
273,
5579,
16398,
671,
10490,
346,
380,
26197,
8937,
16061,
346,
1805,
685,
253,
11572,
984,
703,
1869,
326,
352,
346,
574,
1663,
4484,
2714,
2538
] |
Standing Fleet on 22 May 1901 and was assigned to the 1st Battleship Division of the 1st Fleet when the Combined Fleet was re @-@ formed on 28 December 1903.
At the start of the Russo @-@ Japanese War, Asahi, commanded by Captain Hikohachi Yamada, was assigned to the 1st Division of the 1st Fleet. She participated in the Battle of Port Arthur on 9 February 1904, when Vice Admiral Tōgō Heihachirō led the 1st Fleet in an attack on the Russian ships of the Pacific Squadron anchored just outside Port Arthur. Tōgō had expected the surprise night attack by his destroyers to be much more successful than it was, anticipating that the Russians would be badly disorganized and weakened, but they had recovered from their surprise and were ready for his attack. The Japanese ships were spotted by the protected cruiser Boyarin, which was patrolling offshore and alerted the Russian defences. Tōgō chose to attack the Russian coastal defences with his main armament and engage the ships with his secondary guns. Splitting his fire proved to be a poor decision as the Japanese eight @-@ inch ( 203 mm ) and six @-@ inch guns inflicted little damage on the Russian ships, which concentrated all their fire on the Japanese ships with some effect. Although many ships on both sides were hit, Russian casualties numbered only 17, while the Japanese suffered 60 killed and wounded before Tōgō disengaged. Asahi was not hit during the engagement.
The ship participated in the action of 13 April, when Tōgō successfully lured out a portion of the Pacific Squadron, including Vice Admiral Stepan Makarov's flagship, the battleship Petropavlovsk. When Makarov spotted the five battleships of the 1st Division, he turned back for Port Arthur and Petropavlovsk struck a minefield laid by the Japanese the previous night. The Russian battleship sank in less than two minutes after one of her magazines exploded, and Makarov was one of the 677 killed. Emboldened by his success, Tōgō resumed long @-@ range bombardment missions, prompting the Russians to lay more minefields, which sank two Japanese battleships the following month.
During the Battle of the Yellow Sea on 10 August, Asahi, now commanded by Captain Tsunaakira Nomoto, was second in line of the column of Japanese battleships, behind Mikasa, and was one of the primary targets of the Russian ships. She was only hit by a single 12 @-@ inch shell that wounded two crewmen. Both guns in her aft 12 @-@ inch gun turret, however, were disabled by shells that detonated prematurely in their barrels. In turn she concentrated most of her fire upon the battleships Poltava and Tsesarevich although both ships were only lightly damaged by the Japanese shells, which generally failed to penetrate any armour and detonated on impact. The ship made the critical hits of the battle, however, when two of her 12 @-@ inch shells struck the bridge of Tsesarevich, killing the Russian squadron commander, Vice Admiral Wilgelm Vitgeft, two of his staff officers and the ship's quartermaster. The ship's wheel was jammed to port by wreckage and then slowed to a halt which threw the rest of the Russian ships into total confusion. The second @-@ in @-@ command, Rear Admiral Prince Pavel Ukhtomsky, eventually gained control of the remainder of the squadron and headed back to Port Arthur. Slightly more than two months later, on 26 October, Asahi struck a mine off Port Arthur while on blockade duty. Severely damaged, she was under repair at Sasebo Naval Arsenal from November 1904 to April 1905. Russian naval forces in the Far East had been destroyed or neutralized by this time and the Russians were forced to transfer ships from the Baltic Fleet that did not arrive until May.
= = = Battle of Tsushima = = =
At the Battle of Tsushima on 27 May 1905, Asahi again followed the battleship Mikasa into combat, this time against the Second and Third Pacific Squadrons. Mikasa opened fire at the battleship Knyaz Suvorov, the Russian flagship, at 14 : 10, and was joined by Asahi and the armoured cruiser Azuma shortly afterwards. Within an hour the Japanese ships had started a serious fire aboard the Russian ship, badly wounded the fleet commander, Vice Admiral Zinovy Rozhestvensky, knocked out her rear 12 @-@ inch gun turret, and jammed Knyaz Suvorov's steering so that she fell out of formation. The Russian ships were concentrating their fire on Mikasa during the early part of the battle and Asahi was not damaged during this time. Tōgō was able to cross the T of the Russian squadrons. Knyaz Suvorov's steering was later repaired, but she blundered between the Japanese and Russian fleets several times later in the battle and was heavily damaged. Asahi seems to have mostly engaged the battleships Borodino and Oryol in the late stages of the battle, although Fuji fired the shots that caused the Borodino's magazines to explode and sink her. Asahi fired more twelve @-@ inch shells, 142, than any other ship during the battle. In total, the ship was hit six times during the battle, but none of them damaged her significantly. While Asahi's casualties are not precisely known, the Japanese only lost 110 men killed and 590 wounded to all causes during the battle. The battle was a total Japanese victory with five Russian battleships captured and incorporated into the IJN.
Captain W. C. Pakenham, the Royal Navy's official military observer under the Anglo @-@ Japanese Alliance, took notes of the battle's progress from a deck chair on Asahi's exposed quarterdeck. His report confirmed the superiority of Japanese training and tactics and publicized the victory in the West.
= = = Later career = = =
In 1908, Asahi was part of the Japanese fleet that escorted the American Great White Fleet through Japanese waters during its round @-@ the @-@ globe voyage. The ship was assigned to the 1st Fleet in 1908 and 1910 – 11. Asahi became a gunnery training ship in 1914, and was re @-@ armed in 1917 with Japanese guns replacing her original British @-@ made guns. The same year, she was assigned to the 5th Division of the 3rd Fleet. In 1918, Asahi became flagship of her division and participated in the Japanese intervention in the Russian Civil War. She escorted troop convoys to the Russian Far East and was guard ship at Kamchatka from January to August 1918. Asahi was reclassified as a first @-@ class coastal defence ship on 1 September 1921, and began disarmament in 1922 at Yokosuka in compliance with the terms of the Washington Naval Treaty. She was reclassified as a training and submarine depot ship on 1 April 1923 and her disarmament was completed in July of that same year. Her displacement dropped to 11 @,@ 441 long tons ( 11 @,@ 625 t ) with the loss of her armour and guns, and her speed was limited to 12 knots ( 22 km / h ; 14 mph ).
The navy decided to convert Asahi into a submarine salvage ship and she began the first stage of her conversion with the installation of specialized salvage equipment from February to August 1925. From 1926 to October 1927, the ship's 25 Belleville boilers were replaced with four Kanpon Type RO boilers at Kure Naval Arsenal. One of her two funnels was also removed, and two large lifting frames were installed as part of the second stage of her conversion. The ship conducted experiments in submarine rescue using the old German submarine 0 @-@ 1 ( ex @-@ U @-@ 125 ). In May 1928, Asahi was fitted with a 62 @-@ foot @-@ 4 @-@ inch ( 19 m ) compressed @-@ air aircraft catapult on her forecastle and successfully launched an E2N1 Type 15 seaplane. After repeated accidents, the catapult was replaced by one powered by gunpowder. On the completion of testing in 1928, Asahi was placed in reserve.
Reclassified as a repair ship on 16 August 1937, Asahi was taken out of reserve in November, after the Marco Polo Bridge Incident that started the Second Sino @-@ Japanese War, and was used as a transport to land troops in an amphibious landing at Hangzhou Bay. Afterwards she began conversion at Kure, Japan, into a repair ship ; this was completed on 18 December 1938. Asahi was fitted with a dummy wooden main battery fore and aft to resemble an old battleship after her arrival in Shanghai on 29 December. In May 1939 she was modified to act as a torpedo depot ship and carried out patrols between 29 May and 7 November 1940. She was transferred to Camranh Bay, French Indochina, on 15 November 1940 and later transported the 11th Base Unit from Kure to Camranh Bay 19 November – 7 December 1941.
From 13 March 1942, Asahi was stationed at Singapore, and in April her crew performed repairs on the light cruiser Naka, which had been torpedoed by the submarine USS Seawolf off Christmas Island. Departing Singapore for Kure on 22 May, escorted by the subchaser CH @-@ 9, Asahi was sighted by the submarine USS Salmon on the night of 25 / 26 May 1942, 100 miles ( 160 km ) southeast of Cape Padaran, Indochina. Of Salmon's four torped | wikitext_103 | [
37496,
32521,
327,
3307,
2552,
40488,
285,
369,
7922,
281,
253,
337,
296,
23777,
868,
1456,
9333,
273,
253,
337,
296,
32521,
672,
253,
37395,
32521,
369,
294,
1214,
14,
33,
4447,
327,
3349,
4565,
40937,
964,
2490,
2058,
253,
1265,
273,
253,
29132,
601,
1214,
14,
33,
6692,
3660,
1157,
1284,
42128,
1157,
26814,
407,
11918,
388,
1479,
1368,
23712,
27117,
2960,
1157,
369,
7922,
281,
253,
337,
296,
9333,
273,
253,
337,
296,
32521,
964,
1500,
13640,
275,
253,
15764,
273,
6162,
15948,
327,
898,
5080,
40253,
1157,
672,
17979,
28244,
308,
13293,
72,
13293,
754,
6356,
607,
343,
13293,
3977,
253,
337,
296,
32521,
275,
271,
2983,
327,
253,
7247,
11811,
273,
253,
11553,
36365,
39574,
816,
3345,
6162,
15948,
964,
308,
13293,
72,
13293,
574,
3264,
253,
9326,
2360,
2983,
407,
521,
6909,
398,
281,
320,
1199,
625,
5547,
685,
352,
369,
1157,
10437,
839,
326,
253,
24794,
651,
320,
16426,
557,
34092,
285,
33153,
1157,
533,
597,
574,
12372,
432,
616,
9326,
285,
497,
4704,
323,
521,
2983,
964,
380,
6692,
11811,
497,
20673,
407,
253,
6885,
50148,
12143,
19881,
1157,
534,
369,
869,
19891,
30569,
285,
48035,
253,
7247,
809,
2979,
964,
308,
13293,
72,
13293,
9703,
281,
2983,
253,
7247,
22431,
809,
2979,
342,
521,
2022,
4430,
2247,
285,
11377,
253,
11811,
342,
521,
6561,
11942,
964,
33119,
2835,
521,
3289,
8058,
281,
320,
247,
4105,
3061,
347,
253,
6692,
4314,
1214,
14,
33,
16416,
313,
24876,
5823,
2387,
285,
2800,
1214,
14,
33,
16416,
11942,
39723,
1652,
4723,
327,
253,
7247,
11811,
1157,
534,
16761,
512,
616,
3289,
327,
253,
6692,
11811,
342,
690,
1055,
964,
4129,
1142,
11811,
327,
1097,
7123,
497,
4352,
1157,
7247,
32853,
31050,
760,
1722,
1157,
1223,
253,
6692,
9606,
3925,
5339,
285,
16545,
1078,
308,
13293,
72,
13293,
44894,
2961,
964,
1284,
42128,
369,
417,
4352,
1309,
253,
13226,
964,
2490,
380,
6215,
13640,
275,
253,
2250,
273,
2145,
4162,
1157,
672,
308,
13293,
72,
13293,
8379,
298,
1520,
562,
247,
5110,
273,
253,
11553,
36365,
1157,
1690,
17979,
28244,
2951,
4029,
26792,
274,
729,
686,
84,
39230,
1157,
253,
20303,
1456,
8939,
1658,
580,
21412,
3319,
964,
2091,
26792,
274,
729,
20673,
253,
2620,
20303,
16458,
273,
253,
337,
296,
9333,
1157,
344,
3531,
896,
323,
6162,
15948,
285,
8939,
1658,
580,
21412,
3319,
10903,
247,
7477,
3423,
10090,
407,
253,
6692,
253,
2045,
2360,
964,
380,
7247,
20303,
1456,
29540,
275,
1679,
685,
767,
2909,
846,
581,
273,
617,
22575,
31032,
1157,
285,
26792,
274,
729,
369,
581,
273,
253,
721,
2357,
5339,
964,
19096,
744,
2348,
407,
521,
2323,
1157,
308,
13293,
72,
13293,
30974,
1048,
1214,
14,
33,
2491,
47710,
420,
21468,
1157,
40021,
253,
24794,
281,
2242,
625,
7477,
15069,
1157,
534,
29540,
767,
6692,
20303,
16458,
253,
1563,
1770,
964,
2490,
6408,
253,
15764,
273,
253,
25056,
11936,
327,
884,
4223,
1157,
1284,
42128,
1157,
1024,
26814,
407,
11918,
20613,
9821,
518,
8432,
37947,
4881,
1157,
369,
1273,
275,
1386,
273,
253,
5084,
273,
6692,
20303,
16458,
1157,
3212,
31419,
19924,
1157,
285,
369,
581,
273,
253,
3625,
8571,
273,
253,
7247,
11811,
964,
1500,
369,
760,
4352,
407,
247,
2014,
1249,
1214,
14,
33,
16416,
8135,
326,
16545,
767,
10402,
3767,
964,
6295,
11942,
275,
617,
247,
649,
1249,
1214,
14,
33,
16416,
5654,
10709,
1221,
1157,
2299,
1157,
497,
13603,
407,
24383,
326,
43072,
456,
20346,
314,
275,
616,
33545,
964,
496,
1614,
703,
16761,
954,
273,
617,
3289,
2220,
253,
20303,
16458,
3130,
85,
2623,
285,
308,
6628,
609,
87,
469,
3738,
1097,
11811,
497,
760,
19679,
13572,
407,
253,
6692,
24383,
1157,
534,
3839,
4242,
281,
34165,
667,
44878,
285,
43072,
456,
327,
3486,
964,
380,
6215,
1160,
253,
4619,
12830,
273,
253,
6680,
1157,
2299,
1157,
672,
767,
273,
617,
1249,
1214,
14,
33,
16416,
24383,
10903,
253,
9729,
273,
308,
6628,
609,
87,
469,
1157,
9811,
253,
7247,
40294,
17747,
1157,
17979,
28244,
5874,
11500,
78,
24198,
463,
649,
1157,
767,
273,
521,
4750,
6251,
285,
253,
6215,
686,
84,
25721,
3945,
2237,
964,
380,
6215,
686,
84,
9530,
369,
480,
15416,
281,
2245,
407,
24028,
486,
285,
840,
28837,
281,
247,
19086,
534,
13222,
253,
1551,
273,
253,
7247,
11811,
715,
2264,
13775,
964,
380,
1273,
1214,
14,
33,
275,
1214,
14,
33,
3923,
1157,
416,
613,
28244,
12843,
367,
8526,
11915,
384,
3056,
4742,
1157,
6524,
12103,
1453,
273,
253,
6414,
273,
253,
40294,
285,
12860,
896,
281,
6162,
15948,
964,
322,
46711,
625,
685,
767,
2607,
1996,
1157,
327,
3436,
4437,
1157,
1284,
42128,
10903,
247,
7477,
745,
6162,
15948,
1223,
327,
28398,
7143,
964,
47770,
314,
13572,
1157,
703,
369,
762,
8706,
387,
322,
511,
2399,
29066,
33386,
432,
4596,
40253,
281,
4162,
37400,
964,
7247,
25186,
5621,
275,
253,
10351,
5791,
574,
644,
11069,
390,
9238,
1025,
407,
436,
673,
285,
253,
24794,
497,
6726,
281,
3700,
11811,
432,
253,
48477,
32521,
326,
858,
417,
12666,
1919,
2552,
964,
4928,
187,
426,
426,
426,
15764,
273,
20613,
46102,
426,
426,
426,
4928,
187,
2058,
253,
15764,
273,
20613,
46102,
327,
3435,
2552,
37400,
1157,
1284,
42128,
969,
3560,
253,
20303,
1456,
31419,
19924,
715,
11757,
1157,
436,
673,
1411,
253,
6347,
285,
12245,
11553,
26436,
9036,
964,
31419,
19924,
5485,
3289,
387,
253,
20303,
1456,
611,
5134,
1370,
4137,
19449,
729,
1157,
253,
7247,
39230,
1157,
387,
1638,
1163,
884,
1157,
285,
369,
7416,
407,
1284,
42128,
285,
253,
4430,
9698,
50148,
13063,
9307,
13515,
16906,
964,
15092,
271,
4964,
253,
6692,
11811,
574,
3053,
247,
4092,
3289,
22995,
253,
7247,
6215,
1157,
16426,
16545,
253,
18500,
17747,
1157,
17979,
28244,
1503,
249,
35068,
416,
6002,
3957,
14941,
4742,
1157,
19336,
562,
617,
10581,
1249,
1214,
14,
33,
16416,
5654,
10709,
1221,
1157,
285,
480,
15416,
611,
5134,
1370,
4137,
19449,
729,
686,
84,
21406,
594,
326,
703,
6497,
562,
273,
4702,
964,
380,
7247,
11811,
497,
45012,
616,
3289,
327,
31419,
19924,
1309,
253,
2393,
629,
273,
253,
6680,
285,
1284,
42128,
369,
417,
13572,
1309,
436,
673,
964,
308,
13293,
72,
13293,
369,
2104,
281,
2831,
253,
308,
273,
253,
7247,
13487,
9036,
964,
611,
5134,
1370,
4137,
19449,
729,
686,
84,
21406,
369,
1996,
33172,
1157,
533,
703,
787,
328,
3466,
875,
253,
6692,
285,
7247,
7771,
1507,
2067,
2069,
1996,
275,
253,
6680,
285,
369,
11306,
13572,
964,
1284,
42128,
3133,
281,
452,
6571,
9583,
253,
20303,
16458,
14027,
351,
2610,
285,
473,
610,
311,
275,
253,
3563,
8661,
273,
253,
6680,
1157,
3738,
23257,
8020,
11226,
253,
13768,
326,
4269,
253,
14027,
351,
2610,
686,
84,
22575,
281,
34667,
285,
16338,
617,
964,
1284,
42128,
11226,
625,
13265,
1214,
14,
33,
16416,
24383,
1157,
21669,
1157,
685,
667,
643,
6215,
1309,
253,
6680,
964,
496,
2264,
1157,
253,
6215,
369,
4352,
2800,
2069,
1309,
253,
6680,
1157,
533,
5293,
273,
731,
13572,
617,
3012,
964,
3900,
1284,
42128,
686,
84,
32853,
403,
417,
10534,
1929,
1157,
253,
6692,
760,
3663,
9199,
1821,
5339,
285,
47064,
16545,
281,
512,
5997,
1309,
253,
6680,
964,
380,
6680,
369,
247,
2264,
6692,
10170,
342,
2620,
7247,
20303,
16458,
10848,
285,
11217,
715,
253,
36389,
47,
964,
2490,
11918,
411,
15,
330,
15,
367,
2114,
3964,
1157,
253,
10043,
13669,
686,
84,
3565,
4668,
19969,
762,
253,
33252,
1214,
14,
33,
6692,
20958,
1157,
2335,
7211,
273,
253,
6680,
686,
84,
4780,
432,
247,
12595,
6951,
327,
1284,
42128,
686,
84,
7329,
7150,
43677,
964,
3032,
1304,
5783,
253,
34385,
273,
6692,
3733,
285,
21041,
285,
1345,
1025,
253,
10170,
275,
253,
4255,
964,
4928,
187,
426,
426,
426,
14772,
5249,
426,
426,
426,
4928,
187,
496,
36754,
1157,
1284,
42128,
369,
629,
273,
253,
6692,
18500,
326,
46452,
253,
2448,
6495,
5219,
32521,
949,
6692,
12685,
1309,
697,
3790,
1214,
14,
33,
253,
1214,
14,
33,
20902,
31192,
964,
380,
6215,
369,
7922,
281,
253,
337,
296,
32521,
275,
36754,
285,
31707,
1108,
1903,
964,
1284,
42128,
3395,
247,
5654,
1216,
90,
3733,
6215,
275,
26478,
1157,
285,
369,
294,
1214,
14,
33,
12360,
275,
27062,
342,
6692,
11942,
15706,
617,
3236,
4782,
1214,
14,
33,
1160,
11942,
964,
380,
1072,
807,
1157,
703,
369,
7922,
281,
253,
608,
394,
9333,
273,
253,
495,
5784,
32521,
964,
496,
26052,
1157,
1284,
42128,
3395,
39230,
273,
617,
9025,
285,
13640,
275,
253,
6692,
7268,
275,
253,
7247,
10109,
3660,
964,
1500,
46452,
34883,
2410,
16376,
281,
253,
7247,
10351,
5791,
285,
369,
7496,
6215,
387,
21174,
23481,
4530,
432,
4247,
281,
4223,
26052,
964,
1284,
42128,
369,
294,
39651,
347,
247,
806,
1214,
14,
33,
966,
22431,
17147,
6215,
327,
337,
4397,
33531,
1157,
285,
3407,
557,
1513,
2247,
275,
33287,
387,
714,
536,
375,
25501,
275,
10276,
342,
253,
2426,
273,
253,
5041,
29066,
32648,
964,
1500,
369,
294,
39651,
347,
247,
3733,
285,
35898,
1305,
302,
6215,
327,
337,
4162,
33881,
285,
617,
557,
1513,
2247,
369,
6312,
275,
4163,
273,
326,
1072,
807,
964,
4058,
16837,
8231,
281,
1903,
1214,
13,
33,
40657,
1048,
16298,
313,
1903,
1214,
13,
33,
45451,
246,
2387,
342,
253,
2957,
273,
617,
44878,
285,
11942,
1157,
285,
617,
3885,
369,
3710,
281,
1249,
33462,
313,
3307,
10771,
1227,
288,
3706,
1638,
36772,
2387,
964,
2490,
380,
29401,
4425,
281,
6455,
1284,
42128,
715,
247,
35898,
40811,
6215,
285,
703,
3407,
253,
806,
3924,
273,
617,
9436,
342,
253,
12692,
273,
18052,
40811,
6500,
432,
5080,
281,
4223,
31610,
964,
4325,
33554,
281,
4437,
31687,
1157,
253,
6215,
686,
84,
2030,
31596,
6169,
22149,
398,
497,
7932,
342,
1740,
20626,
81,
251,
8078,
16636,
22149,
398,
387,
611,
459,
29066,
33386,
964,
2596,
273,
617,
767,
794,
79,
1241,
369,
671,
5176,
1157,
285,
767,
1781,
20284,
13009,
497,
8038,
347,
629,
273,
253,
1273,
3924,
273,
617,
9436,
964,
380,
6215,
5196,
4679,
275,
35898,
14471,
970,
253,
1711,
5685,
35898,
470,
1214,
14,
33,
337,
313,
385,
1214,
14,
33,
530,
1214,
14,
33,
11140,
2387,
964,
496,
2552,
31751,
1157,
1284,
42128,
369,
14662,
342,
247,
9743,
1214,
14,
33,
3174,
1214,
14,
33,
577,
1214,
14,
33,
16416,
313,
655,
278,
2387,
21012,
1214,
14,
33,
2329,
9954,
5798,
522,
503,
327,
617,
16923,
282,
285,
8379,
10098,
271,
444,
19,
47,
18,
8078,
1458,
6150,
13568,
964,
2732,
6015,
23678,
1157,
253,
5798,
522,
503,
369,
7932,
407,
581,
20351,
407,
5654,
13029,
491,
964,
1623,
253,
12240,
273,
5175,
275,
31751,
1157,
1284,
42128,
369,
4845,
275,
15917,
964,
2490,
1720,
39651,
347,
247,
8706,
6215,
327,
1668,
4223,
27598,
1157,
1284,
42128,
369,
2668,
562,
273,
15917,
275,
4596,
1157,
846,
253,
28712,
3130,
80,
15454,
3690,
888,
326,
3053,
253,
6347,
322,
2610,
1214,
14,
33,
6692,
3660,
1157,
285,
369,
908,
347,
247,
4616,
281,
2659,
10824,
275,
271,
49195,
784,
15165,
387,
39008,
40305,
6912,
964,
47090,
703,
3407,
9436,
387,
611,
459,
1157,
4047,
1157,
715,
247,
8706,
6215,
3706,
436,
369,
6312,
327,
1283,
4565,
26421,
964,
1284,
42128,
369,
14662,
342,
247,
28726,
14872,
2022,
9378,
2273,
285,
247,
649,
281,
28788,
271,
1711,
20303,
1456,
846,
617,
13024,
275,
23494,
327,
3285,
4565,
964,
496,
2552,
22745,
703,
369,
7321,
281,
769,
347,
247,
41007,
80,
1305,
302,
6215,
285,
4824,
562,
21820,
84,
875,
3285,
2552,
285,
818,
4596,
16952,
964,
1500,
369,
9495,
281,
6039,
4011,
73,
6912,
1157,
5112,
2102,
3770,
1758,
1157,
327,
1458,
4596,
16952,
285,
1996,
20870,
253,
1903,
394,
11760,
16062,
432,
611,
459,
281,
6039,
4011,
73,
6912,
655,
4596,
1108,
818,
4565,
22715,
964,
2490,
4325,
2145,
3919,
22420,
1157,
1284,
42128,
369,
38712,
387,
16861,
1157,
285,
275,
4162,
617,
10402,
2684,
25931,
327,
253,
1708,
50148,
427,
10573,
1157,
534,
574,
644,
41007,
80,
264,
407,
253,
35898,
47800,
1023,
1403,
6352,
745,
9449,
8451,
964,
3315,
435,
272,
16861,
323,
611,
459,
327,
3307,
2552,
1157,
46452,
407,
253,
749,
348,
12290,
5642,
1214,
14,
33,
898,
1157,
1284,
42128,
369,
8184,
264,
407,
253,
35898,
47800,
6470,
2163,
327,
253,
2360,
273,
2030,
1227,
3436,
2552,
22420,
1157,
2233,
6574,
313,
12036,
10771,
2387,
32253,
273,
20904,
20254,
21735,
1157,
2102,
3770,
1758,
964,
4683,
6470,
2163,
686,
84,
1740,
41007
] |
= 1985 Rajneeshee assassination plot =
The 1985 Rajneeshee assassination plot was a conspiracy by a group of high @-@ ranking followers of Bhagwan Shree Rajneesh ( later known as Osho ) to assassinate Charles Turner, the then @-@ United States Attorney for the District of Oregon. Rajneesh's personal secretary and second @-@ in @-@ command, Ma Anand Sheela ( Sheela Silverman ), assembled the group after Turner was appointed to investigate illegal activity at Rajneeshpuram. Turner investigated charges of immigration fraud and sham marriages, and later headed the federal prosecution of the 1984 Rajneeshee bioterror attack in The Dalles, Oregon.
The conspirators included : Ma Anand Sheela, Sally @-@ Anne Croft, Chief Financial Officer of Rajneeshpuram ; Susan Hagan, head of security at Rajneeshpuram, Catherine Jane Stork, who bought weapons and silencers and volunteered to be the actual murderer ; Ann Phyllis McCarthy, fourth @-@ in @-@ command of Rajneeshpuram ; and co @-@ conspirators Alma Potter, Carol Matthews, Phyllis Caldwell and Richard Kevin Langford. The conspirators obtained false identification to purchase handguns out @-@ of @-@ state, stalked Turner, and planned to murder him near his workplace in Portland, Oregon. The assassination plot was never carried out and was only discovered later, as a result of the investigation by federal law enforcement into the bioterror attack in The Dalles and other illegal acts by the Rajneeshpuram leadership.
Prosecution of the conspirators began in 1990, when a federal grand jury brought indictments against several of the key players. Some had fled the country, and extradition proceedings against the perpetrators and subsequent prosecution and conviction was not completed for sixteen years. The final conspirator was convicted in 2006, when Catherine Jane Stork agreed to return to the United States from Germany in order to be allowed to visit her ill son in Australia. Eight perpetrators received sentences ranging from five years probation to five years in federal prison and an additional member of the Rajneesh commune pleaded guilty to murder conspiracy. Rajneesh was never prosecuted in relation to the conspiracy, and left the United States after pleading guilty to immigration fraud and agreeing not to reenter the country without permission from the U.S. Attorney General.
= = Planning = =
= = = Hit list = = =
Seven followers ( called Rajneeshees ) of charismatic leader Bhagwan Shree Rajneesh ( now known as Osho ), were convicted of a 1985 conspiracy to assassinate Charles Turner, and an additional unindicted eighth member of the Rajneesh commune pleaded guilty to murder conspiracy. The perpetrators were high @-@ ranking followers within the Rajneeshee organization. Prosecutors in the case stated that the perpetrators had planned to murder Turner after he was appointed to head an investigation into the group's activities in Rajneeshpuram, Oregon. Turner's investigation focused on sham marriages organized by the group, as well as other illegal activities including immigration fraud, and he later headed the federal prosecution relating to the 1984 Rajneeshee bioterror attack in The Dalles, Oregon. Oregon Attorney General Dave Frohnmayer was also involved in investigations of the group, working alongside Turner.
In May 1985, Rajneesh's personal secretary and second @-@ in @-@ command, Sheela Silverman ( Ma Anand Sheela ), gathered the leader's key followers and formed a group of conspirators in order to plan the assassination of Turner, as well as several dissidents among their organization. Sheela stated that Turner's grand jury investigation " threatened the existence of the commune ", and exposed Rajneesh and several of his disciples to criminal prosecution. Sheela hoped that by murdering Turner they would be able to thwart the federal immigration investigation which could have resulted in deportation of Rajneeshee leaders. Three former leaders of the commune including Ma Anand Sheela, Dianne Yvonne Onang ( Ma Anand Puja ), a registered nurse from the Philippines who managed the Rajneeshee medical corporation, and former treasurer of Rajneesh Foundation International and Catherine Jane Stork ( Ma Shanti Bhadra ) of Australia, put together a hit list which included U.S. Attorney Charles Turner and Oregon Attorney General David Frohnmayer.
Susan Hagan ( Ma Anand Su ), a top official in the Rajneeshpuram hierarchy, was also a participant in the assassination conspiracy. Hagan was in charge of the security force at Rajneeshpuram, ran the Rajneesh Investment Corporation, and supervised construction on the commune. Other conspirators in the assassination plot included Ann Phyllis McCarthy ( Ma Yoga Vidya ), president of the Rajneesh commune, and Alma Potter ( Ma Dhyan Yogini ), Ma Anand Sheela's bodyguard and traveling companion. Potter was manager of the Hotel Rajneesh in Portland, Oregon, and a member of the commune's security force. The Oregonian reported that nine people were on the hit list, including : Turner, Frohnmayer, former assistant attorney general Karen H. Green, Wasco County planning director Daniel C. Durow, Wasco County commissioner James L. Comini, investigative journalist for The Oregonian Leslie L. Zaitz, former member Helen C. Byron ( Ma Idam Shunyo ), who had been awarded US $ 1 @.@ 7 million in a lawsuit against Rajneesh Foundation International, her daughter Barbara J. Byron ( Makima ), and Rajneesh's former secretary Laxmi Thakarsi Kuruwa ( Ma Yoga Laxmi ).
= = = Weapons = = =
Catherine Jane Stork volunteered to be the follower who would actually murder Turner, and bought guns and silencers. Stork was known to fellow followers as Ma Shanti Bhadra, and was also one of the three " Big Mammas " in Rajneeshpuram. Sally @-@ Anne Croft ( known by followers as Ma Prem Savita ), an accountant and the group's Chief Financial Officer, provided money for the purchase of weapons related to the plot. Phyllis Caldwell ( Ma Deva Ritka ) described in a federal affidavit how members of the murder conspiracy obtained handguns, referring to Catherine Jane Stork and Sally @-@ Anne Croft : " Shanti B went down to Jesus Grove, and Savita gave us several thousand dollars to use to buy guns. " Jesus Grove referred to a group of trailers where all the leaders of the Rajneesh commune resided, except for Bhagwan Shree Rajneesh.
Ma Anand Sheela and three other Rajneesh followers traveled to New York in the spring of 1985 to acquire false identification. According to a federal indictment, the perpetrators of the assassination plot used a false birth certificate to purchase guns. Two members of the group then traveled to Texas to purchase handguns. Caldwell stated she and Catherine Jane Stork flew to Texas to purchase guns there. They purchased five guns in Texas, but encountered difficulty purchasing handguns in Texas with out @-@ of @-@ state identification and traveled to New Mexico instead. Caldwell said they called back to the commune but the women were instructed " not to come back without the guns ".
In New Mexico, they obtained false identification, and purchased several pistols. Their intention was to purchase guns which were difficult to trace. Caldwell said it was easy to obtain guns in New Mexico : " we found it was pretty easy to buy guns. All you had to do was show some identification and it was easy to get. " Caldwell said she and Stork went to a university library to find the identity " of someone dying very young ", next went " to public records and asked for a copy of a birth certificate " and described how " we got a rent receipt book and just made up a rent receipt ". " And then we were able to go to several different gun shops in Albuquerque with those two bits of identification and buy five different guns and bullets, " said Caldwell. They were able to obtain one Colt.38 @-@ caliber revolver, and four Ruger.357 @-@ caliber Security @-@ Six Magnum revolvers. The conspirators smuggled the guns into Oregon by packing them in luggage and putting the luggage on a Greyhound Lines bus. Caldwell said that she and Stork traveled by bus back to the Rajneesh commune so as to avoid airport metal detectors.
= = = Surveillance = = =
After obtaining guns the conspirators returned to Portland, Oregon. They rented out an apartment in Portland to serve as their base of operations for the assassination of Turner. Rajneesh follower Carol Matthews ( Ma Prem Samadhi ) used a fake name during the planning of the assassination plot, in an attempt to obtain the home address of Charles Turner. According to federal prosecutors Matthews obtained a college yearbook of Turner's, and learned his car's license plate number and his parking location. Court records state that Matthews and an unindicted co @-@ conspirator gave voter registration officials fake identities and told officials they were conducting " a voter survey on President Reagan's economic plan ", in order to obtain Turner's route number and post office box number. The two tried repeating the story with members of the U.S. Postal Service, but the postal officials did not give them Turner's address. They then drove around Turner's neighborhood and were able to find his home by locating a sign in front of | wikitext_103 | [
426,
12210,
17549,
570,
265,
31622,
34024,
7484,
426,
4928,
187,
380,
12210,
17549,
570,
265,
31622,
34024,
7484,
369,
247,
13445,
407,
247,
1387,
273,
1029,
1214,
14,
33,
19947,
18409,
273,
26165,
356,
10320,
1608,
658,
17549,
570,
15897,
313,
1996,
1929,
347,
473,
1200,
80,
2387,
281,
18111,
4024,
8444,
20757,
1157,
253,
840,
1214,
14,
33,
1986,
2077,
10158,
323,
253,
4412,
273,
15427,
964,
17549,
570,
15897,
686,
84,
3367,
14385,
285,
1273,
1214,
14,
33,
275,
1214,
14,
33,
3923,
1157,
7057,
743,
395,
1500,
7896,
313,
1500,
7896,
16309,
1342,
2387,
1157,
17412,
253,
1387,
846,
20757,
369,
11162,
281,
7409,
9676,
2425,
387,
17549,
570,
15897,
13182,
312,
964,
20757,
6949,
7260,
273,
13163,
9116,
285,
23013,
36659,
1157,
285,
1996,
12860,
253,
4400,
14079,
273,
253,
12459,
17549,
570,
265,
31622,
1794,
302,
3775,
2983,
275,
380,
399,
455,
265,
1157,
15427,
964,
2490,
380,
11882,
2392,
2908,
1163,
7057,
743,
395,
1500,
7896,
1157,
32577,
1214,
14,
33,
17467,
13198,
649,
1157,
9060,
18598,
12743,
273,
17549,
570,
15897,
13182,
312,
3706,
20222,
388,
12043,
1157,
1481,
273,
3988,
387,
17549,
570,
15897,
13182,
312,
1157,
23425,
14884,
659,
1064,
1157,
665,
8686,
8914,
285,
2830,
2083,
398,
285,
43659,
281,
320,
253,
4588,
37658,
3706,
7359,
1777,
21767,
261,
32101,
1157,
7002,
1214,
14,
33,
275,
1214,
14,
33,
3923,
273,
17549,
570,
15897,
13182,
312,
3706,
285,
820,
1214,
14,
33,
11882,
2392,
1219,
785,
28753,
1157,
7618,
34313,
1157,
1777,
21767,
261,
2263,
41161,
285,
7727,
15273,
18232,
4379,
964,
380,
11882,
2392,
2797,
3221,
8137,
281,
7471,
1133,
44186,
562,
1214,
14,
33,
273,
1214,
14,
33,
1375,
1157,
33587,
264,
20757,
1157,
285,
9355,
281,
7701,
779,
2822,
521,
21853,
275,
20956,
1157,
15427,
964,
380,
34024,
7484,
369,
1620,
4824,
562,
285,
369,
760,
6888,
1996,
1157,
347,
247,
906,
273,
253,
5839,
407,
4400,
1569,
10473,
715,
253,
1794,
302,
3775,
2983,
275,
380,
399,
455,
265,
285,
643,
9676,
6993,
407,
253,
17549,
570,
15897,
13182,
312,
9550,
964,
2490,
38027,
890,
273,
253,
11882,
2392,
3407,
275,
7901,
1157,
672,
247,
4400,
4936,
4984,
3982,
15825,
942,
1411,
2067,
273,
253,
2234,
3773,
964,
3808,
574,
18436,
253,
2586,
1157,
285,
43258,
539,
10061,
1411,
253,
14549,
38844,
285,
6774,
14079,
285,
9611,
369,
417,
6312,
323,
25279,
1107,
964,
380,
2457,
11882,
1080,
369,
13084,
275,
5403,
1157,
672,
23425,
14884,
659,
1064,
5821,
281,
1091,
281,
253,
1986,
2077,
432,
6176,
275,
1340,
281,
320,
4136,
281,
4143,
617,
2853,
3347,
275,
6976,
964,
16244,
14549,
38844,
2959,
14683,
12319,
432,
2620,
1107,
19077,
281,
2620,
1107,
275,
4400,
5754,
285,
271,
3081,
3558,
273,
253,
17549,
570,
15897,
40757,
23383,
8106,
281,
7701,
13445,
964,
17549,
570,
15897,
369,
1620,
39459,
275,
5886,
281,
253,
13445,
1157,
285,
1669,
253,
1986,
2077,
846,
26412,
8106,
281,
13163,
9116,
285,
33732,
417,
281,
294,
9553,
253,
2586,
1293,
9214,
432,
253,
530,
15,
52,
15,
10158,
4214,
964,
4928,
187,
426,
426,
26722,
426,
426,
4928,
19668,
426,
426,
426,
14473,
1618,
426,
426,
426,
4928,
187,
20400,
18409,
313,
1925,
17549,
570,
265,
248,
265,
2387,
273,
1018,
43307,
6657,
26165,
356,
10320,
1608,
658,
17549,
570,
15897,
313,
1024,
1929,
347,
473,
1200,
80,
2387,
1157,
497,
13084,
273,
247,
12210,
13445,
281,
18111,
4024,
8444,
20757,
1157,
285,
271,
3081,
440,
527,
7025,
23738,
3558,
273,
253,
17549,
570,
15897,
40757,
23383,
8106,
281,
7701,
13445,
964,
380,
14549,
38844,
497,
1029,
1214,
14,
33,
19947,
18409,
1561,
253,
17549,
570,
265,
31622,
6003,
964,
38027,
21176,
275,
253,
1083,
4767,
326,
253,
14549,
38844,
574,
9355,
281,
7701,
20757,
846,
344,
369,
11162,
281,
1481,
271,
5839,
715,
253,
1387,
686,
84,
4712,
275,
17549,
570,
15897,
13182,
312,
1157,
15427,
964,
20757,
686,
84,
5839,
7106,
327,
23013,
36659,
10932,
407,
253,
1387,
1157,
347,
973,
347,
643,
9676,
4712,
1690,
13163,
9116,
1157,
285,
344,
1996,
12860,
253,
4400,
14079,
12600,
281,
253,
12459,
17549,
570,
265,
31622,
1794,
302,
3775,
2983,
275,
380,
399,
455,
265,
1157,
15427,
964,
15427,
10158,
4214,
16908,
25847,
73,
10602,
4071,
369,
671,
3206,
275,
14006,
273,
253,
1387,
1157,
2444,
12936,
20757,
964,
2490,
496,
2552,
12210,
1157,
17549,
570,
15897,
686,
84,
3367,
14385,
285,
1273,
1214,
14,
33,
275,
1214,
14,
33,
3923,
1157,
1500,
7896,
16309,
1342,
313,
7057,
743,
395,
1500,
7896,
2387,
1157,
13037,
253,
6657,
686,
84,
2234,
18409,
285,
4447,
247,
1387,
273,
11882,
2392,
275,
1340,
281,
2098,
253,
34024,
273,
20757,
1157,
347,
973,
347,
2067,
5408,
9274,
2190,
616,
6003,
964,
1500,
7896,
4767,
326,
20757,
686,
84,
4936,
4984,
5839,
346,
13699,
253,
6242,
273,
253,
40757,
346,
1157,
285,
7329,
17549,
570,
15897,
285,
2067,
273,
521,
33846,
281,
6424,
14079,
964,
1500,
7896,
13937,
326,
407,
7701,
272,
20757,
597,
651,
320,
2104,
281,
41027,
253,
4400,
13163,
5839,
534,
812,
452,
7369,
275,
36759,
273,
17549,
570,
265,
31622,
7038,
964,
9064,
3438,
7038,
273,
253,
40757,
1690,
7057,
743,
395,
1500,
7896,
1157,
399,
757,
570,
714,
29997,
570,
1623,
606,
313,
7057,
743,
395,
14902,
6362,
2387,
1157,
247,
9856,
15339,
432,
253,
22075,
665,
7303,
253,
17549,
570,
265,
31622,
3739,
13739,
1157,
285,
3438,
21764,
83,
273,
17549,
570,
15897,
6807,
5625,
285,
23425,
14884,
659,
1064,
313,
7057,
1608,
11924,
378,
10178,
376,
2387,
273,
6976,
1157,
1691,
2366,
247,
4352,
1618,
534,
2908,
530,
15,
52,
15,
10158,
8444,
20757,
285,
15427,
10158,
4214,
5119,
25847,
73,
10602,
4071,
964,
2490,
20222,
388,
12043,
313,
7057,
743,
395,
4137,
2387,
1157,
247,
1755,
3565,
275,
253,
17549,
570,
15897,
13182,
312,
19868,
1157,
369,
671,
247,
14687,
275,
253,
34024,
13445,
964,
388,
12043,
369,
275,
4179,
273,
253,
3988,
3490,
387,
17549,
570,
15897,
13182,
312,
1157,
6337,
253,
17549,
570,
15897,
32886,
11294,
1157,
285,
22296,
5140,
327,
253,
40757,
964,
5131,
11882,
2392,
275,
253,
34024,
7484,
2908,
7359,
1777,
21767,
261,
32101,
313,
7057,
44052,
657,
301,
5973,
2387,
1157,
4007,
273,
253,
17549,
570,
15897,
40757,
1157,
285,
1219,
785,
28753,
313,
7057,
399,
1994,
266,
714,
462,
5391,
2387,
1157,
7057,
743,
395,
1500,
7896,
686,
84,
2133,
18625,
285,
15153,
16866,
964,
28753,
369,
7205,
273,
253,
14469,
17549,
570,
15897,
275,
20956,
1157,
15427,
1157,
285,
247,
3558,
273,
253,
40757,
686,
84,
3988,
3490,
964,
380,
15427,
757,
2361,
326,
7457,
952,
497,
327,
253,
4352,
1618,
1157,
1690,
1163,
20757,
1157,
25847,
73,
10602,
4071,
1157,
3438,
13372,
6834,
2087,
25062,
388,
15,
6115,
1157,
12349,
1940,
3928,
7219,
6423,
10213,
330,
15,
8502,
736,
1157,
12349,
1940,
3928,
28845,
5490,
418,
15,
1176,
5391,
1157,
35070,
17264,
323,
380,
15427,
757,
35657,
418,
15,
1503,
1942,
91,
1157,
3438,
3558,
23442,
330,
15,
43634,
313,
7057,
4031,
312,
1608,
328,
11904,
2387,
1157,
665,
574,
644,
11941,
1982,
370,
337,
1214,
15,
33,
818,
3041,
275,
247,
15091,
1411,
17549,
570,
15897,
6807,
5625,
1157,
617,
6122,
19917,
500,
15,
43634,
313,
26792,
8032,
2387,
1157,
285,
17549,
570,
15897,
686,
84,
3438,
14385,
418,
991,
7373,
596,
518,
1032,
74,
611,
21384,
8754,
313,
7057,
44052,
418,
991,
7373,
2387,
964,
4928,
187,
426,
426,
426,
844,
40127,
426,
426,
426,
4928,
187,
23425,
14884,
659,
1064,
43659,
281,
320,
253,
47201,
665,
651,
2686,
7701,
20757,
1157,
285,
8686,
11942,
285,
2830,
2083,
398,
964,
659,
1064,
369,
1929,
281,
7715,
18409,
347,
7057,
1608,
11924,
378,
10178,
376,
1157,
285,
369,
671,
581,
273,
253,
1264,
346,
7967,
353,
3681,
284,
346,
275,
17549,
570,
15897,
13182,
312,
964,
32577,
1214,
14,
33,
17467,
13198,
649,
313,
1929,
407,
18409,
347,
7057,
13343,
12933,
5741,
2387,
1157,
271,
49174,
285,
253,
1387,
686,
84,
9060,
18598,
12743,
1157,
2530,
2583,
323,
253,
7471,
273,
8914,
2905,
281,
253,
7484,
964,
1777,
21767,
261,
2263,
41161,
313,
7057,
8397,
66,
416,
262,
4530,
2387,
2529,
275,
247,
4400,
18360,
849,
2758,
273,
253,
7701,
13445,
2797,
1133,
44186,
1157,
14339,
281,
23425,
14884,
659,
1064,
285,
32577,
1214,
14,
33,
17467,
13198,
649,
1163,
346,
1608,
11924,
378,
2427,
1066,
281,
7670,
32431,
1157,
285,
12933,
5741,
3534,
441,
2067,
8014,
8918,
281,
897,
281,
4489,
11942,
964,
346,
7670,
32431,
6289,
281,
247,
1387,
273,
47958,
835,
512,
253,
7038,
273,
253,
17549,
570,
15897,
40757,
45986,
1157,
3707,
323,
26165,
356,
10320,
1608,
658,
17549,
570,
15897,
964,
2490,
7057,
743,
395,
1500,
7896,
285,
1264,
643,
17549,
570,
15897,
18409,
19624,
281,
1457,
2816,
275,
253,
7203,
273,
12210,
281,
16270,
3221,
8137,
964,
4794,
281,
247,
4400,
17612,
1157,
253,
14549,
38844,
273,
253,
34024,
7484,
908,
247,
3221,
4201,
14204,
281,
7471,
11942,
964,
5761,
2758,
273,
253,
1387,
840,
19624,
281,
6112,
281,
7471,
1133,
44186,
964,
2263,
41161,
4767,
703,
285,
23425,
14884,
659,
1064,
18811,
281,
6112,
281,
7471,
11942,
627,
964,
1583,
9716,
2620,
11942,
275,
6112,
1157,
533,
14494,
10183,
21016,
1133,
44186,
275,
6112,
342,
562,
1214,
14,
33,
273,
1214,
14,
33,
1375,
8137,
285,
19624,
281,
1457,
8987,
3185,
964,
2263,
41161,
753,
597,
1925,
896,
281,
253,
40757,
533,
253,
2255,
497,
17189,
346,
417,
281,
1705,
896,
1293,
253,
11942,
346,
964,
2490,
496,
1457,
8987,
1157,
597,
2797,
3221,
8137,
1157,
285,
9716,
2067,
13983,
3017,
964,
7160,
8208,
369,
281,
7471,
11942,
534,
497,
2834,
281,
10711,
964,
2263,
41161,
753,
352,
369,
3477,
281,
4044,
11942,
275,
1457,
8987,
1163,
346,
359,
1119,
352,
369,
3965,
3477,
281,
4489,
11942,
964,
1876,
368,
574,
281,
513,
369,
921,
690,
8137,
285,
352,
369,
3477,
281,
755,
964,
346,
2263,
41161,
753,
703,
285,
659,
1064,
2427,
281,
247,
9835,
6335,
281,
1089,
253,
6489,
346,
273,
3095,
13889,
1077,
2872,
346,
1157,
1735,
2427,
346,
281,
1345,
5861,
285,
2546,
323,
247,
3491,
273,
247,
4201,
14204,
346,
285,
2529,
849,
346,
359,
1694,
247,
8845,
17191,
1984,
285,
816,
1160,
598,
247,
8845,
17191,
346,
964,
346,
1244,
840,
359,
497,
2104,
281,
564,
281,
2067,
1027,
5654,
16999,
275,
1219,
9111,
14056,
1452,
342,
1110,
767,
9886,
273,
8137,
285,
4489,
2620,
1027,
11942,
285,
29093,
1157,
346,
753,
2263,
41161,
964,
1583,
497,
2104,
281,
4044,
581,
2065,
85,
964,
1839,
1214,
14,
33,
46672,
3585,
14930,
1157,
285,
1740,
30322,
254,
964,
24424,
1214,
14,
33,
46672,
9044,
1214,
14,
33,
11067,
18482,
360,
46577,
735,
964,
380,
11882,
2392,
924,
18050,
1070,
253,
11942,
715,
15427,
407,
22485,
731,
275,
36905,
285,
8133,
253,
36905,
327,
247,
23902,
73,
517,
31322,
1685,
964,
2263,
41161,
753,
326,
703,
285,
659,
1064,
19624,
407,
1685,
896,
281,
253,
17549,
570,
15897,
40757,
594,
347,
281,
3693,
13952,
5148,
25421,
964,
4928,
187,
426,
426,
426,
38056,
11845,
426,
426,
426,
4928,
187,
2732,
13546,
11942,
253,
11882,
2392,
4895,
281,
20956,
1157,
15427,
964,
1583,
33437,
562,
271,
10230,
275,
20956,
281,
5752,
347,
616,
2613,
273,
5871,
323,
253,
34024,
273,
20757,
964,
17549,
570,
15897,
47201,
7618,
34313,
313,
7057,
13343,
5769,
324,
5801,
2387,
908,
247,
15223,
1416,
1309,
253,
7219,
273,
253,
34024,
7484,
1157,
275,
271,
3177,
281,
4044,
253,
1728,
2953,
273,
8444,
20757,
964,
4794,
281,
4400,
27355,
34313,
2797,
247,
6831,
807,
3305,
273,
20757,
686,
84,
1157,
285,
6311,
521,
1113,
686,
84,
7981,
5340,
1180,
285,
521,
12102,
4328,
964,
2111,
5861,
1375,
326,
34313,
285,
271,
440,
527,
7025,
820,
1214,
14,
33,
11882,
1080,
3534,
23800,
12960,
6338,
15223,
22925,
285,
2183,
6338,
597,
497,
16472,
346,
247,
23800,
6630,
327,
3918,
25556,
686,
84,
5054,
2098,
346,
1157,
275,
1340,
281,
4044,
20757,
686,
84,
7622,
1180,
285,
1501,
3906,
3817,
1180,
964,
380,
767,
3597,
24385,
253,
2926,
342,
2758,
273,
253,
530,
15,
52,
15,
46574,
6631,
1157,
533,
253,
41448,
6338,
858,
417,
1918,
731,
20757,
686,
84,
2953,
964,
1583,
840,
12668,
1475,
20757,
686,
84,
9168,
285,
497,
2104,
281,
1089,
521,
1728,
407,
43042,
247,
861,
275,
2914,
273
] |
Pao @-@ ting Fu, where the Chinese government was believed to have found asylum after Peking was captured by western forces. The Victorians joined a force of 7 @,@ 500 men on a ten @-@ day march to the fort, once again only to find that it had already surrendered. The Victorians then garrisoned Tientsin and the New South Wales contingent undertook garrison duties in Peking. HMCS Protector was mostly used for survey, transport, and courier duties in the Gulf of Chihli, before departing in November. The naval brigades remained during the winter, unhappily performing policing and guard duties, as well as working as railwaymen and fire @-@ fighters. They left China in March 1901, having played only a minor role in a few offensives and punitive expeditions and in the restoration of civil order. Six Australians died from sickness and injury, but none were killed as a result of enemy action.
= = Australian military forces at Federation, 1901 = =
The Commonwealth of Australia came into existence on 1 January 1901 as a result of the federation of the Australian colonies. Under the Constitution of Australia, defence responsibility was now vested in the new federal government. The co @-@ ordination of Australia @-@ wide defensive efforts in the face of Imperial German interest in the Pacific Ocean was one of driving forces behind federalism, and the Department of Defence immediately came into being as a result, while the Commonwealth Military Forces ( early forerunner of the Australian Army ) and Commonwealth Naval Force were also soon established.
The Australian Commonwealth Military Forces came into being on 1 March 1901 and all the colonial forces — including those still in South Africa — became part of the new force. 28 @,@ 923 colonial soldiers, including 1 @,@ 457 professional soldiers, 18 @,@ 603 paid militia and 8 @,@ 863 unpaid volunteers, were subsequently transferred. The individual units continued to be administered under the various colonial Acts until the Defence Act 1903 brought all the units under one piece of legislation. This Act also prevented the raising of standing infantry units and specified that militia forces could not be used in industrial disputes or serve outside Australia. However, the majority of soldiers remained in militia units, known as the Citizen Military Forces ( CMF ). Major General Sir Edward Hutton — a former commander of the New South Wales Military Forces — subsequently became the first commander of the Commonwealth Military Forces on 26 December and set to work devising an integrated structure for the new army. In 1911, following a report by Lord Kitchener the Royal Military College, Duntroon was established, as was a system of universal National Service.
Prior to federation each self @-@ governing colony had operated its own naval force. These navies were small and lacked blue water capabilities, forcing the separate colonies to subsidise the cost of a British naval squadron in their waters for decades. The colonies maintained control over their respective navies until 1 March 1901, when the Commonwealth Naval Force was created. This new force also lacked blue water capable ships, and ultimately did not lead to a change in Australian naval policy. In 1907 Prime Minister Alfred Deakin and Creswell, while attending the Imperial Conference in London, sought the British Government's agreement to end the subsidy system and develop an Australian navy. The Admiralty rejected and resented the challenge, but suggested diplomatically that a small fleet of destroyers and submarines would be sufficient. Deakin was unimpressed, and in 1908 invited the American Great White Fleet to visit Australia. This visit fired public enthusiasm for a modern navy and in part led to the order of two 700 @-@ ton River @-@ class destroyers. The surge in German naval construction prompted the Admiralty to change their position however and the Royal Australian Navy was subsequently formed in 1911, absorbing the Commonwealth Naval Force. On 4 October 1913, the new fleet steamed through Sydney Heads, consisting of the battlecruiser HMAS Australia, three light cruisers, and three destroyers, while several other ships were still under construction. And as a consequence the navy entered the First World War as a formidable force.
The Australian Flying Corps ( AFC ) was established as part of the Commonwealth Military Forces in 1912, prior to the formation of the Australian Military Forces in 1916 and was later separated in 1921 to form the Royal Australian Air Force, making it the second oldest air force in the world. Regardless, the service branches were not linked by a single chain of command however, and each reported to their own minister and had separate administrative arrangements and government departments.
= = First World War, 1914 – 18 = =
= = = Outbreak of hostilities = = =
When Britain declared war on Germany at the start of the First World War, the Australian government rapidly followed suit, with Prime Minister Joseph Cook declaring on 5 August 1914 that "... when the Empire is at war, so also is Australia " and reflecting the sentiment of many Australians that any declaration of war by Britain automatically included Australia. This was itself in part due to the large number of British @-@ born citizens and first generation Anglo @-@ Australians that made up the Australian population at the time. Indeed, by the end of the war almost 20 % of those who served in the Australian forces had been born in Britain.
As the existing militia forces were unable to serve overseas under the provisions of the Defence Act 1903, an all @-@ volunteer expeditionary force known as the Australian Imperial Force ( AIF ) was formed and recruitment began on 10 August 1914. The government pledged 20 @,@ 000 men, organised as one infantry division and one light horse brigade plus supporting units. Enlistment and organisation was primarily regionally based and was undertaken under mobilisation plans drawn up in 1912. The first commander was Major General William Bridges, who also assumed command of the 1st Division. Throughout the course of the conflict Australian efforts were predominantly focused upon the ground war, although small air and naval forces were also committed.
= = = Occupation of German New Guinea = = =
Following the outbreak of war Australian forces moved quickly to reduce the threat to shipping posed by the proximity of Germany's Pacific colonies. The Australian Naval and Military Expeditionary Force ( AN & MEF ), a 2000 @-@ man volunteer force — separate from the AIF — and consisting of an infantry battalion plus 500 naval reservists and ex @-@ sailors, was rapidly formed under the command of William Holmes. The objectives of the force were the wireless stations on Nauru, and those at Yap in the Caroline Islands, and at Rabaul in German New Guinea. The force reached Rabaul on 11 September 1914 and occupied it the next day, encountering only brief resistance from the German and native defenders during fighting at Bita Paka and Toma. German New Guinea surrendered on 17 September 1914. Australian losses were light, including six killed during the fighting, but were compounded by the mysterious loss offshore of the submarine AE1 with all 35 men aboard.
= = = Gallipoli = = =
The AIF departed by ship in a single convoy from Albany on 1 November 1914. During the journey one of the convoy's naval escorts — HMAS Sydney — engaged and destroyed the German cruiser SMS Emden at the Battle of Cocos on 8 November, in the first ship @-@ to @-@ ship action involving the Royal Australian Navy. Although originally bound for England to undergo further training and then for employment on the Western Front, the Australians were instead sent to British @-@ controlled Egypt to pre @-@ empt any Turkish attack against the strategically important Suez Canal, and with a view to opening another front against the Central Powers.
Aiming to knock Turkey out of the war the British then decided to stage an amphibious lodgement at Gallipoli and following a period of training and reorganisation the Australians were included amongst the British, Indian and French forces committed to the campaign. The combined Australian and New Zealand Army Corps ( ANZAC ) — commanded by British general William Birdwood — subsequently landed at Anzac Cove on the Gallipoli peninsula on 25 April 1915. Although promising to transform the war if successful, the Gallipoli Campaign was ill @-@ conceived and ultimately lasted eight months of bloody stalemate, without achieving its objectives. Australian casualties totalled 26 @,@ 111, including 8 @,@ 141 killed.
For Australians and New Zealanders the Gallipoli campaign came to symbolise an important milestone in the emergence of both nations as independent actors on the world stage and the development of a sense of national identity. Today, the date of the initial landings, 25 April, is known as Anzac Day in Australia and New Zealand and every year thousands of people gather at memorials in both nations, as well as Turkey, to honour the bravery and sacrifice of the original Anzacs, and of all those who have subsequently lost their lives in war.
= = = Egypt and Palestine = = =
After the withdrawal from Gallipoli the Australians returned to Egypt and the AIF underwent a major expansion. In 1916 the infantry began to move to France while the cavalry units remained in the Middle East to fight the Turks. Australian troops of the Anzac Mounted Division and the Australian Mounted Division saw action in all the major battles of the Sinai and Palestine Campaign, playing a pivotal role in fighting the Turkish troops that were threatening British control of Egypt. The Australian's first saw combat during the Senussi uprising in the Libyan Desert and the Nile Valley, during which the combined British forces successfully put down the primitive pro @-@ Turkish Islamic sect with heavy casualties. The Anzac Mounted Division subsequently saw considerable action in the Battle of Romani against the Turkish between 3 – 5 August 1916, with the Turks eventually pushed back. Following this victory the British forces went on the offensive | wikitext_103 | [
3643,
80,
1214,
14,
33,
39838,
23257,
1157,
835,
253,
5628,
2208,
369,
6566,
281,
452,
1119,
23717,
846,
367,
22230,
369,
10848,
407,
10439,
5621,
964,
380,
9964,
2458,
7416,
247,
3490,
273,
818,
1214,
13,
33,
6783,
1821,
327,
247,
3578,
1214,
14,
33,
1388,
14172,
281,
253,
7574,
1157,
2378,
969,
760,
281,
1089,
326,
352,
574,
2168,
41594,
964,
380,
9964,
2458,
840,
49564,
264,
308,
1104,
249,
285,
253,
1457,
3684,
15420,
32391,
42201,
49564,
12803,
275,
367,
22230,
964,
20307,
5166,
8694,
1870,
369,
6571,
908,
323,
6630,
1157,
4616,
1157,
285,
2565,
4586,
12803,
275,
253,
18351,
273,
775,
6356,
965,
1157,
1078,
48373,
275,
4596,
964,
380,
25186,
28097,
3355,
6376,
1309,
253,
8986,
1157,
20209,
1212,
1031,
9591,
48638,
285,
7496,
12803,
1157,
347,
973,
347,
2444,
347,
18217,
3767,
285,
3289,
1214,
14,
33,
20998,
964,
1583,
1669,
4135,
275,
3919,
40488,
1157,
1907,
4546,
760,
247,
5884,
2554,
275,
247,
1643,
745,
561,
1644,
285,
29460,
16625,
4431,
285,
275,
253,
20384,
273,
5079,
1340,
964,
11067,
45373,
4962,
432,
31009,
285,
4975,
1157,
533,
5293,
497,
5339,
347,
247,
906,
273,
9054,
2250,
964,
4928,
187,
426,
426,
9943,
4668,
5621,
387,
20369,
1157,
40488,
426,
426,
4928,
187,
380,
16342,
273,
6976,
2210,
715,
6242,
327,
337,
4247,
40488,
347,
247,
906,
273,
253,
10208,
3328,
273,
253,
9943,
19665,
964,
6166,
253,
10350,
273,
6976,
1157,
17147,
8294,
369,
1024,
37478,
275,
253,
747,
4400,
2208,
964,
380,
820,
1214,
14,
33,
4036,
1515,
273,
6976,
1214,
14,
33,
4618,
14397,
6031,
275,
253,
2454,
273,
23032,
5685,
1600,
275,
253,
11553,
17323,
369,
581,
273,
6276,
5621,
3212,
4400,
1204,
1157,
285,
253,
4487,
273,
32831,
4745,
2210,
715,
1146,
347,
247,
906,
1157,
1223,
253,
16342,
20884,
24495,
313,
2393,
2273,
28971,
273,
253,
9943,
8663,
2387,
285,
16342,
29066,
10627,
497,
671,
3517,
4232,
964,
2490,
380,
9943,
16342,
20884,
24495,
2210,
715,
1146,
327,
337,
3919,
40488,
285,
512,
253,
21441,
5621,
1905,
1690,
1110,
1335,
275,
3684,
7531,
1905,
3395,
629,
273,
253,
747,
3490,
964,
3349,
1214,
13,
33,
898,
1508,
21441,
9647,
1157,
1690,
337,
1214,
13,
33,
38966,
5702,
9647,
1157,
1283,
1214,
13,
33,
721,
2941,
5087,
39260,
285,
854,
1214,
13,
33,
854,
3571,
35778,
15986,
1157,
497,
9674,
9495,
964,
380,
2060,
5085,
4821,
281,
320,
11966,
762,
253,
2710,
21441,
34013,
1919,
253,
32831,
3162,
40937,
3982,
512,
253,
5085,
762,
581,
5313,
273,
10843,
964,
831,
3162,
671,
14415,
253,
12976,
273,
6306,
32468,
5085,
285,
7616,
326,
39260,
5621,
812,
417,
320,
908,
275,
9787,
24598,
390,
5752,
3345,
6976,
964,
1723,
1157,
253,
5020,
273,
9647,
6376,
275,
39260,
5085,
1157,
1929,
347,
253,
47422,
20884,
24495,
313,
12280,
39,
2387,
964,
11432,
4214,
9011,
12824,
388,
28738,
1905,
247,
3438,
17747,
273,
253,
1457,
3684,
15420,
20884,
24495,
1905,
9674,
3395,
253,
806,
17747,
273,
253,
16342,
20884,
24495,
327,
3436,
4565,
285,
873,
281,
789,
1474,
2182,
271,
8527,
2605,
323,
253,
747,
8544,
964,
496,
34283,
1157,
1563,
247,
1304,
407,
6203,
31990,
254,
253,
10043,
20884,
6822,
1157,
399,
2084,
287,
251,
369,
4232,
1157,
347,
369,
247,
985,
273,
10898,
3313,
6631,
964,
2490,
13036,
281,
10208,
3328,
1016,
1881,
1214,
14,
33,
13200,
17562,
574,
11658,
697,
1211,
25186,
3490,
964,
2053,
6563,
447,
497,
1355,
285,
20296,
4797,
1824,
13789,
1157,
17190,
253,
4858,
19665,
281,
14761,
885,
253,
2105,
273,
247,
4782,
25186,
40294,
275,
616,
12685,
323,
8007,
964,
380,
19665,
8838,
1453,
689,
616,
9056,
6563,
447,
1919,
337,
3919,
40488,
1157,
672,
253,
16342,
29066,
10627,
369,
3562,
964,
831,
747,
3490,
671,
20296,
4797,
1824,
7032,
11811,
1157,
285,
9142,
858,
417,
1421,
281,
247,
1818,
275,
9943,
25186,
3646,
964,
496,
39118,
12128,
8308,
24179,
1605,
28709,
285,
48493,
4714,
1157,
1223,
16362,
253,
23032,
12651,
275,
4693,
1157,
7799,
253,
4782,
7295,
686,
84,
4345,
281,
990,
253,
14761,
90,
985,
285,
1287,
271,
9943,
29401,
964,
380,
28244,
555,
10945,
285,
501,
8006,
253,
5691,
1157,
533,
5125,
27242,
5372,
326,
247,
1355,
18500,
273,
6909,
398,
285,
26547,
1100,
651,
320,
4209,
964,
1605,
28709,
369,
440,
11548,
2079,
1157,
285,
275,
36754,
12470,
253,
2448,
6495,
5219,
32521,
281,
4143,
6976,
964,
831,
4143,
11226,
1345,
23027,
323,
247,
4980,
29401,
285,
275,
629,
3977,
281,
253,
1340,
273,
767,
18450,
1214,
14,
33,
7020,
7121,
1214,
14,
33,
966,
6909,
398,
964,
380,
12061,
275,
5685,
25186,
5140,
20588,
253,
28244,
555,
281,
1818,
616,
1899,
2299,
285,
253,
10043,
9943,
13669,
369,
9674,
4447,
275,
34283,
1157,
33121,
253,
16342,
29066,
10627,
964,
1623,
577,
4437,
33920,
1157,
253,
747,
18500,
2870,
3163,
949,
17361,
754,
6594,
1157,
11253,
273,
253,
6680,
49010,
9141,
20307,
1719,
6976,
1157,
1264,
1708,
5385,
34768,
1157,
285,
1264,
6909,
398,
1157,
1223,
2067,
643,
11811,
497,
1335,
762,
5140,
964,
1244,
347,
247,
9936,
253,
29401,
5966,
253,
3973,
3645,
3660,
347,
247,
36418,
3490,
964,
2490,
380,
9943,
42027,
17729,
313,
329,
6739,
2387,
369,
4232,
347,
629,
273,
253,
16342,
20884,
24495,
275,
32295,
1157,
2720,
281,
253,
4702,
273,
253,
9943,
20884,
24495,
275,
31246,
285,
369,
1996,
9070,
275,
33531,
281,
830,
253,
10043,
9943,
6037,
10627,
1157,
2403,
352,
253,
1273,
17172,
2329,
3490,
275,
253,
1533,
964,
31565,
1157,
253,
2579,
12998,
497,
417,
7939,
407,
247,
2014,
5931,
273,
3923,
2299,
1157,
285,
1016,
2361,
281,
616,
1211,
9843,
285,
574,
4858,
10656,
16669,
285,
2208,
20036,
964,
4928,
187,
426,
426,
3973,
3645,
3660,
1157,
26478,
1108,
1283,
426,
426,
4928,
19668,
426,
426,
426,
6282,
7054,
273,
3167,
3191,
426,
426,
426,
4928,
187,
2091,
9643,
8884,
2137,
327,
6176,
387,
253,
1265,
273,
253,
3973,
3645,
3660,
1157,
253,
9943,
2208,
9086,
3560,
4176,
1157,
342,
12128,
8308,
10092,
11980,
27906,
327,
608,
4223,
26478,
326,
346,
3346,
672,
253,
13958,
310,
387,
2137,
1157,
594,
671,
310,
6976,
346,
285,
18964,
253,
21942,
273,
1142,
45373,
326,
667,
16204,
273,
2137,
407,
9643,
8356,
2908,
6976,
964,
831,
369,
3139,
275,
629,
1955,
281,
253,
1781,
1180,
273,
4782,
1214,
14,
33,
5686,
7815,
285,
806,
5978,
33252,
1214,
14,
33,
45373,
326,
1160,
598,
253,
9943,
3072,
387,
253,
673,
964,
8079,
1157,
407,
253,
990,
273,
253,
2137,
2761,
1384,
2462,
273,
1110,
665,
5608,
275,
253,
9943,
5621,
574,
644,
5686,
275,
9643,
964,
2490,
1284,
253,
5368,
39260,
5621,
497,
7591,
281,
5752,
21344,
762,
253,
10067,
273,
253,
32831,
3162,
40937,
1157,
271,
512,
1214,
14,
33,
20848,
26018,
552,
3490,
1929,
347,
253,
9943,
23032,
10627,
313,
329,
3801,
2387,
369,
4447,
285,
16510,
3407,
327,
884,
4223,
26478,
964,
380,
2208,
35696,
1384,
1214,
13,
33,
20181,
1821,
1157,
29070,
347,
581,
32468,
9025,
285,
581,
1708,
8815,
43594,
5043,
8109,
5085,
964,
3035,
3550,
420,
285,
19156,
369,
8558,
2919,
595,
1754,
285,
369,
20023,
762,
31551,
5837,
5827,
8392,
598,
275,
32295,
964,
380,
806,
17747,
369,
11432,
4214,
7252,
33628,
2510,
1157,
665,
671,
8025,
3923,
273,
253,
337,
296,
9333,
964,
28786,
253,
2282,
273,
253,
7344,
9943,
6031,
497,
18705,
7106,
2220,
253,
3216,
2137,
1157,
3738,
1355,
2329,
285,
25186,
5621,
497,
671,
7730,
964,
4928,
187,
426,
426,
426,
29314,
318,
273,
5685,
1457,
34410,
426,
426,
426,
4928,
187,
11977,
253,
15742,
273,
2137,
9943,
5621,
4395,
4541,
281,
4796,
253,
4322,
281,
15076,
22691,
407,
253,
18326,
273,
6176,
686,
84,
11553,
19665,
964,
380,
9943,
29066,
285,
20884,
45626,
539,
552,
10627,
313,
2933,
708,
10616,
39,
2387,
1157,
247,
5307,
1214,
14,
33,
637,
20848,
3490,
1905,
4858,
432,
253,
329,
3801,
1905,
285,
11253,
273,
271,
32468,
40716,
5043,
6783,
25186,
9298,
1346,
285,
385,
1214,
14,
33,
35089,
1157,
369,
9086,
4447,
762,
253,
3923,
273,
7252,
23555,
964,
380,
16566,
273,
253,
3490,
497,
253,
11744,
10988,
327,
427,
4411,
86,
1157,
285,
1110,
387,
714,
522,
275,
253,
34655,
18708,
1157,
285,
387,
416,
10442,
335,
275,
5685,
1457,
34410,
964,
380,
3490,
4925,
416,
10442,
335,
327,
1903,
4397,
26478,
285,
13598,
352,
253,
1735,
1388,
1157,
13329,
272,
760,
4864,
5052,
432,
253,
5685,
285,
7925,
31342,
1309,
8615,
387,
378,
5741,
367,
10573,
285,
308,
3691,
964,
5685,
1457,
34410,
41594,
327,
1722,
4397,
26478,
964,
9943,
11655,
497,
1708,
1157,
1690,
2800,
5339,
1309,
253,
8615,
1157,
533,
497,
509,
8055,
407,
253,
19796,
2957,
30569,
273,
253,
35898,
29946,
18,
342,
512,
4791,
1821,
22995,
964,
4928,
187,
426,
426,
426,
11414,
532,
10424,
426,
426,
426,
4928,
187,
380,
329,
3801,
29115,
407,
6215,
275,
247,
2014,
47005,
432,
38752,
327,
337,
4596,
26478,
964,
6408,
253,
9455,
581,
273,
253,
47005,
686,
84,
25186,
6262,
8707,
1905,
20307,
1719,
17361,
1905,
9583,
285,
11069,
253,
5685,
50148,
37100,
4825,
3354,
387,
253,
15764,
273,
40825,
375,
327,
854,
4596,
1157,
275,
253,
806,
6215,
1214,
14,
33,
281,
1214,
14,
33,
6215,
2250,
7668,
253,
10043,
9943,
13669,
964,
4129,
8927,
3033,
323,
5854,
281,
15080,
2007,
3733,
285,
840,
323,
8410,
327,
253,
6359,
15808,
1157,
253,
45373,
497,
3185,
2197,
281,
4782,
1214,
14,
33,
6537,
10253,
281,
638,
1214,
14,
33,
5766,
667,
18416,
2983,
1411,
253,
3483,
1037,
1774,
322,
17761,
33042,
1157,
285,
342,
247,
1859,
281,
5909,
1529,
2914,
1411,
253,
8170,
33904,
964,
2490,
35291,
272,
281,
7569,
14307,
562,
273,
253,
2137,
253,
4782,
840,
4425,
281,
3924,
271,
49195,
784,
22237,
20800,
387,
11414,
532,
10424,
285,
1563,
247,
2180,
273,
3733,
285,
294,
7397,
5837,
253,
45373,
497,
2908,
15995,
253,
4782,
1157,
5396,
285,
5112,
5621,
7730,
281,
253,
4544,
964,
380,
5678,
9943,
285,
1457,
12123,
8663,
17729,
313,
2933,
59,
1934,
2387,
1905,
26814,
407,
4782,
2087,
7252,
25080,
5308,
1905,
9674,
17735,
387,
743,
91,
317,
330,
710,
327,
253,
11414,
532,
10424,
42816,
327,
2030,
4162,
27698,
964,
4129,
12532,
281,
4979,
253,
2137,
604,
5547,
1157,
253,
11414,
532,
10424,
27069,
369,
2853,
1214,
14,
33,
20913,
285,
9142,
20578,
4314,
2607,
273,
19867,
32481,
358,
366,
1157,
1293,
17170,
697,
16566,
964,
9943,
32853,
1931,
18859,
3436,
1214,
13,
33,
11334,
1157,
1690,
854,
1214,
13,
33,
21886,
5339,
964,
2490,
1198,
45373,
285,
1457,
12123,
398,
253,
11414,
532,
10424,
4544,
2210,
281,
9484,
885,
271,
1774,
41457,
275,
253,
21313,
273,
1097,
12390,
347,
3907,
14142,
327,
253,
1533,
3924,
285,
253,
2440,
273,
247,
3282,
273,
3872,
6489,
964,
11056,
1157,
253,
3522,
273,
253,
3302,
2659,
723,
1157,
2030,
4162,
1157,
310,
1929,
347,
743,
91,
317,
6258,
275,
6976,
285,
1457,
12123,
285,
1046,
807,
6763,
273,
952,
9580,
387,
16407,
8075,
275,
1097,
12390,
1157,
347,
973,
347,
14307,
1157,
281,
19248,
253,
6513,
635,
285,
17789,
273,
253,
3236,
743,
91,
18944,
1157,
285,
273,
512,
1110,
665,
452,
9674,
3663,
616,
4852,
275,
2137,
964,
4928,
187,
426,
426,
426,
10253,
285,
29313,
426,
426,
426,
4928,
187,
2732,
253,
18185,
432,
11414,
532,
10424,
253,
45373,
4895,
281,
10253,
285,
253,
329,
3801,
13368,
247,
2201,
7466,
964,
496,
31246,
253,
32468,
3407,
281,
2118,
281,
6181,
1223,
253,
36248,
5085,
6376,
275,
253,
10515,
5791,
281,
3819,
253,
47563,
964,
9943,
10824,
273,
253,
743,
91,
317,
8352,
264,
9333,
285,
253,
9943,
8352,
264,
9333,
3047,
2250,
275,
512,
253,
2201,
20303,
273,
253,
322,
45194,
285,
29313,
27069,
1157,
4882,
247,
30847,
2554,
275,
8615,
253,
18416,
10824,
326,
497,
18844,
4782,
1453,
273,
10253,
964,
380,
9943,
686,
84,
806,
3047,
11757,
1309,
253,
4673,
20191,
47930,
275,
253,
9271,
8202,
36274,
285,
253,
43093,
10947,
1157,
1309,
534,
253,
5678,
4782,
5621,
8379,
1691,
1066,
253,
20523,
354,
1214,
14,
33,
18416,
13281,
25102,
342,
5536,
32853,
964,
380,
743,
91,
317,
8352,
264,
9333,
9674,
3047,
10665,
2250,
275,
253,
15764,
273,
8370,
74,
1411,
253,
18416,
875,
495,
1108,
608,
4223,
31246,
1157,
342,
253,
47563,
6524,
10184,
896,
964,
11977,
436,
10170,
253,
4782,
5621,
2427,
327,
253,
13413
] |
have been excavated, after decades of archaeological work. The most prominent surviving buildings include six very large pyramids, labelled Temples I - VI, each of which support a temple structure on their summits. Some of these pyramids are over 60 metres ( 200 feet ) high. They were numbered sequentially during the early survey of the site. It is estimated that each of these major temples could have been built in as little as two years.
Temple I ( also known as the Temple of Ah Cacao or Temple of the Great Jaguar ) is a funerary pyramid dedicated to Jasaw Chan K 'awil, who was entombed in the structure in AD 734, the pyramid was completed around 740 – 750. The temple rises 47 metres ( 154 ft ) high. The massive roofcomb that topped the temple was originally decorated with a giant sculpture of the enthroned king, although little of this decoration survives. The tomb of the king was discovered by Aubrey Trik of the University of Pennsylvania in 1962. Among items recovered from the Late Classic tomb were a large collection of inscribed human and animal bone tubes and strips with sophisticated scenes depicting deities and people, finely carved and rubbed with vermilion, as well as jade and shell ornaments and ceramic vessels filled with offerings of food and drink. The shrine at the summit of the pyramid has three chambers, each behind the next, with the doorways spanned by wooden lintels fashioned from multiple beams. The outermost lintel is plain but the two inner lintels were carved, some of the beams were removed in the 19th century and their location is unknown, while others were taken to museums in Europe.
Temple II ( also known as the Temple of the Mask ) it was built around AD 700 and stands 38 metres ( 125 ft ) high. Like other major temples at Tikal, the summit shrine had three consecutive chambers with the doorways spanned by wooden lintels, only the middle of which was carved. The temple was dedicated to the wife of Jasaw Chan K 'awil, although no tomb was found. The queen's portrait was carved into the lintel spanning the doorway of the summit shrine. One of the beams from this lintel is now in the American Museum of Natural History in New York.
Temple III ( also known as the Temple of the Jaguar Priest ) was the last of the great pyramids to be built at Tikal. It stood 55 metres ( 180 ft ) tall and contained an elaborately sculpted but damaged roof lintel, possibly showing Dark Sun engaged in a ritual dance around AD 810. The temple shrine possesses two chambers.
Temple IV is the tallest temple @-@ pyramid at Tikal, measuring 70 metres ( 230 ft ) from the plaza floor level to the top of its roof comb. Temple IV marks the reign of Yik ’ in Chan Kawil ( Ruler B, the son of Ruler A or Jasaw Chan K 'awiil I ) and two carved wooden lintels over the doorway that leads into the temple on the pyramid ’ s summit record a long count date ( 9 @.@ 15 @.@ 10 @.@ 0 @.@ 0 ) that corresponds to CE 741 ( Sharer 1994 : 169 ). Temple IV is the largest pyramid built anywhere in the Maya region in the 8th century, and as it currently stands is the tallest pre @-@ Columbian structure in the Americas although the Pyramid of the Sun at Teotihuacan may originally have been taller, as may have been one of the structures at El Mirador.
Temple V stands south of the Central Acropolis and is the mortuary pyramid of an as yet unidentified ruler. The temple stands 57 metres ( 187 ft ) high, making it the second tallest structure at Tikal - only Temple IV is taller. The temple has been dated to about AD 700, in the Late Classic period, via radiocarbon analysis and the dating of ceramics associated with the structure places its construction during the reign of Nun Bak Chak in the second half of the 7th century.
Temple VI is also known as the Temple of the Inscriptions and was dedicated in AD 766. It is notable for its 12 @-@ metre ( 39 ft ) high roof @-@ comb. Panels of hieroglyphs cover the back and sides of the roof @-@ comb. The temple faces onto a plaza to the west and its front is unrestored.
Temple 33 was a funerary pyramid erected over the tomb of Siyaj Chan K 'awiil I ( known as Burial 48 ) in the North Acropolis. It started life in the Early Classic as a wide basal platform decorated with large stucco masks that flanked the stairway. Later in the Early Classic a new superstructure was added, with its own masks and decorated panels. During the Hiatus a third stage was built over the earlier constructions, the stairway was demolished and another royal burial, of an unidentified ruler, was set into the structure ( Burial 23 ). While the new pyramid was being built another high ranking tomb ( Burial 24 ) was inserted into the rubble core of the building. The pyramid was then completed, standing 33 metres ( 108 ft ) tall. The final version of Temple 33 was completely dismantled by archaeologists in 1965 in order to arrive at the earlier stages of construction.
Structure 34 is a pyramid in the North Acropolis that was built by Siyaj Chan K 'awiil II over the tomb of his father, Yax Nuun Ayiin I. The pyramid was topped by a three chambered shrine, the rooms situated one behind the other.
Structure 5D @-@ 43 is an unusual radial temple in the East Plaza, built over a pre @-@ existing twin pyramid complex. It is built into the end of the East Plaza Ballcourt and possessed four entry doorways and three stairways, the fourth ( south ) side was too close to the Central Acropolis for a stairway on that side. The building has a talud @-@ tablero platform profile, modified from the original style found at Teotihuacan. In fact, it has been suggested that the style of the building has closer affinities with El Tajin and Xochicalco than with Teotihuacan itself. The vertical tablero panels are set between sloping talud panels and are decorated with paired disc symbols. Large flower symbols are set into the sloping talud panels, related to the Venus and star symbols used at Teotihuacan. The roof of the structure was decorated with friezes although only fragments now remain, showing a monstrous face, perhaps that of a jaguar, with another head emerging from the mouth. The second head possesses a bifurcated tongue but is probably not that of a snake. The temple, and its associated ballcourt, probably date to the reign of Nuun Ujol Chaak or that of his son Jasaw Chan K 'awiil I, in the later part of the 7th century.
Structure 5C @-@ 49 possesses a clear Teotihuacan @-@ linked architectural style ; it has balustrades, an architectural feature that is very rare in the Maya region, and a talud @-@ tablero façade ; it dates to the 4th century AD. It is located near to the Lost World pyramid.
Structure 5C @-@ 53 is a small Teotihuacan @-@ style platform that dates to about AD 600. It had stairways on all four sides and did not possess a superstructure.
The Lost World Pyramid ( Structure 5C @-@ 54 ) is the largest structure in the Mundo Perdido complex. It lies in the southwest portion of Tikal ’ s central core, south of Temple III and west of Temple V. It was decorated with stucco masks of the sun god and dates to the Late Preclassic ; this pyramid is part of an enclosed complex of structures that remained intact and un @-@ impacted by later building activity at Tikal. By the end of the Late Preclassic this pyramid was one of the largest structures in the Maya region. It attained its final form during the reign of Chak Tok Ich 'aak in the 4th century AD, in the Early Classic, standing more than 30 metres ( 98 ft ) high with stairways on all four sides and a flat top that possibly supported a superstructure built from perishable materials. Although the plaza later suffered significant alteration, the organization of a group of temples on the east side of this complex adheres to the layout that defines the so @-@ called E @-@ Groups, identified as solar observatories.
Structure 5D @-@ 96 is the central temple on the east side of the Plaza of the Seven Temples. It has been restored and its rear outer wall is decorated with skull @-@ and @-@ crossbones motifs.
Group 6C @-@ 16 is an elite residential complex that has been thoroughly excavated. It lies a few hundred metres south of the Lost World Complex and the excavations have revealed elaborate stucco masks, ballplayer murals, relief sculptures and buildings with Teotihuacan characteristics.
The Great Plaza Ballcourt is a small ballcourt that lies between Temple I and the Central Acropolis.
The Bat Palace is also known as the Palace of Windows and lies to the west of Temple III. It has two storeys, with a double range of chambers on the lower storey and a single range in the upper storey, which has been restored. The palace has ancient graffiti and possesses low windows.
Complex N lies to the west of the Bat Palace and Temple III. The complex dates to | wikitext_103 | [
452,
644,
27960,
456,
1157,
846,
8007,
273,
39327,
789,
964,
380,
954,
11906,
21548,
9195,
2486,
2800,
1077,
1781,
25874,
2352,
1157,
27214,
8582,
1868,
309,
428,
17128,
1157,
1016,
273,
534,
1329,
247,
16511,
2605,
327,
616,
14568,
953,
964,
3808,
273,
841,
25874,
2352,
403,
689,
3925,
26156,
313,
1052,
4669,
2387,
1029,
964,
1583,
497,
31050,
32627,
1309,
253,
2393,
6630,
273,
253,
2670,
964,
733,
310,
5998,
326,
1016,
273,
841,
2201,
33013,
812,
452,
644,
4270,
275,
347,
1652,
347,
767,
1107,
964,
2490,
17658,
309,
313,
671,
1929,
347,
253,
17658,
273,
15344,
330,
317,
8500,
390,
17658,
273,
253,
6495,
46174,
274,
2387,
310,
247,
794,
254,
552,
39694,
9940,
281,
500,
284,
1403,
26177,
611,
686,
1403,
300,
1157,
665,
369,
994,
297,
3026,
275,
253,
2605,
275,
5446,
818,
1706,
1157,
253,
39694,
369,
6312,
1475,
818,
1449,
1108,
25782,
964,
380,
16511,
22844,
7543,
26156,
313,
21603,
23899,
2387,
1029,
964,
380,
7863,
10699,
17890,
326,
32072,
253,
16511,
369,
8927,
25701,
342,
247,
10864,
34486,
273,
253,
994,
73,
1406,
264,
6963,
1157,
3738,
1652,
273,
436,
40890,
46046,
964,
380,
26908,
273,
253,
6963,
369,
6888,
407,
29560,
5292,
11835,
76,
273,
253,
2499,
273,
11637,
275,
20208,
964,
9658,
4957,
12372,
432,
253,
26502,
27015,
26908,
497,
247,
1781,
4849,
273,
275,
31509,
1966,
285,
5893,
5961,
17080,
285,
22486,
342,
18144,
13451,
35668,
372,
1005,
285,
952,
1157,
25806,
27251,
285,
32089,
342,
2336,
22009,
279,
1157,
347,
973,
347,
480,
796,
285,
8135,
390,
27647,
285,
25757,
12671,
6898,
342,
27278,
273,
2739,
285,
5484,
964,
380,
45342,
387,
253,
21948,
273,
253,
39694,
556,
1264,
23462,
1157,
1016,
3212,
253,
1735,
1157,
342,
253,
3369,
1576,
40423,
407,
14872,
298,
565,
1241,
47485,
432,
2709,
20435,
964,
380,
562,
32848,
298,
34291,
310,
8342,
533,
253,
767,
6703,
298,
565,
1241,
497,
27251,
1157,
690,
273,
253,
20435,
497,
5176,
275,
253,
655,
394,
5331,
285,
616,
4328,
310,
7202,
1157,
1223,
2571,
497,
2668,
281,
34028,
275,
3060,
964,
2490,
17658,
3719,
313,
671,
1929,
347,
253,
17658,
273,
253,
36685,
2387,
352,
369,
4270,
1475,
5446,
18450,
285,
9572,
6480,
26156,
313,
11140,
23899,
2387,
1029,
964,
6975,
643,
2201,
33013,
387,
308,
1479,
267,
1157,
253,
21948,
45342,
574,
1264,
12640,
23462,
342,
253,
3369,
1576,
40423,
407,
14872,
298,
565,
1241,
1157,
760,
253,
4766,
273,
534,
369,
27251,
964,
380,
16511,
369,
9940,
281,
253,
4475,
273,
500,
284,
1403,
26177,
611,
686,
1403,
300,
1157,
3738,
642,
26908,
369,
1119,
964,
380,
19538,
686,
84,
22946,
369,
27251,
715,
253,
298,
34291,
28369,
253,
27084,
273,
253,
21948,
45342,
964,
2596,
273,
253,
20435,
432,
436,
298,
34291,
310,
1024,
275,
253,
2448,
11032,
273,
14673,
9541,
275,
1457,
2816,
964,
2490,
17658,
6490,
313,
671,
1929,
347,
253,
17658,
273,
253,
46174,
274,
41701,
2387,
369,
253,
1390,
273,
253,
1270,
25874,
2352,
281,
320,
4270,
387,
308,
1479,
267,
964,
733,
6225,
7288,
26156,
313,
12660,
23899,
2387,
10086,
285,
6221,
271,
14883,
1523,
17481,
264,
533,
13572,
10699,
298,
34291,
1157,
6830,
4645,
14182,
4146,
9583,
275,
247,
17651,
11012,
1475,
5446,
854,
740,
964,
380,
16511,
45342,
25099,
767,
23462,
964,
2490,
17658,
8019,
310,
253,
10086,
383,
16511,
1214,
14,
33,
39694,
387,
308,
1479,
267,
1157,
10499,
5571,
26156,
313,
20504,
23899,
2387,
432,
253,
499,
11983,
5254,
1268,
281,
253,
1755,
273,
697,
10699,
2049,
964,
17658,
8019,
10880,
253,
19485,
273,
714,
1479,
15956,
275,
26177,
36288,
300,
313,
416,
14398,
378,
1157,
253,
3347,
273,
416,
14398,
329,
390,
500,
284,
1403,
26177,
611,
686,
33259,
300,
309,
2387,
285,
767,
27251,
14872,
298,
565,
1241,
689,
253,
27084,
326,
5644,
715,
253,
16511,
327,
253,
39694,
15956,
256,
21948,
1924,
247,
1048,
1385,
3522,
313,
898,
1214,
15,
33,
1458,
1214,
15,
33,
884,
1214,
15,
33,
470,
1214,
15,
33,
470,
2387,
326,
10140,
281,
7956,
818,
3156,
313,
1608,
12287,
9354,
1163,
23504,
2387,
964,
17658,
8019,
310,
253,
6253,
39694,
4270,
9825,
275,
253,
41151,
2919,
275,
253,
854,
394,
5331,
1157,
285,
347,
352,
4390,
9572,
310,
253,
10086,
383,
638,
1214,
14,
33,
10255,
757,
2605,
275,
253,
37708,
3738,
253,
8462,
3358,
301,
273,
253,
4146,
387,
2745,
302,
6356,
86,
317,
266,
778,
8927,
452,
644,
38165,
1157,
347,
778,
452,
644,
581,
273,
253,
5289,
387,
3599,
11777,
9325,
964,
2490,
17658,
657,
9572,
6420,
273,
253,
8170,
5192,
37489,
285,
310,
253,
4920,
3702,
39694,
273,
271,
347,
2568,
39255,
29658,
964,
380,
16511,
9572,
8988,
26156,
313,
25165,
23899,
2387,
1029,
1157,
2403,
352,
253,
1273,
10086,
383,
2605,
387,
308,
1479,
267,
428,
760,
17658,
8019,
310,
38165,
964,
380,
16511,
556,
644,
15483,
281,
670,
5446,
18450,
1157,
275,
253,
26502,
27015,
2180,
1157,
3066,
8188,
27713,
4006,
1783,
285,
253,
13597,
273,
15733,
47775,
2330,
342,
253,
2605,
5053,
697,
5140,
1309,
253,
19485,
273,
427,
328,
25958,
775,
518,
275,
253,
1273,
2716,
273,
253,
818,
394,
5331,
964,
2490,
17658,
17128,
310,
671,
1929,
347,
253,
17658,
273,
253,
496,
28132,
285,
369,
9940,
275,
5446,
818,
2526,
964,
733,
310,
16613,
323,
697,
1249,
1214,
14,
33,
1313,
250,
313,
6931,
23899,
2387,
1029,
10699,
1214,
14,
33,
2049,
964,
9251,
1241,
273,
10549,
19644,
545,
84,
3835,
253,
896,
285,
7123,
273,
253,
10699,
1214,
14,
33,
2049,
964,
380,
16511,
9365,
4830,
247,
499,
11983,
281,
253,
8935,
285,
697,
2914,
310,
27572,
2149,
964,
2490,
17658,
5922,
369,
247,
794,
254,
552,
39694,
33230,
689,
253,
26908,
273,
10283,
90,
1432,
26177,
611,
686,
33259,
300,
309,
313,
1929,
347,
7634,
451,
5693,
2387,
275,
253,
3729,
5192,
37489,
964,
733,
3053,
1495,
275,
253,
15643,
27015,
347,
247,
4618,
15919,
5147,
25701,
342,
1781,
331,
22164,
80,
25965,
326,
21499,
264,
253,
22298,
1106,
964,
14772,
275,
253,
15643,
27015,
247,
747,
2221,
18317,
369,
2879,
1157,
342,
697,
1211,
25965,
285,
25701,
12471,
964,
6408,
253,
17459,
3144,
247,
2626,
3924,
369,
4270,
689,
253,
4321,
35831,
1157,
253,
22298,
1106,
369,
44550,
285,
1529,
17292,
33672,
1157,
273,
271,
39255,
29658,
1157,
369,
873,
715,
253,
2605,
313,
7634,
451,
3495,
2387,
964,
3900,
253,
747,
39694,
369,
1146,
4270,
1529,
1029,
19947,
26908,
313,
7634,
451,
2164,
2387,
369,
13400,
715,
253,
7692,
934,
5161,
273,
253,
3652,
964,
380,
39694,
369,
840,
6312,
1157,
6306,
5922,
26156,
313,
13278,
23899,
2387,
10086,
964,
380,
2457,
2715,
273,
17658,
5922,
369,
4336,
37227,
1070,
407,
21101,
11644,
275,
18417,
275,
1340,
281,
12666,
387,
253,
4321,
8661,
273,
5140,
964,
2490,
29593,
5910,
310,
247,
39694,
275,
253,
3729,
5192,
37489,
326,
369,
4270,
407,
10283,
90,
1432,
26177,
611,
686,
33259,
300,
3719,
689,
253,
26908,
273,
521,
3392,
1157,
714,
991,
24903,
328,
22587,
74,
249,
309,
15,
380,
39694,
369,
32072,
407,
247,
1264,
45909,
7455,
45342,
1157,
253,
9956,
17860,
581,
3212,
253,
643,
964,
2490,
29593,
608,
37,
1214,
14,
33,
7652,
310,
271,
11555,
14599,
16511,
275,
253,
5791,
33427,
1157,
4270,
689,
247,
638,
1214,
14,
33,
5368,
19661,
39694,
2570,
964,
733,
310,
4270,
715,
253,
990,
273,
253,
5791,
33427,
14702,
13550,
285,
18801,
1740,
5857,
3369,
1576,
285,
1264,
22298,
1576,
1157,
253,
7002,
313,
6420,
2387,
1930,
369,
1512,
2810,
281,
253,
8170,
5192,
37489,
323,
247,
22298,
1106,
327,
326,
1930,
964,
380,
3652,
556,
247,
5269,
438,
1214,
14,
33,
246,
1752,
2771,
5147,
6222,
1157,
7321,
432,
253,
3236,
3740,
1119,
387,
2745,
302,
6356,
86,
317,
266,
964,
496,
958,
1157,
352,
556,
644,
5125,
326,
253,
3740,
273,
253,
3652,
556,
8003,
2438,
46821,
342,
3599,
47858,
249,
285,
1594,
3770,
474,
1940,
685,
342,
2745,
302,
6356,
86,
317,
266,
3139,
964,
380,
9118,
246,
1752,
2771,
12471,
403,
873,
875,
1499,
18225,
5269,
438,
12471,
285,
403,
25701,
342,
18433,
1262,
14217,
964,
21157,
17514,
14217,
403,
873,
715,
253,
1499,
18225,
5269,
438,
12471,
1157,
2905,
281,
253,
36210,
285,
4177,
14217,
908,
387,
2745,
302,
6356,
86,
317,
266,
964,
380,
10699,
273,
253,
2605,
369,
25701,
342,
2054,
70,
13505,
3738,
760,
14251,
1024,
3464,
1157,
4645,
247,
49358,
2454,
1157,
4931,
326,
273,
247,
16361,
37502,
1157,
342,
1529,
1481,
14149,
432,
253,
6208,
964,
380,
1273,
1481,
25099,
247,
32605,
68,
456,
14018,
533,
310,
3164,
417,
326,
273,
247,
24980,
964,
380,
16511,
1157,
285,
697,
2330,
4023,
13550,
1157,
3164,
3522,
281,
253,
19485,
273,
24903,
328,
530,
75,
311,
22951,
518,
390,
326,
273,
521,
3347,
500,
284,
1403,
26177,
611,
686,
33259,
300,
309,
1157,
275,
253,
1996,
629,
273,
253,
818,
394,
5331,
964,
2490,
29593,
608,
36,
1214,
14,
33,
7584,
25099,
247,
2590,
2745,
302,
6356,
86,
317,
266,
1214,
14,
33,
7939,
27934,
3740,
3706,
352,
556,
4273,
5337,
3355,
1157,
271,
27934,
4735,
326,
310,
1077,
7520,
275,
253,
41151,
2919,
1157,
285,
247,
5269,
438,
1214,
14,
33,
246,
1752,
2771,
40881,
796,
3706,
352,
12282,
281,
253,
577,
394,
5331,
5446,
964,
733,
310,
4441,
2822,
281,
253,
26872,
3645,
39694,
964,
2490,
29593,
608,
36,
1214,
14,
33,
8676,
310,
247,
1355,
2745,
302,
6356,
86,
317,
266,
1214,
14,
33,
3740,
5147,
326,
12282,
281,
670,
5446,
12891,
964,
733,
574,
22298,
1576,
327,
512,
1740,
7123,
285,
858,
417,
7081,
247,
2221,
18317,
964,
2490,
380,
26872,
3645,
8462,
3358,
301,
313,
29593,
608,
36,
1214,
14,
33,
8255,
2387,
310,
253,
6253,
2605,
275,
253,
353,
16538,
3545,
69,
7112,
2570,
964,
733,
8696,
275,
253,
31438,
5110,
273,
308,
1479,
267,
15956,
256,
4275,
5161,
1157,
6420,
273,
17658,
6490,
285,
8935,
273,
17658,
657,
15,
733,
369,
25701,
342,
331,
22164,
80,
25965,
273,
253,
5101,
7122,
285,
12282,
281,
253,
26502,
5729,
2437,
280,
3706,
436,
39694,
310,
629,
273,
271,
26895,
2570,
273,
5289,
326,
6376,
15282,
285,
440,
1214,
14,
33,
27857,
407,
1996,
3652,
2425,
387,
308,
1479,
267,
964,
2896,
253,
990,
273,
253,
26502,
5729,
2437,
280,
436,
39694,
369,
581,
273,
253,
6253,
5289,
275,
253,
41151,
2919,
964,
733,
26553,
697,
2457,
830,
1309,
253,
19485,
273,
775,
518,
14391,
32185,
686,
66,
518,
275,
253,
577,
394,
5331,
5446,
1157,
275,
253,
15643,
27015,
1157,
6306,
625,
685,
1884,
26156,
313,
10508,
23899,
2387,
1029,
342,
22298,
1576,
327,
512,
1740,
7123,
285,
247,
6507,
1755,
326,
6830,
4516,
247,
2221,
18317,
4270,
432,
591,
763,
494,
4753,
964,
4129,
253,
499,
11983,
1996,
9606,
1534,
26787,
1157,
253,
6003,
273,
247,
1387,
273,
33013,
327,
253,
9268,
1930,
273,
436,
2570,
519,
14210,
281,
253,
12806,
326,
13067,
253,
594,
1214,
14,
33,
1925,
444,
1214,
14,
33,
28818,
1157,
3636,
347,
9666,
1759,
15829,
964,
2490,
29593,
608,
37,
1214,
14,
33,
9161,
310,
253,
4275,
16511,
327,
253,
9268,
1930,
273,
253,
33427,
273,
253,
20400,
8582,
1868,
964,
733,
556,
644,
16789,
285,
697,
10581,
8346,
3402,
310,
25701,
342,
19567,
1214,
14,
33,
285,
1214,
14,
33,
2831,
47473,
25907,
964,
2490,
5901,
721,
36,
1214,
14,
33,
1668,
310,
271,
17832,
16252,
2570,
326,
556,
644,
16575,
27960,
456,
964,
733,
8696,
247,
1643,
4289,
26156,
6420,
273,
253,
26872,
3645,
24154,
285,
253,
27960,
569,
452,
4950,
21184,
331,
22164,
80,
25965,
1157,
4023,
15381,
4682,
932,
1157,
6619,
48106,
285,
9195,
342,
2745,
302,
6356,
86,
317,
266,
5319,
964,
2490,
380,
6495,
33427,
14702,
13550,
310,
247,
1355,
4023,
13550,
326,
8696,
875,
17658,
309,
285,
253,
8170,
5192,
37489,
964,
2490,
380,
15103,
21632,
310,
671,
1929,
347,
253,
21632,
273,
7464,
285,
8696,
281,
253,
8935,
273,
17658,
6490,
964,
733,
556,
767,
4657,
656,
1157,
342,
247,
4021,
2491,
273,
23462,
327,
253,
2406,
4657,
90,
285,
247,
2014,
2491,
275,
253,
5170,
4657,
90,
1157,
534,
556,
644,
16789,
964,
380,
21131,
556,
9129,
7098,
47525,
285,
25099,
1698,
8323,
964,
2490,
24154,
427,
8696,
281,
253,
8935,
273,
253,
15103,
21632,
285,
17658,
6490,
964,
380,
2570,
12282,
281
] |
= Éva Gauthier =
Éva Gauthier ( September 20, 1885 – December 20, 1958 ) was a Canadian @-@ American mezzo @-@ soprano and voice teacher. She performed and popularised songs by contemporary composers throughout her career and sang in the American premieres of several works by Erik Satie, Maurice Ravel and Igor Stravinsky, including the title role in the latter's Perséphone.
The niece of Lady Laurier and Sir Wilfrid Laurier, who also were her patrons, she initially trained and performed in Europe. She then travelled to Java and for four years immersed herself in its native music, which she introduced to North American audiences on her return. She retired from performing in 1937, and opened a voice studio in New York, where she became a founding member of the American Guild of Musical Artists and served on its board of governors. Gauthier was praised for the many qualities her singing brought to music. The citation from the Campion Society of San Francisco, which she received in 1949, said : "... her rare open @-@ mindedness and unorthodox enthusiasm having been initially responsible for the recognition of many vital and important modern composers "
= = Singing career = =
Born in Ottawa, Ontario, Gauthier received musical lessons as a child, in harmony, voice, and piano. The custom of the time dictated that North American musicians travel to Europe for training if they desired a reputable professional career, and in July 1902, at the age of seventeen, Gauthier set out for Europe, financed by her aunt and uncle, Lady Zoé Laurier and Sir Wilfrid Laurier.
= = = Training in Europe = = =
Gauthier travelled to France, where she received private voice lessons from Auguste @-@ Jean Dubulle of the Paris Conservatory. Nodules on her vocal cords were problematic, but they were removed surgically. She later began training under Jacques Bouhy, whom she would later credit for her vocal technique. In 1906, Gauthier was retained by fellow Canadian singer Emma Albani to accompany her on a tour of England and her Canadian farewell tour. Albani provided a degree of mentorship to Gauthier during the 30 week tour of Canada.
Lord Strathcona awarded Gauthier a scholarship in 1906 that allowed her to return to Europe and continue her vocal studies. She returned there and continued both to study and give performances. Her first operatic performance came in 1909 in Pavia, Italy as Micaëla in Bizet's Carmen. She landed a second operatic role as Mallika in Delibes'Lakmé, which was being performed by the London Covent Garden opera company. The opera opened in June 1910. Supposedly, Luisa Tetrazzini, the prima donna soprano of the company, feared that Gauthier's voice would outshine her own, and demanded that Gauthier be removed from the opera. The company's director acquiesced to Tetrazzini's demands, informing Gauthier on opening night that she would not be performing. Gauthier reacted badly, and quit opera entirely.
= = = Move to Java = = =
Disappointed by her blocked entry into the operatic scene, Gauthier departed Europe and travelled to Java. There, she met a Dutch importer and plantation manager named Frans Knoote. Gauthier and Knoote married on May 22, 1911. Gauthier studied the music of Java, and began to include this in her repertoire. Her accompanying pianist was Paul Seelig, who had previously been the conductor for the Kraton of Surakarta, which afforded Gauthier a number of opportunities. On permission of the Javanese court, she studied the gamelan, probably being the first western woman with a classical music education to be afforded this opportunity. While living in Java, Gauthier travelled extensively, giving performances in China, Japan, Singapore, Malaya, Australia, and New Zealand. She remained in Java for four years, but with the outbreak of World War I she decided to travel back to North America, arriving in New York City in the fall of 1915.
= = = Return to North America = = =
Arriving in New York, Gauthier struggled to find a niche in an already crowded music scene. She put on a performance in Vaudeville entitled Songmotion, which combined Javan music with dancers. New York was already home to many North American and European musical performers, so Gauthier focused on her Javan musical repertoire, which she combined with knowledge and skill in modernist western singing. Gauthier began giving annual recitals at Aeolian Hall, and in November 1917 her performance there caught the eye of many leading composers. She developed her own reputation quickly, known as a "... sensitive purveyor of interesting, untried songs ". She gave renditions of three songs by Maurice Ravel. Her performance then also included American premieres of Stravinsky's Three Japanese Lyrics and Griffes'Five Poems of Ancient China and Japan. The performance was a great success, and she began to receive invitations to perform premieres of songs by contemporary composers. Stravinsky arranged to have Gauthier to premiere all of his vocal pieces.
Gauthier travelled to Paris in 1920 at the behest of the Music League of America. Sent there to arrange a tour of North America by Maurice Ravel, she struck up a friendship and professional correspondence not only with him, but also with Erik Satie and Les six. This led to more music being sent to her by various composers that she would premiere in concert. She accepted and premiered almost all works sent to her, the only exception being a refusal to perform Pierrot Lunaire by Arnold Schoenberg. Through this, Gauthier performed large amounts of contemporary French music across the United States. She also included American music in all of her concerts. Gauthier toured America frequently and returned to Europe in 1922, and again in 1923. She began to explore Jazz music in concert as well, earning her negative reviews by many musical critics.
Her 1923 annual performance at Aeolian Hall entitled " Recital of Ancient and Modern Music for Voice " became a historic occasion when she presented the works of George Gershwin, the first time his works were performed by a classical singer in concert. The first half of the programme presented works considered serious music at the time. She performed both classical works by Vincenzo Bellini and Henry Purcell, mixing them with modernist and neoclassical works by Arnold Schoenberg, Darius Milhaud, Béla Bartók, and Paul Hindemith. The second half of her performance would upset the musical establishment, however. She opened with Alexander's Ragtime Band by Irving Berlin, then performed works by Jerome Kern and Walter Donaldson, and finally finished with three works by George Gershwin : I 'll Build a Stairway to Paradise, Innocent Ingénue Baby, and Swanee. Gershwin played the piano for these pieces. Important figures in the audience included Ernestine Schumann @-@ Heink, Virgil Thomson, and Paul Whiteman. Although some musical critics panned her decision to include Jazz music, the performance was overall a huge success, and provoked serious discussion among conservative audiences whether jazz music could be considered serious art.
Gauthier continued to present music that was thought poorly of by conservative audiences. On some occasions, such as her performances of Gershwin in New York in 1923 and 1925, as well as in London in 1925, this was quite successful. A critic in Vienna welcomed her musical selection as a reprieve from the usual fare of classical performances - Schubert, Brahms, Wolf, Richard Strauss - while praising her skill with more classical choices. Other performances suffered – she was booed while performing works by Heitor Villa @-@ Lobos at the Festival of the International Society of Contemporary Music in Venice. She became a celebrity, and continued giving performances across the United States, Europe, and her native Canada. On the sixtieth anniversary of Canadian Confederation in 1927, she gave a performance in Ottawa which was the first transcontinental radio broadcast in Canada. Although she toured Canada from time to time, and attended performances of Canadian music in New York, she held a negative opinion of Canada's treatment of native musicians, saying " Canadians... would rather listen to foreigners than their own people. "
= = = Retirement from the stage = = =
Illness forced Gauthier to halt giving performances in the late 1920s, but she would return to the stage in 1931, giving a concert in Havana, Cuba. As time passed she began to engage more and more in teaching, and less and less in stage performing. Her income from teaching was substantially better than from touring. She retired from performing entirely in 1937, and opened a music studio in New York. There she became a founding member of the American Guild of Musical Artists, serving on its board of governors. She died on December 20, 1958.
= = Views of critics and audiences = =
Gauthier was a controversial musician in her time. Her choice of music for performance was often condemned, and often praised. The appropriateness of jazz music for a classically trained singer, combined with the performances taking place in concert halls lead some critics to cheer her for promoting otherwise overlooked music, and others to condemn her for taking lowbrow music into a highbrow venue.
A May 1, 1917 review by the New York Times praised her natural talent, with some reservations about the unpolished quality of her voice. Her ability to capture the spirit | wikitext_103 | [
426,
17317,
6156,
443,
14399,
1321,
426,
4928,
187,
17317,
6156,
443,
14399,
1321,
313,
4397,
1384,
1157,
46416,
1108,
4565,
1384,
1157,
23084,
2387,
369,
247,
9462,
1214,
14,
33,
2448,
479,
35504,
1214,
14,
33,
34715,
41911,
285,
4318,
9732,
964,
1500,
2684,
285,
4633,
1701,
9575,
407,
13399,
43039,
4768,
617,
5249,
285,
21758,
275,
253,
2448,
41323,
373,
273,
2067,
2987,
407,
40537,
11191,
466,
1157,
35544,
416,
8526,
285,
309,
3892,
659,
3385,
26495,
1157,
1690,
253,
4060,
2554,
275,
253,
6158,
686,
84,
10400,
860,
6198,
964,
2490,
380,
43551,
273,
12688,
38713,
1321,
285,
9011,
5874,
925,
301,
38713,
1321,
1157,
665,
671,
497,
617,
38412,
1157,
703,
8523,
10166,
285,
2684,
275,
3060,
964,
1500,
840,
29433,
281,
8595,
285,
323,
1740,
1107,
35131,
5972,
275,
697,
7925,
3440,
1157,
534,
703,
5611,
281,
3729,
2448,
23886,
327,
617,
1091,
964,
1500,
14373,
432,
9591,
275,
27598,
1157,
285,
5485,
247,
4318,
11803,
275,
1457,
2816,
1157,
835,
703,
3395,
247,
23569,
3558,
273,
253,
2448,
33680,
273,
4878,
474,
47011,
285,
5608,
327,
697,
4450,
273,
45513,
964,
443,
14399,
1321,
369,
26108,
323,
253,
1142,
18701,
617,
16115,
3982,
281,
3440,
964,
380,
25577,
432,
253,
8647,
279,
8273,
273,
5003,
10765,
1157,
534,
703,
2959,
275,
24344,
1157,
753,
1163,
346,
3346,
617,
7520,
1527,
1214,
14,
33,
48163,
1255,
285,
440,
2156,
19966,
23027,
1907,
644,
8523,
5506,
323,
253,
8981,
273,
1142,
12232,
285,
1774,
4980,
43039,
346,
4928,
187,
426,
426,
7712,
272,
5249,
426,
426,
4928,
187,
28810,
275,
29539,
1157,
17367,
1157,
443,
14399,
1321,
2959,
12256,
15880,
347,
247,
1429,
1157,
275,
27851,
1157,
4318,
1157,
285,
18542,
964,
380,
2840,
273,
253,
673,
39460,
326,
3729,
2448,
20230,
4288,
281,
3060,
323,
3733,
604,
597,
6799,
247,
34719,
494,
5702,
5249,
1157,
285,
275,
4163,
42662,
1157,
387,
253,
2363,
273,
33395,
1157,
443,
14399,
1321,
873,
562,
323,
3060,
1157,
45311,
407,
617,
25969,
285,
18796,
1157,
12688,
37759,
860,
38713,
1321,
285,
9011,
5874,
925,
301,
38713,
1321,
964,
4928,
187,
426,
426,
426,
19036,
275,
3060,
426,
426,
426,
4928,
187,
443,
14399,
1321,
29433,
281,
6181,
1157,
835,
703,
2959,
3055,
4318,
15880,
432,
4223,
70,
1214,
14,
33,
13089,
20065,
24533,
273,
253,
7785,
13295,
2473,
964,
427,
351,
2651,
327,
617,
17898,
46891,
497,
20276,
1157,
533,
597,
497,
5176,
49958,
964,
1500,
1996,
3407,
3733,
762,
36063,
21446,
1994,
1157,
5207,
703,
651,
1996,
6152,
323,
617,
17898,
5853,
964,
496,
38701,
1157,
443,
14399,
1321,
369,
14667,
407,
7715,
9462,
16057,
25975,
31208,
74,
281,
13920,
617,
327,
247,
4892,
273,
5854,
285,
617,
9462,
42076,
4892,
964,
31208,
74,
2530,
247,
4248,
273,
9022,
15306,
281,
443,
14399,
1321,
1309,
253,
1884,
2129,
4892,
273,
6144,
964,
2490,
6203,
7962,
506,
585,
66,
11941,
443,
14399,
1321,
247,
26104,
275,
38701,
326,
4136,
617,
281,
1091,
281,
3060,
285,
4035,
617,
17898,
2175,
964,
1500,
4895,
627,
285,
4821,
1097,
281,
1263,
285,
1918,
16226,
964,
4058,
806,
1444,
1420,
3045,
2210,
275,
38624,
275,
367,
25183,
1157,
9972,
347,
353,
3737,
10093,
4123,
275,
378,
478,
292,
686,
84,
22787,
257,
964,
1500,
17735,
247,
1273,
1444,
1420,
2554,
347,
21984,
11825,
275,
6304,
487,
265,
686,
43247,
78,
860,
1157,
534,
369,
1146,
2684,
407,
253,
4693,
30517,
290,
18733,
24342,
2567,
964,
380,
24342,
5485,
275,
3978,
31707,
964,
6023,
1700,
314,
1157,
7511,
8901,
37822,
376,
4396,
5391,
1157,
253,
24041,
1053,
2072,
34715,
41911,
273,
253,
2567,
1157,
21490,
326,
443,
14399,
1321,
686,
84,
4318,
651,
562,
25037,
617,
1211,
1157,
285,
15665,
326,
443,
14399,
1321,
320,
5176,
432,
253,
24342,
964,
380,
2567,
686,
84,
6423,
4171,
447,
758,
281,
37822,
376,
4396,
5391,
686,
84,
11684,
1157,
36689,
443,
14399,
1321,
327,
5909,
2360,
326,
703,
651,
417,
320,
9591,
964,
443,
14399,
1321,
29771,
16426,
1157,
285,
15856,
24342,
7094,
964,
4928,
187,
426,
426,
426,
17097,
281,
8595,
426,
426,
426,
4928,
187,
5201,
40364,
407,
617,
13230,
5857,
715,
253,
1444,
1420,
6200,
1157,
443,
14399,
1321,
29115,
3060,
285,
29433,
281,
8595,
964,
1707,
1157,
703,
1313,
247,
13986,
1607,
5521,
285,
45051,
7205,
4907,
1879,
507,
10381,
1412,
70,
964,
443,
14399,
1321,
285,
10381,
1412,
70,
7028,
327,
2552,
3307,
1157,
34283,
964,
443,
14399,
1321,
5421,
253,
3440,
273,
8595,
1157,
285,
3407,
281,
2486,
436,
275,
617,
39287,
964,
4058,
17909,
35951,
382,
369,
5171,
1023,
31625,
1157,
665,
574,
3786,
644,
253,
23998,
323,
253,
611,
9296,
251,
273,
6201,
518,
37964,
1157,
534,
26299,
443,
14399,
1321,
247,
1180,
273,
9091,
964,
1623,
9214,
273,
253,
500,
18444,
3248,
1302,
1157,
703,
5421,
253,
18814,
293,
266,
1157,
3164,
1146,
253,
806,
10439,
3416,
342,
247,
8946,
3440,
4730,
281,
320,
26299,
436,
5107,
964,
3900,
3811,
275,
8595,
1157,
443,
14399,
1321,
29433,
18171,
1157,
4933,
16226,
275,
4135,
1157,
4047,
1157,
16861,
1157,
5979,
12451,
1157,
6976,
1157,
285,
1457,
12123,
964,
1500,
6376,
275,
8595,
323,
1740,
1107,
1157,
533,
342,
253,
15742,
273,
3645,
3660,
309,
703,
4425,
281,
4288,
896,
281,
3729,
3968,
1157,
20948,
275,
1457,
2816,
3228,
275,
253,
2965,
273,
27698,
964,
4928,
187,
426,
426,
426,
16140,
281,
3729,
3968,
426,
426,
426,
4928,
187,
1780,
19674,
275,
1457,
2816,
1157,
443,
14399,
1321,
19460,
281,
1089,
247,
25803,
275,
271,
2168,
22299,
3440,
6200,
964,
1500,
1691,
327,
247,
3045,
275,
657,
5353,
47581,
7429,
16865,
26049,
1157,
534,
5678,
500,
18444,
3440,
342,
39576,
964,
1457,
2816,
369,
2168,
1728,
281,
1142,
3729,
2448,
285,
5284,
12256,
34983,
1157,
594,
443,
14399,
1321,
7106,
327,
617,
500,
18444,
12256,
39287,
1157,
534,
703,
5678,
342,
3640,
285,
10861,
275,
4980,
382,
10439,
16115,
964,
443,
14399,
1321,
3407,
4933,
7970,
761,
32421,
387,
329,
70,
311,
757,
6696,
1157,
285,
275,
4596,
27062,
617,
3045,
627,
7270,
253,
5130,
273,
1142,
4283,
43039,
964,
1500,
3715,
617,
1211,
12681,
4541,
1157,
1929,
347,
247,
346,
3346,
7996,
1460,
3942,
263,
273,
4722,
1157,
18093,
2200,
9575,
346,
964,
1500,
3534,
50032,
84,
273,
1264,
9575,
407,
35544,
416,
8526,
964,
4058,
3045,
840,
671,
2908,
2448,
41323,
373,
273,
659,
3385,
26495,
686,
84,
9064,
6692,
12829,
18211,
285,
19342,
265,
686,
14263,
8081,
3030,
273,
32198,
4135,
285,
4047,
964,
380,
3045,
369,
247,
1270,
2323,
1157,
285,
703,
3407,
281,
4763,
828,
22644,
281,
1347,
41323,
373,
273,
9575,
407,
13399,
43039,
964,
659,
3385,
26495,
10912,
281,
452,
443,
14399,
1321,
281,
33552,
512,
273,
521,
17898,
7437,
964,
2490,
443,
14399,
1321,
29433,
281,
7785,
275,
18471,
387,
253,
320,
3957,
273,
253,
11412,
6884,
273,
3968,
964,
20580,
627,
281,
23240,
247,
4892,
273,
3729,
3968,
407,
35544,
416,
8526,
1157,
703,
10903,
598,
247,
19429,
285,
5702,
17668,
417,
760,
342,
779,
1157,
533,
671,
342,
40537,
11191,
466,
285,
12029,
2800,
964,
831,
3977,
281,
625,
3440,
1146,
2197,
281,
617,
407,
2710,
43039,
326,
703,
651,
33552,
275,
12699,
964,
1500,
7607,
285,
48228,
2761,
512,
2987,
2197,
281,
617,
1157,
253,
760,
6517,
1146,
247,
19963,
281,
1347,
14791,
8601,
47392,
603,
407,
25689,
3697,
80,
25210,
964,
11970,
436,
1157,
443,
14399,
1321,
2684,
1781,
8322,
273,
13399,
5112,
3440,
2439,
253,
1986,
2077,
964,
1500,
671,
2908,
2448,
3440,
275,
512,
273,
617,
34888,
964,
443,
14399,
1321,
3912,
433,
3968,
7208,
285,
4895,
281,
3060,
275,
33287,
1157,
285,
969,
275,
33881,
964,
1500,
3407,
281,
8338,
33216,
3440,
275,
12699,
347,
973,
1157,
22915,
617,
4016,
10123,
407,
1142,
12256,
17139,
964,
2490,
4058,
33881,
7970,
3045,
387,
329,
70,
311,
757,
6696,
7429,
346,
4568,
1562,
273,
32198,
285,
16349,
11412,
323,
28922,
346,
3395,
247,
14464,
8120,
672,
703,
3559,
253,
2987,
273,
6086,
443,
398,
73,
6481,
1157,
253,
806,
673,
521,
2987,
497,
2684,
407,
247,
8946,
16057,
275,
12699,
964,
380,
806,
2716,
273,
253,
13521,
3559,
2987,
2783,
4092,
3440,
387,
253,
673,
964,
1500,
2684,
1097,
8946,
2987,
407,
45106,
257,
8636,
11590,
5391,
285,
8966,
14929,
3992,
1157,
12480,
731,
342,
4980,
382,
285,
425,
406,
14407,
474,
2987,
407,
25689,
3697,
80,
25210,
1157,
399,
26548,
6939,
3227,
438,
1157,
378,
860,
4123,
17486,
1954,
76,
1157,
285,
5171,
15713,
358,
334,
964,
380,
1273,
2716,
273,
617,
3045,
651,
14004,
253,
12256,
13701,
1157,
2299,
964,
1500,
5485,
342,
13651,
686,
84,
45968,
2606,
16804,
407,
38071,
12911,
1157,
840,
2684,
2987,
407,
44495,
611,
1808,
285,
17650,
399,
2814,
1397,
251,
1157,
285,
4720,
6699,
342,
1264,
2987,
407,
6086,
443,
398,
73,
6481,
1163,
309,
686,
620,
11103,
247,
659,
1094,
1106,
281,
40577,
1157,
14515,
40420,
37095,
9390,
489,
25707,
1157,
285,
4235,
1351,
70,
964,
443,
398,
73,
6481,
4546,
253,
18542,
323,
841,
7437,
964,
46741,
8442,
275,
253,
8446,
2908,
22948,
22019,
3697,
25331,
1214,
14,
33,
754,
750,
1157,
6694,
44626,
41963,
1157,
285,
5171,
1536,
4835,
266,
964,
4129,
690,
12256,
17139,
268,
5442,
617,
3061,
281,
2486,
33216,
3440,
1157,
253,
3045,
369,
4583,
247,
5699,
2323,
1157,
285,
42652,
4092,
5955,
2190,
11518,
23886,
1880,
24455,
3440,
812,
320,
2783,
4092,
1445,
964,
2490,
443,
14399,
1321,
4821,
281,
1246,
3440,
326,
369,
1869,
15225,
273,
407,
11518,
23886,
964,
1623,
690,
15530,
1157,
824,
347,
617,
16226,
273,
443,
398,
73,
6481,
275,
1457,
2816,
275,
33881,
285,
31610,
1157,
347,
973,
347,
275,
4693,
275,
31610,
1157,
436,
369,
3240,
5547,
964,
329,
7291,
275,
26229,
25213,
617,
12256,
5438,
347,
247,
1234,
15311,
432,
253,
7312,
19021,
273,
8946,
16226,
428,
3697,
34762,
1157,
12963,
73,
983,
1157,
17698,
1157,
7727,
19967,
1316,
428,
1223,
9791,
2182,
617,
10861,
342,
625,
8946,
10165,
964,
5131,
16226,
9606,
1108,
703,
369,
41001,
264,
1223,
9591,
2987,
407,
754,
2081,
34374,
1214,
14,
33,
418,
706,
375,
387,
253,
14964,
273,
253,
5625,
8273,
273,
39921,
11412,
275,
28792,
964,
1500,
3395,
247,
29192,
1157,
285,
4821,
4933,
16226,
2439,
253,
1986,
2077,
1157,
3060,
1157,
285,
617,
7925,
6144,
964,
1623,
253,
4927,
633,
74,
678,
19054,
273,
9462,
30638,
3328,
275,
31687,
1157,
703,
3534,
247,
3045,
275,
29539,
534,
369,
253,
806,
811,
8190,
3950,
5553,
10675,
275,
6144,
964,
4129,
703,
3912,
433,
6144,
432,
673,
281,
673,
1157,
285,
11612,
16226,
273,
9462,
3440,
275,
1457,
2816,
1157,
703,
2918,
247,
4016,
4743,
273,
6144,
686,
84,
1971,
273,
7925,
20230,
1157,
3981,
346,
32846,
964,
964,
964,
651,
2581,
8028,
281,
34550,
685,
616,
1211,
952,
964,
346,
4928,
187,
426,
426,
426,
6724,
36728,
432,
253,
3924,
426,
426,
426,
4928,
187,
6192,
1255,
6726,
443,
14399,
1321,
281,
19086,
4933,
16226,
275,
253,
3563,
18471,
84,
1157,
533,
703,
651,
1091,
281,
253,
3924,
275,
31039,
1157,
4933,
247,
12699,
275,
32977,
3230,
1157,
24605,
964,
1284,
673,
4817,
703,
3407,
281,
11377,
625,
285,
625,
275,
9551,
1157,
285,
1679,
285,
1679,
275,
3924,
9591,
964,
4058,
6021,
432,
9551,
369,
9619,
1805,
685,
432,
36467,
964,
1500,
14373,
432,
9591,
7094,
275,
27598,
1157,
285,
5485,
247,
3440,
11803,
275,
1457,
2816,
964,
1707,
703,
3395,
247,
23569,
3558,
273,
253,
2448,
33680,
273,
4878,
474,
47011,
1157,
9417,
327,
697,
4450,
273,
45513,
964,
1500,
4962,
327,
4565,
1384,
1157,
23084,
964,
4928,
187,
426,
426,
44913,
273,
17139,
285,
23886,
426,
426,
4928,
187,
443,
14399,
1321,
369,
247,
15620,
26650,
275,
617,
673,
964,
4058,
4327,
273,
3440,
323,
3045,
369,
2223,
26212,
1157,
285,
2223,
26108,
964,
380,
3991,
48362,
273,
24455,
3440,
323,
247,
966,
1037,
10166,
16057,
1157,
5678,
342,
253,
16226,
3192,
1659,
275,
12699,
35574,
1421,
690,
17139,
281,
17639,
617,
323,
14312,
5010,
28849,
3440,
1157,
285,
2571,
281,
25650,
617,
323,
3192,
1698,
44827,
3440,
715,
247,
1029,
44827,
18767,
964,
2490,
329,
2552,
337,
1157,
27062,
2278,
407,
253,
1457,
2816,
7717,
26108,
617,
3626,
12816,
1157,
342,
690,
33196,
670,
253,
440,
4818,
1428,
3290,
273,
617,
4318,
964,
4058,
3745,
281,
9232,
253,
5968
] |
spy novel, and a moderate commercial success. In 2002 he made his stage debut as a celebrity guest in a West End theatre production of The Play What I Wrote, directed by Kenneth Branagh – who also appeared with him in the second Harry Potter film. In 2007 he appeared in the film December Boys, an Australian family drama about four orphans that was shot in 2005 and released to theatres in mid @-@ September 2007. Also in 2007, Radcliffe co @-@ starred with Carey Mulligan in My Boy Jack, a television drama film shown on ITV on Remembrance Day. The film received mostly positive reviews, with several critics praising Radcliffe's performance as an 18 @-@ year @-@ old who goes missing in action during a battle. Radcliffe stated, " For many people my age, the First World War is just a topic in a history book. But I've always been fascinated by the subject and think it's as relevant today as it ever was. "
At age 17, in a bid to show people he was prepared for adult roles, he performed onstage in Peter Shaffer's play Equus, which had not been revived since its first run in 1973, at the Gielgud Theatre. Radcliffe took on the lead role as Alan Strang, a stable boy who has an obsession with horses. Advance sales topped £ 1 @.@ 7 million, and the role generated significant pre @-@ opening media interest, as Radcliffe appeared in a nude scene. Equus opened on 27 February 2007 and ran until 9 June 2007. Radcliffe's performance received positive reviews as critics were impressed by the nuance and depth of his against @-@ type role. Charles Spencer of The Daily Telegraph wrote that he " displays a dramatic power and an electrifying stage presence that marks a tremendous leap forward. " He added : " I never thought I would find the diminutive ( but perfectly formed ) Radcliffe a sinister figure, but as Alan Strang... there are moments when he seems genuinely scary in his rage and confusion. " The production then transferred to Broadway in September 2008, with Radcliffe still in the lead role. Radcliffe stated he was nervous about repeating the role on Broadway because he considered American audiences more discerning than those in London. Radcliffe's performance was nominated for a Drama Desk Award.
= = = 2010 – present = = =
After voicing a character in an episode of the animated television series The Simpsons in late 2010, Radcliffe debuted as J. Pierrepont Finch in the 2011 Broadway revival How to Succeed in Business Without Really Trying, a role previously held by Broadway veterans Robert Morse and Matthew Broderick. Other cast members included John Larroquette, Rose Hemingway and Mary Faber. Both the actor and production received favourable reviews, with USA Today commenting : " Radcliffe ultimately succeeds not by overshadowing his fellow cast members, but by working in conscientious harmony with them – and having a blast in the process. " Radcliffe's performance in the show earned him Drama Desk Award, Drama League Award and Outer Critics Circle Award nominations. The production itself later received nine Tony Award nominations. Radcliffe left the show on 1 January 2012.
His first post @-@ Harry Potter project was the 2012 horror film The Woman in Black, adapted from the 1983 novel by Susan Hill. The film was released on 3 February 2012 in the United States and Canada, and was released on 10 February in the UK. Radcliffe portrays a man sent to deal with the legal matters of a mysterious woman who has just died, and soon after he begins to experience strange events and hauntings from the ghost of a woman dressed in black. He has said he was " incredibly excited " to be part of the film and described the script as " beautifully written ".
In 2013, he portrayed American poet Allen Ginsberg in the thriller drama Kill Your Darlings, directed by John Krokidas. He also starred in an Irish @-@ Canadian romantic comedy film The F Word directed by Michael Dowseand written by Elan Mastai, based on TJ Dawe and Michael Rinaldi's play Toothpaste and Cigars and then he starred in an American dark fantasy horror film directed by Alexandre Aja Horns. Both of the films premiered at the 38th Toronto International Film Festival.
Radcliffe also performed at the Noël Coward Theatre in the stage play revival of Martin McDonagh's dark comedy The Cripple of Inishmaan as the lead, Billy Claven, for which he won the WhatsOnStage Award for Best Actor in a Play. In 2015, Radcliffe starred as Igor in a science fiction horror film Victor Frankenstein directed by Paul McGuigan and written by Max Landis, which was based on contemporary adaptations of Mary Shelley's 1818 novel Frankenstein. In 2016, Radcliffe portrayed Manny, a talkative corpse, in the indie film Swiss Army Man.
He is set to star as American reporter Jake Adelstein in Tokyo Vice. In November 2015 he joined the ensemble cast of Shane Carruth's third film, The Modern Ocean alongside Anne Hathaway, Keanu Reeves, Tom Holland, Chloë Grace Moretz, Asa Butterfield, Jeff Goldblum and Abraham Attah.
= = Personal life = =
In 2008, Radcliffe revealed that he has a mild form of the neurological disorder developmental coordination disorder. The motor skill disorder sometimes prevents him from doing simple activities, such as writing or tying his own shoelaces. " I was having a hard time at school, in terms of being crap at everything, with no discernible talent, " Radcliffe commented. In August 2010, he stopped drinking alcohol after finding himself becoming too reliant on it.
In November 2007 Radcliffe published several poems under the pen name Jacob Gershon – a combination of his middle name and the Jewish version of his mother's maiden name Gresham – in Rubbish, an underground fashion magazine. He has a close friendship with his Harry Potter co @-@ stars Tom Felton and Emma Watson, and is tight @-@ knit with his family, whom he credits for keeping him grounded.
Sources disagree about Radcliffe's personal wealth ; he was reported to have earned £ 1 million for the first Harry Potter film and around £ 15 million for the sixth. Radcliffe appeared on the Sunday Times Rich List in 2006, which estimated his personal fortune to be £ 14 million, making him one of the richest young people in the UK. In March 2009 he was ranked number one on the Forbes " Most Valuable Young Stars " list, and by April The Daily Telegraph measured his net worth at £ 30m, making him the 12th richest young person in the UK. Radcliffe was considered to be the richest teenager in England later that year. In February 2010 he was named the sixth highest paid Hollywood male star and placed at number five on Forbes's December list of Hollywood's highest @-@ grossing actors with a film revenue of US $ 780 million, mainly due to Harry Potter and the Deathly Hallows being released that year.
Radcliffe maintains a home in the West Village of Lower Manhattan in New York City. As of October 2012, Radcliffe has been dating American Erin Darke, whom he met on the set of Kill Your Darlings. There were rumours and stories of a possible engagement in mid @-@ 2014, but Darke's father Ian Darke denied there were any such plans in December 2014.
= = = Views and activism = = =
Radcliffe is an atheist. He has been quoted as saying : " I'm an atheist, and a militant atheist when religion starts impacting on legislation ", and in a separate interview, he stated ; " I'm very relaxed about it [ being an atheist ]. I don 't preach my atheism, but I have a huge amount of respect for people like Richard Dawkins who do. Anything he does on television, I will watch ".
Radcliffe is a supporter of the Labour Party. Until 2012 Radcliffe had publicly supported the Liberal Democrats, and before the 2010 general election Radcliffe endorsed Nick Clegg, the Lib Dem leader. In 2012, however, Radcliffe switched his allegiance to Labour, citing disappointment with the performance of Nick Clegg and the Lib Dems in government, and approving of the Labour leader, Ed Miliband. In September 2015, he endorsed Jeremy Corbyn in the 2015 leadership contest to succeed Miliband. He is a supporter of a British republic. At the age of sixteen, Radcliffe became the youngest non @-@ royal ever to have an individual portrait in Britain's National Portrait Gallery ( NPG ). On 13 April 2006 his portrait, drawn by Stuart Pearson Wright, was unveiled as part of a new exhibition opening at the Royal National Theatre ; it was then moved to the NPG where it resides.
Speaking out against homophobia, Radcliffe began filming public service announcements in 2009 for The Trevor Project, promoting awareness of gay teen suicide prevention. He first learned of the organisation while working on Equus on Broadway in 2008 and has contributed financially to it. " I have always hated anybody who is not tolerant of gay men or lesbians or bisexuals. Now I am in the very fortunate position where I can actually help or do something about it, " he said in a 2010 interview. In the same interview, he spoke of the importance of public figures advocating for equal rights. Radcliffe considers his involvement to be one of the most important things in his career and, for his work for the organisation, he was given the " Hero Award " in 2011.
Radcliffe has supported various charities. He designed the Cu @-@ Bed for Habitat's VIP Kids range | wikitext_103 | [
23019,
4460,
1157,
285,
247,
10290,
6264,
2323,
964,
496,
6752,
344,
1160,
521,
3924,
11386,
347,
247,
29192,
12141,
275,
247,
4255,
8072,
20021,
3275,
273,
380,
10223,
1737,
309,
48988,
1157,
6828,
407,
31270,
46028,
29416,
1108,
665,
671,
5420,
342,
779,
275,
253,
1273,
11643,
28753,
3085,
964,
496,
5215,
344,
5420,
275,
253,
3085,
4565,
27014,
1157,
271,
9943,
2021,
14562,
670,
1740,
390,
545,
507,
326,
369,
5103,
275,
5826,
285,
4439,
281,
28245,
373,
275,
4260,
1214,
14,
33,
4397,
5215,
964,
5220,
275,
5215,
1157,
7754,
45024,
820,
1214,
14,
33,
40903,
342,
45377,
29655,
8541,
275,
2752,
12143,
5332,
1157,
247,
7315,
14562,
3085,
2011,
327,
8017,
55,
327,
6235,
358,
43481,
6258,
964,
380,
3085,
2959,
6571,
2762,
10123,
1157,
342,
2067,
17139,
9791,
2182,
7754,
45024,
686,
84,
3045,
347,
271,
1283,
1214,
14,
33,
807,
1214,
14,
33,
1711,
665,
4566,
5816,
275,
2250,
1309,
247,
6680,
964,
7754,
45024,
4767,
1157,
346,
1198,
1142,
952,
619,
2363,
1157,
253,
3973,
3645,
3660,
310,
816,
247,
9400,
275,
247,
2892,
1984,
964,
1292,
309,
686,
306,
1900,
644,
39974,
407,
253,
2256,
285,
1158,
352,
686,
84,
347,
4623,
3063,
347,
352,
2455,
369,
964,
346,
2490,
2058,
2363,
1722,
1157,
275,
247,
12246,
281,
921,
952,
344,
369,
5480,
323,
6782,
9503,
1157,
344,
2684,
327,
13311,
275,
7993,
1608,
2843,
254,
686,
84,
1132,
8721,
316,
1157,
534,
574,
417,
644,
43941,
1580,
697,
806,
1408,
275,
15621,
1157,
387,
253,
443,
928,
72,
438,
19670,
964,
7754,
45024,
2335,
327,
253,
1421,
2554,
347,
17560,
7962,
606,
1157,
247,
6474,
5006,
665,
556,
271,
37238,
342,
12074,
964,
36808,
6224,
32072,
8157,
337,
1214,
15,
33,
818,
3041,
1157,
285,
253,
2554,
4561,
1534,
638,
1214,
14,
33,
5909,
3420,
1600,
1157,
347,
7754,
45024,
5420,
275,
247,
30790,
6200,
964,
8721,
316,
5485,
327,
3435,
5080,
5215,
285,
6337,
1919,
898,
3978,
5215,
964,
7754,
45024,
686,
84,
3045,
2959,
2762,
10123,
347,
17139,
497,
17847,
407,
253,
8794,
593,
285,
6864,
273,
521,
1411,
1214,
14,
33,
1511,
2554,
964,
8444,
26878,
273,
380,
13992,
40321,
4159,
326,
344,
346,
12646,
247,
14138,
1612,
285,
271,
1516,
48229,
3924,
3361,
326,
10880,
247,
19999,
26416,
3579,
964,
346,
754,
2879,
1163,
346,
309,
1620,
1869,
309,
651,
1089,
253,
13064,
4995,
313,
533,
9670,
4447,
2387,
7754,
45024,
247,
46189,
4677,
1157,
533,
347,
17560,
7962,
606,
3346,
627,
403,
9506,
672,
344,
3133,
27364,
24851,
275,
521,
22324,
285,
13775,
964,
346,
380,
3275,
840,
9495,
281,
27199,
275,
4397,
4695,
1157,
342,
7754,
45024,
1335,
275,
253,
1421,
2554,
964,
7754,
45024,
4767,
344,
369,
11219,
670,
24385,
253,
2554,
327,
27199,
984,
344,
2783,
2448,
23886,
625,
557,
29340,
685,
1110,
275,
4693,
964,
7754,
45024,
686,
84,
3045,
369,
25546,
323,
247,
49637,
3666,
76,
11240,
964,
4928,
187,
426,
426,
426,
4267,
1108,
1246,
426,
426,
426,
4928,
187,
2732,
3273,
11733,
247,
1894,
275,
271,
9037,
273,
253,
21530,
7315,
2962,
380,
3759,
793,
790,
275,
3563,
4267,
1157,
7754,
45024,
41362,
347,
500,
15,
14791,
4762,
834,
7198,
348,
275,
253,
4332,
27199,
36499,
1359,
281,
322,
1028,
2638,
275,
10518,
12414,
24744,
47888,
1157,
247,
2554,
3786,
2918,
407,
27199,
22129,
6911,
43542,
285,
18322,
4819,
491,
781,
964,
5131,
5248,
2758,
2908,
2516,
10374,
287,
48464,
1157,
12447,
18402,
272,
1106,
285,
6393,
17287,
254,
964,
6295,
253,
12353,
285,
3275,
2959,
39262,
10123,
1157,
342,
5106,
11056,
36738,
1163,
346,
7754,
45024,
9142,
44584,
417,
407,
689,
20644,
272,
521,
7715,
5248,
2758,
1157,
533,
407,
2444,
275,
49307,
784,
27851,
342,
731,
1108,
285,
1907,
247,
17916,
275,
253,
1232,
964,
346,
7754,
45024,
686,
84,
3045,
275,
253,
921,
12431,
779,
49637,
3666,
76,
11240,
1157,
49637,
6884,
11240,
285,
6282,
254,
22956,
982,
29572,
11240,
41487,
964,
380,
3275,
3139,
1996,
2959,
7457,
14861,
11240,
41487,
964,
7754,
45024,
1669,
253,
921,
327,
337,
4247,
4050,
964,
2490,
3032,
806,
1501,
1214,
14,
33,
11643,
28753,
2199,
369,
253,
4050,
15535,
3085,
380,
23724,
275,
5418,
1157,
12956,
432,
253,
11299,
4460,
407,
20222,
7061,
964,
380,
3085,
369,
4439,
327,
495,
5080,
4050,
275,
253,
1986,
2077,
285,
6144,
1157,
285,
369,
4439,
327,
884,
5080,
275,
253,
5591,
964,
7754,
45024,
2245,
20237,
247,
637,
2197,
281,
2968,
342,
253,
4320,
8213,
273,
247,
19796,
3416,
665,
556,
816,
4962,
1157,
285,
3517,
846,
344,
9513,
281,
2793,
8921,
3394,
285,
419,
2084,
723,
432,
253,
14972,
273,
247,
3416,
14186,
275,
2806,
964,
754,
556,
753,
344,
369,
346,
16088,
9049,
346,
281,
320,
629,
273,
253,
3085,
285,
2529,
253,
6001,
347,
346,
27839,
3542,
346,
964,
2490,
496,
4072,
1157,
344,
30804,
2448,
17502,
14272,
443,
968,
4978,
275,
253,
44741,
14562,
26464,
5402,
399,
7694,
723,
1157,
6828,
407,
2516,
46448,
76,
21400,
964,
754,
671,
40903,
275,
271,
11596,
1214,
14,
33,
9462,
18109,
17325,
3085,
380,
401,
12967,
6828,
407,
6277,
23549,
339,
395,
3542,
407,
3599,
266,
353,
505,
2284,
1157,
1754,
327,
308,
43,
12073,
664,
285,
6277,
416,
989,
5168,
686,
84,
1132,
1916,
837,
23164,
285,
330,
304,
1032,
285,
840,
344,
40903,
275,
271,
2448,
3644,
16879,
15535,
3085,
6828,
407,
26958,
250,
329,
6362,
23972,
84,
964,
6295,
273,
253,
6590,
48228,
387,
253,
6480,
394,
13533,
5625,
15913,
14964,
964,
2490,
7754,
45024,
671,
2684,
387,
253,
1621,
10093,
77,
18544,
472,
19670,
275,
253,
3924,
1132,
36499,
273,
8698,
3044,
5498,
29416,
686,
84,
3644,
17325,
380,
330,
21743,
282,
273,
496,
763,
785,
266,
347,
253,
1421,
1157,
19669,
1639,
7603,
1157,
323,
534,
344,
1912,
253,
44891,
2374,
30635,
11240,
323,
9567,
43298,
275,
247,
10223,
964,
496,
4104,
1157,
7754,
45024,
40903,
347,
309,
3892,
275,
247,
5859,
14459,
15535,
3085,
9964,
6893,
32782,
6828,
407,
5171,
3044,
8469,
8541,
285,
3542,
407,
7903,
8565,
261,
1157,
534,
369,
1754,
327,
13399,
41655,
273,
6393,
19787,
2205,
686,
84,
1283,
1093,
4460,
6893,
32782,
964,
496,
4022,
1157,
7754,
45024,
30804,
353,
10059,
1157,
247,
2312,
800,
35093,
1157,
275,
253,
40308,
3085,
19962,
8663,
3083,
964,
2490,
754,
310,
873,
281,
4177,
347,
2448,
12726,
23239,
2006,
293,
6339,
275,
17413,
17979,
964,
496,
4596,
4104,
344,
7416,
253,
19862,
5248,
273,
40771,
31247,
3097,
686,
84,
2626,
3085,
1157,
380,
16349,
17323,
12936,
17467,
388,
506,
12594,
1157,
6018,
40160,
1720,
23841,
1157,
6270,
23253,
1157,
775,
4213,
10093,
18966,
3010,
21239,
1157,
1284,
66,
30683,
3423,
1157,
9069,
7284,
1559,
360,
285,
24958,
2058,
15559,
964,
4928,
187,
426,
426,
23307,
1495,
426,
426,
4928,
187,
496,
4695,
1157,
7754,
45024,
4950,
326,
344,
556,
247,
11134,
830,
273,
253,
20967,
8984,
16743,
19915,
8984,
964,
380,
5694,
10861,
8984,
4536,
16897,
779,
432,
2509,
2969,
4712,
1157,
824,
347,
4028,
390,
42068,
521,
1211,
6738,
293,
1951,
964,
346,
309,
369,
1907,
247,
1892,
673,
387,
2143,
1157,
275,
2426,
273,
1146,
23550,
387,
3253,
1157,
342,
642,
26923,
917,
12816,
1157,
346,
7754,
45024,
20503,
964,
496,
4223,
4267,
1157,
344,
6331,
10678,
7665,
846,
4560,
2994,
7552,
1512,
774,
6231,
327,
352,
964,
2490,
496,
4596,
5215,
7754,
45024,
3863,
2067,
25443,
762,
253,
4331,
1416,
14737,
443,
398,
25224,
1108,
247,
5019,
273,
521,
4766,
1416,
285,
253,
9556,
2715,
273,
521,
3101,
686,
84,
42358,
1416,
443,
2935,
312,
1108,
275,
11879,
40705,
1157,
271,
19076,
8142,
11338,
964,
754,
556,
247,
2810,
19429,
342,
521,
11643,
28753,
820,
1214,
14,
33,
6114,
6270,
17918,
1299,
285,
25975,
21571,
1157,
285,
310,
6863,
1214,
14,
33,
44474,
342,
521,
2021,
1157,
5207,
344,
20079,
323,
7562,
779,
28462,
964,
2490,
34734,
14936,
670,
7754,
45024,
686,
84,
3367,
8788,
3706,
344,
369,
2361,
281,
452,
12431,
8157,
337,
3041,
323,
253,
806,
11643,
28753,
3085,
285,
1475,
8157,
1458,
3041,
323,
253,
15515,
964,
7754,
45024,
5420,
327,
253,
6926,
7717,
5612,
5552,
275,
5403,
1157,
534,
5998,
521,
3367,
19994,
281,
320,
8157,
1638,
3041,
1157,
2403,
779,
581,
273,
253,
42821,
2872,
952,
275,
253,
5591,
964,
496,
3919,
4748,
344,
369,
17045,
1180,
581,
327,
253,
38946,
346,
5595,
4009,
8584,
10231,
25196,
346,
1618,
1157,
285,
407,
4162,
380,
13992,
40321,
4080,
521,
2036,
4409,
387,
8157,
1884,
78,
1157,
2403,
779,
253,
1249,
394,
42821,
2872,
1436,
275,
253,
5591,
964,
7754,
45024,
369,
2783,
281,
320,
253,
42821,
28713,
275,
5854,
1996,
326,
807,
964,
496,
5080,
4267,
344,
369,
4907,
253,
15515,
4585,
5087,
14759,
5086,
4177,
285,
4845,
387,
1180,
2620,
327,
38946,
686,
84,
4565,
1618,
273,
14759,
686,
84,
4585,
1214,
14,
33,
13711,
272,
14142,
342,
247,
3085,
11784,
273,
1982,
370,
46951,
3041,
1157,
7194,
1955,
281,
11643,
28753,
285,
253,
14645,
314,
6696,
5811,
1146,
4439,
326,
807,
964,
2490,
7754,
45024,
18922,
247,
1728,
275,
253,
4255,
20186,
273,
20672,
21801,
275,
1457,
2816,
3228,
964,
1284,
273,
4437,
4050,
1157,
7754,
45024,
556,
644,
13597,
2448,
46604,
11128,
413,
1157,
5207,
344,
1313,
327,
253,
873,
273,
26464,
5402,
399,
7694,
723,
964,
1707,
497,
11267,
2108,
285,
6281,
273,
247,
1896,
13226,
275,
4260,
1214,
14,
33,
4059,
1157,
533,
11128,
413,
686,
84,
3392,
23259,
11128,
413,
5868,
627,
497,
667,
824,
5827,
275,
4565,
4059,
964,
4928,
187,
426,
426,
426,
44913,
285,
42123,
426,
426,
426,
4928,
187,
7754,
45024,
310,
271,
48621,
964,
754,
556,
644,
15212,
347,
3981,
1163,
346,
309,
686,
78,
271,
48621,
1157,
285,
247,
41515,
48621,
672,
9596,
7866,
48482,
327,
10843,
346,
1157,
285,
275,
247,
4858,
4572,
1157,
344,
4767,
3706,
346,
309,
686,
78,
1077,
19595,
670,
352,
544,
1146,
271,
48621,
5032,
964,
309,
1053,
686,
85,
49383,
619,
15389,
1204,
1157,
533,
309,
452,
247,
5699,
2408,
273,
1675,
323,
952,
751,
7727,
27080,
7232,
665,
513,
964,
33571,
344,
1057,
327,
7315,
1157,
309,
588,
3698,
346,
964,
2490,
7754,
45024,
310,
247,
31409,
273,
253,
15702,
7021,
964,
20539,
4050,
7754,
45024,
574,
13644,
4516,
253,
21739,
10823,
1157,
285,
1078,
253,
4267,
2087,
6132,
7754,
45024,
30020,
13104,
8148,
1266,
1157,
253,
9271,
4281,
6657,
964,
496,
4050,
1157,
2299,
1157,
7754,
45024,
17609,
521,
44436,
281,
15702,
1157,
19936,
27531,
342,
253,
3045,
273,
13104,
8148,
1266,
285,
253,
9271,
399,
3030,
275,
2208,
1157,
285,
43815,
273,
253,
15702,
6657,
1157,
3619,
6939,
487,
395,
964,
496,
4397,
4104,
1157,
344,
30020,
25413,
41538,
275,
253,
4104,
9550,
12417,
281,
9302,
6939,
487,
395,
964,
754,
310,
247,
31409,
273,
247,
4782,
23822,
964,
2058,
253,
2363,
273,
25279,
1157,
7754,
45024,
3395,
253,
25423,
1327,
1214,
14,
33,
17292,
2455,
281,
452,
271,
2060,
22946,
275,
9643,
686,
84,
3313,
6162,
12397,
21778,
313,
427,
11070,
2387,
964,
1623,
2145,
4162,
5403,
521,
22946,
1157,
8392,
407,
27659,
25065,
17025,
1157,
369,
34800,
347,
629,
273,
247,
747,
20849,
5909,
387,
253,
10043,
3313,
19670,
3706,
352,
369,
840,
4395,
281,
253,
427,
11070,
835,
352,
31951,
964,
2490,
41547,
562,
1411,
2860,
40988,
1157,
7754,
45024,
3407,
32539,
1345,
2579,
43400,
275,
4748,
323,
380,
44870,
8049,
1157,
14312,
11891,
273,
11730,
11332,
13184,
12212,
964,
754,
806,
6311,
273,
253,
19156,
1223,
2444,
327,
8721,
316,
327,
27199,
275,
4695,
285,
556,
9945,
27576,
281,
352,
964,
346,
309,
452,
1900,
21023,
13098,
665,
310,
417,
41842,
273,
11730,
1821,
390,
3293,
67,
2458,
390,
270,
47035,
84,
964,
3954,
309,
717,
275,
253,
1077,
27949,
1899,
835,
309,
476,
2686,
1361,
390,
513,
1633,
670,
352,
1157,
346,
344,
753,
275,
247,
4267,
4572,
964,
496,
253,
1072,
4572,
1157,
344,
7560,
273,
253,
6349,
273,
1345,
8442,
43243,
323,
4503,
3570,
964,
7754,
45024,
19401,
521,
10171,
281,
320,
581,
273,
253,
954,
1774,
1841,
275,
521,
5249,
285,
1157,
323,
521,
789,
323,
253,
19156,
1157,
344,
369,
1677,
253,
346,
22885,
11240,
346,
275,
4332,
964,
2490,
7754,
45024,
556,
4516,
2710,
45643,
964,
754,
4158,
253,
12617,
1214,
14,
33,
19761,
323,
25181,
33101,
686,
84,
35625,
29219,
2491
] |
= Back Off Boogaloo =
" Back Off Boogaloo " is a song by English musician Ringo Starr, released as a non @-@ album single in March 1972. Starr's former Beatles bandmate George Harrison produced the recording, which took place in London shortly after the two had appeared together at Harrison's Concert for Bangladesh shows in August 1971. The single was a follow @-@ up to Starr's 1971 hit song " It Don 't Come Easy " and continued his successful run as a solo artist. " Back Off Boogaloo " peaked at number 2 in Britain and Canada, and number 9 on America's Billboard Hot 100. It remains Starr's highest @-@ charting single in the United Kingdom.
The title for the song was inspired by English singer @-@ songwriter Marc Bolan. Some commentators have suggested that the lyrics were directed at Paul McCartney, reflecting Starr's disdain for the music McCartney had made as a solo artist over the previous two years. " Back Off Boogaloo " demonstrates the influence of glam rock on Starr, who directed a documentary film, Born to Boogie ( 1972 ), about Bolan's band T. Rex around this time. Described by one author as a " high @-@ energy in @-@ your @-@ face rocker ", the song features a prominent slide guitar part by Harrison and contributions from musicians Gary Wright and Klaus Voormann.
Starr re @-@ recorded " Back Off Boogaloo " for his 1981 album Stop and Smell the Roses, in a collaboration with American singer Harry Nilsson that incorporates lyrics from Beatles songs such as " With a Little Help from My Friends ", " Good Day Sunshine " and " Baby, You're a Rich Man ". The original version has appeared on Starr's compilation albums Blast from Your Past and Photograph : The Very Best of Ringo Starr, and as a bonus track on his remastered 1974 studio album Goodnight Vienna. Since his return to touring in 1989, Starr has performed " Back Off Boogaloo " regularly in concert with the various incarnations of his All @-@ Starr Band.
= = Background and composition = =
Ringo Starr identified his initial inspiration for " Back Off Boogaloo " as having come from Marc Bolan, the singer and guitarist with English glam rock band T. Rex. In a 2001 interview with Mojo editor Paul Du Noyer, Starr described Bolan as " a dear friend who used to come into the office when I was running Apple Movies, a big office in town, and the hang @-@ out for myself, Harry Nilsson and Keith Moon ". Over dinner one evening at Starr's home outside London, Bolan had used the word " boogaloo " so often that it stuck in Starr's mind, after which the beat and melody for the song came to him overnight. When discussing the composition on VH1 Storytellers in May 1998, Starr explained : " [ Bolan ] was an energised guy. He used to speak :'Back off boogaloo... ooh you, boogaloo.'' Do you want some potatoes?'' Ooh you, boogaloo!'" Starr also recalled having to take the batteries out of his children's toys that night, in order to power a tape recorder and make a recording of the new song.
The lyrics to the middle eight of " Back Off Boogaloo " came to Starr while watching London Weekend Television's football show, The Big Match. The program's host, Jimmy Hill, often referred to a footballer's playing as " tasty ", a catchphrase that Starr incorporated into his song lyrics :
Get yourself together now
And give me something tasty
Everything you try to do
You know it sure sounds wasted.
Commentators have interpreted the song, and particularly this statement, as an attack by Starr on his former Beatles bandmate Paul McCartney. Starr has denied any such interpretation, instead " claiming that the song was inspired by Bolan and nothing more ", Beatles biographer Robert Rodriguez writes. Starr had publicly criticised McCartney's solo albums McCartney ( 1970 ) and Ram ( 1971 ) on release, and author Bruce Spizer paraphrases the message of the middle eight as " a plea for Paul to produce better music ". The mention of " sound [ ing ] wasted " could also be a reference to McCartney's overindulgence with cannabis, Rodriguez suggests. A further example of Starr's allegedly anti @-@ McCartney message exists in the song's first verse :
Wake up, meathead
Don 't pretend that you are dead
Get yourself up off the cart.
The same commentators suggest that here Starr could be referring to the 1969 " Paul Is Dead " hoax. The latter rumour circulated during September and October of that year while McCartney hid away on his Scottish farm, disconsolate after John Lennon had told him and Starr that he wanted a " divorce " from the Beatles.
In addition to these supposed messages in " Back Off Boogaloo ", observers have viewed the song title as Starr's rebuke to McCartney to abandon his legal stand against the Beatles and Apple Corps, which was placed in receivership in March 1971 after a High Court judge found in McCartney's favour. Author Keith Badman writes that " Boogaloo " had " long been cited as Paul's nickname " from his former bandmates Starr, Lennon and George Harrison. While acknowledging that in subsequent years Starr might have chosen to minimise any ill @-@ feeling towards McCartney, Rodriguez notes that the lyrics " just happened to fit perfectly into the'us vs. Paul'mindset " following the Beatles'break @-@ up, to the extent that " Back Off Boogaloo " was " as damning as'Early 1970'had been conciliatory ". When tailoring his 1970 composition " I'm the Greatest " for Starr to record on the album Ringo ( 1973 ), Lennon referenced the song title with the lines " Now I'm only thirty @-@ two / And all I want to do is boogaloo ".
Although " T Rex devotees ", in the words of Starr biographer Alan Clayson, claimed that Bolan had ghost @-@ written " Back Off Boogaloo ", Starr later acknowledged that Harrison co @-@ wrote the song by adding some chords and finishing the melody. As on Starr's 1971 hit single " It Don 't Come Easy ", Harrison was not credited for his songwriting contribution. Starr originally offered " Back Off Boogaloo " to fellow Liverpudlian Cilla Black to record, but she declined, hoping instead to record another new Starr – Harrison composition, " Photograph ".
= = Recording = =
Having earmarked the song as his next single, Starr recorded " Back Off Boogaloo " in September 1971, following his appearance at the Harrison @-@ organised Concert for Bangladesh in New York. The sessions took place at Apple Studio in central London, with Harrison producing, as he had on " It Don 't Come Easy ". The recording reflects the influence of glam rock on Starr through what authors Chip Madinger and Mark Easter term " its big drum sound and repetitious nature ", with a line @-@ up comprising Starr ( vocals, drums, percussion ), Harrison ( guitars ), Gary Wright ( piano ) and Klaus Voormann ( bass, saxophone ).
Rodriguez describes Starr's " martial @-@ sounding opening " as a rare " showcase for his own drumming ", while Harrison biographer Simon Leng writes of " a roaring series of Harrison slide breaks that brought to mind Duane Allman ". Further overdubs included contributions from three backing vocalists, led by American soul singer Madeline Bell.
= = = " Blindman " = = =
For the single's B @-@ side, Starr had already written and recorded " Blindman ", the theme song for the Ferdinando Baldi @-@ directed Spaghetti Western of the same name, filming for which Starr had interrupted in order to perform at the Concert for Bangladesh. Starr produced the track with Voormann. The sessions for " Blindman " took place at Apple on 18 – 19 August, with Badfinger guitarist Pete Ham assisting Starr and Voormann. Like the film Blindman ( 1971 ), the song is held in low regard by critics ; Spizer describes it as " a muddy @-@ sounding dirge with little to recommend ".
= = Release and reception = =
Apple Records issued the single on 17 March 1972 in Britain, as Apple R 5944, with a US release taking place three days later, as Apple 1849. It was Starr's first release since " It Don 't Come Easy ", a year before. During this period, his priority had been to develop a career as an actor in films such as 200 Motels ( 1971 ) and Blindman. Further aligning himself with Britain's glam rock movement, Starr made his directorial debut with Born to Boogie ( 1972 ), a film starring Bolan that included Starr's footage of a T. Rex concert held at Wembley on 18 March. With " Back Off Boogaloo ", NME critic Bob Woffinden | wikitext_103 | [
426,
8247,
5566,
3452,
462,
267,
3288,
426,
4928,
187,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
310,
247,
4498,
407,
4383,
26650,
22668,
80,
659,
3298,
1157,
4439,
347,
247,
1327,
1214,
14,
33,
5400,
2014,
275,
3919,
15750,
964,
659,
3298,
686,
84,
3438,
40159,
3961,
13884,
6086,
23698,
4197,
253,
7663,
1157,
534,
2335,
1659,
275,
4693,
13515,
846,
253,
767,
574,
5420,
2366,
387,
23698,
686,
84,
42134,
323,
29310,
2722,
275,
4223,
16609,
964,
380,
2014,
369,
247,
956,
1214,
14,
33,
598,
281,
659,
3298,
686,
84,
16609,
4352,
4498,
346,
733,
5037,
686,
85,
13516,
28127,
346,
285,
4821,
521,
5547,
1408,
347,
247,
14088,
9558,
964,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
33404,
387,
1180,
374,
275,
9643,
285,
6144,
1157,
285,
1180,
898,
327,
3968,
686,
84,
41073,
9405,
2233,
964,
733,
4558,
659,
3298,
686,
84,
4585,
1214,
14,
33,
8326,
272,
2014,
275,
253,
1986,
11491,
964,
2490,
380,
4060,
323,
253,
4498,
369,
11797,
407,
4383,
16057,
1214,
14,
33,
4498,
16360,
22662,
16001,
266,
964,
3808,
42608,
452,
5125,
326,
253,
24591,
497,
6828,
387,
5171,
8771,
435,
2191,
1157,
18964,
659,
3298,
686,
84,
49443,
323,
253,
3440,
8771,
435,
2191,
574,
1160,
347,
247,
14088,
9558,
689,
253,
2045,
767,
1107,
964,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
14371,
253,
4833,
273,
37845,
5561,
327,
659,
3298,
1157,
665,
6828,
247,
18802,
3085,
1157,
28810,
281,
3452,
462,
466,
313,
15750,
2387,
1157,
670,
16001,
266,
686,
84,
3961,
308,
15,
36533,
1475,
436,
673,
964,
3666,
9397,
407,
581,
2488,
347,
247,
346,
1029,
1214,
14,
33,
2341,
275,
1214,
14,
33,
634,
1214,
14,
33,
2454,
5561,
254,
346,
1157,
253,
4498,
3386,
247,
11906,
14518,
12609,
629,
407,
23698,
285,
9021,
432,
20230,
18975,
17025,
285,
18223,
666,
15914,
526,
1136,
964,
2490,
659,
3298,
294,
1214,
14,
33,
5950,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
323,
521,
13402,
5400,
21305,
285,
3774,
437,
253,
416,
4863,
1157,
275,
247,
14448,
342,
2448,
16057,
11643,
45828,
20897,
326,
31167,
24591,
432,
40159,
9575,
824,
347,
346,
2726,
247,
11573,
21695,
432,
2752,
24456,
346,
1157,
346,
7088,
6258,
4146,
25037,
346,
285,
346,
25707,
1157,
1422,
686,
250,
247,
5612,
3083,
346,
964,
380,
3236,
2715,
556,
5420,
327,
659,
3298,
686,
84,
25234,
16258,
2071,
505,
432,
5402,
20840,
285,
45751,
1163,
380,
15997,
9567,
273,
22668,
80,
659,
3298,
1157,
285,
347,
247,
17301,
3540,
327,
521,
867,
284,
3606,
15788,
11803,
5400,
7088,
6170,
26229,
964,
3932,
521,
1091,
281,
36467,
275,
11161,
1157,
659,
3298,
556,
2684,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
11719,
275,
12699,
342,
253,
2710,
40553,
569,
273,
521,
1876,
1214,
14,
33,
659,
3298,
16804,
964,
4928,
187,
426,
426,
17720,
285,
5889,
426,
426,
4928,
187,
22668,
80,
659,
3298,
3636,
521,
3302,
17006,
323,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
347,
1907,
1705,
432,
22662,
16001,
266,
1157,
253,
16057,
285,
40720,
342,
4383,
37845,
5561,
3961,
308,
15,
36533,
964,
496,
247,
6585,
4572,
342,
6956,
5309,
8121,
5171,
8502,
427,
37674,
1157,
659,
3298,
2529,
16001,
266,
347,
346,
247,
11761,
3331,
665,
908,
281,
1705,
715,
253,
3906,
672,
309,
369,
3515,
8217,
19345,
447,
1157,
247,
1943,
3906,
275,
3874,
1157,
285,
253,
10913,
1214,
14,
33,
562,
323,
4266,
1157,
11643,
45828,
20897,
285,
24035,
16363,
346,
964,
6061,
8955,
581,
7237,
387,
659,
3298,
686,
84,
1728,
3345,
4693,
1157,
16001,
266,
574,
908,
253,
3159,
346,
1766,
462,
267,
3288,
346,
594,
2223,
326,
352,
10960,
275,
659,
3298,
686,
84,
2564,
1157,
846,
534,
253,
7171,
285,
40641,
323,
253,
4498,
2210,
281,
779,
13463,
964,
2091,
16585,
253,
5889,
327,
657,
41,
18,
16061,
85,
20945,
275,
2552,
8065,
1157,
659,
3298,
5544,
1163,
346,
544,
16001,
266,
5032,
369,
271,
10838,
1701,
5599,
964,
754,
908,
281,
3984,
1163,
686,
8247,
745,
1766,
462,
267,
3288,
3346,
258,
1368,
368,
1157,
1766,
462,
267,
3288,
964,
686,
686,
3166,
368,
971,
690,
20951,
3736,
686,
686,
473,
1368,
368,
1157,
1766,
462,
267,
3288,
2195,
686,
346,
659,
3298,
671,
17602,
1907,
281,
1379,
253,
19978,
562,
273,
521,
2151,
686,
84,
23908,
326,
2360,
1157,
275,
1340,
281,
1612,
247,
11173,
40438,
285,
1056,
247,
7663,
273,
253,
747,
4498,
964,
2490,
380,
24591,
281,
253,
4766,
4314,
273,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
2210,
281,
659,
3298,
1223,
7487,
4693,
12664,
423,
29573,
686,
84,
5842,
921,
1157,
380,
7967,
29954,
964,
380,
2086,
686,
84,
3167,
1157,
20164,
7061,
1157,
2223,
6289,
281,
247,
31926,
686,
84,
4882,
347,
346,
36766,
346,
1157,
247,
5834,
40712,
326,
659,
3298,
11217,
715,
521,
4498,
24591,
1163,
2490,
5057,
4834,
2366,
1024,
2490,
1244,
1918,
479,
1633,
36766,
2490,
16942,
368,
1611,
281,
513,
2490,
1422,
871,
352,
2119,
7835,
25262,
964,
2490,
22955,
2392,
452,
12814,
253,
4498,
1157,
285,
3782,
436,
3908,
1157,
347,
271,
2983,
407,
659,
3298,
327,
521,
3438,
40159,
3961,
13884,
5171,
8771,
435,
2191,
964,
659,
3298,
556,
5868,
667,
824,
7914,
1157,
3185,
346,
15081,
326,
253,
4498,
369,
11797,
407,
16001,
266,
285,
2717,
625,
346,
1157,
40159,
1794,
25895,
6911,
27051,
12013,
964,
659,
3298,
574,
13644,
46581,
8771,
435,
2191,
686,
84,
14088,
16258,
8771,
435,
2191,
313,
10333,
2387,
285,
9752,
313,
16609,
2387,
327,
3727,
1157,
285,
2488,
18673,
2101,
6081,
1061,
24596,
1169,
253,
3935,
273,
253,
4766,
4314,
347,
346,
247,
12678,
323,
5171,
281,
4711,
1805,
3440,
346,
964,
380,
3748,
273,
346,
3590,
544,
6446,
5032,
25262,
346,
812,
671,
320,
247,
3806,
281,
8771,
435,
2191,
686,
84,
689,
527,
335,
9515,
342,
19625,
1157,
27051,
5936,
964,
329,
2007,
1650,
273,
659,
3298,
686,
84,
14163,
3270,
1214,
14,
33,
8771,
435,
2191,
3935,
4961,
275,
253,
4498,
686,
84,
806,
23252,
1163,
2490,
34625,
598,
1157,
9132,
2522,
2490,
5037,
686,
85,
22830,
326,
368,
403,
3846,
2490,
5057,
4834,
598,
745,
253,
7281,
964,
2490,
380,
1072,
42608,
1804,
326,
1060,
659,
3298,
812,
320,
14339,
281,
253,
16648,
346,
5171,
1680,
16631,
346,
8511,
991,
964,
380,
6158,
11267,
454,
41443,
1309,
4397,
285,
4437,
273,
326,
807,
1223,
8771,
435,
2191,
29334,
1977,
327,
521,
17960,
6389,
1157,
557,
5040,
25839,
846,
2516,
36239,
251,
574,
2183,
779,
285,
659,
3298,
326,
344,
3078,
247,
346,
17038,
346,
432,
253,
40159,
964,
2490,
496,
1635,
281,
841,
6326,
8169,
275,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
1157,
25226,
452,
11575,
253,
4498,
4060,
347,
659,
3298,
686,
84,
6142,
17936,
281,
8771,
435,
2191,
281,
9488,
521,
4320,
1462,
1411,
253,
40159,
285,
8217,
17729,
1157,
534,
369,
4845,
275,
29390,
1456,
275,
3919,
16609,
846,
247,
4855,
2111,
5963,
1119,
275,
8771,
435,
2191,
686,
84,
9796,
964,
10360,
24035,
15350,
1342,
12013,
326,
346,
3452,
462,
267,
3288,
346,
574,
346,
1048,
644,
11106,
347,
5171,
686,
84,
34826,
346,
432,
521,
3438,
3961,
13239,
659,
3298,
1157,
36239,
251,
285,
6086,
23698,
964,
3900,
40088,
326,
275,
6774,
1107,
659,
3298,
1537,
452,
6777,
281,
7221,
885,
667,
2853,
1214,
14,
33,
5471,
4404,
8771,
435,
2191,
1157,
27051,
7211,
326,
253,
24591,
346,
816,
4592,
281,
4944,
9670,
715,
253,
686,
441,
4632,
15,
5171,
686,
36231,
346,
1563,
253,
40159,
686,
2740,
1214,
14,
33,
598,
1157,
281,
253,
6070,
326,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
369,
346,
347,
2687,
920,
347,
686,
15643,
10333,
686,
574,
644,
7036,
3093,
2473,
346,
964,
2091,
8105,
4263,
521,
10333,
5889,
346,
309,
686,
78,
253,
6495,
383,
346,
323,
659,
3298,
281,
1924,
327,
253,
5400,
22668,
80,
313,
15621,
2387,
1157,
36239,
251,
23378,
253,
4498,
4060,
342,
253,
3104,
346,
3954,
309,
686,
78,
760,
10488,
1214,
14,
33,
767,
1227,
1244,
512,
309,
971,
281,
513,
310,
1766,
462,
267,
3288,
346,
964,
2490,
4129,
346,
308,
36533,
34097,
265,
346,
1157,
275,
253,
3000,
273,
659,
3298,
1794,
25895,
17560,
1639,
45487,
1157,
7558,
326,
16001,
266,
574,
14972,
1214,
14,
33,
3542,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
1157,
659,
3298,
1996,
14969,
326,
23698,
820,
1214,
14,
33,
4159,
253,
4498,
407,
6240,
690,
448,
6565,
285,
19083,
253,
40641,
964,
1284,
327,
659,
3298,
686,
84,
16609,
4352,
2014,
346,
733,
5037,
686,
85,
13516,
28127,
346,
1157,
23698,
369,
417,
26873,
323,
521,
4498,
17695,
7680,
964,
659,
3298,
8927,
5907,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
281,
7715,
17687,
81,
438,
77,
757,
330,
6077,
5418,
281,
1924,
1157,
533,
703,
13072,
1157,
11525,
3185,
281,
1924,
1529,
747,
659,
3298,
1108,
23698,
5889,
1157,
346,
45751,
346,
964,
4928,
187,
426,
426,
4568,
1573,
426,
426,
4928,
187,
14566,
299,
1513,
782,
264,
253,
4498,
347,
521,
1735,
2014,
1157,
659,
3298,
5950,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
275,
4397,
16609,
1157,
1563,
521,
7286,
387,
253,
23698,
1214,
14,
33,
29070,
42134,
323,
29310,
275,
1457,
2816,
964,
380,
12154,
2335,
1659,
387,
8217,
17203,
275,
4275,
4693,
1157,
342,
23698,
9603,
1157,
347,
344,
574,
327,
346,
733,
5037,
686,
85,
13516,
28127,
346,
964,
380,
7663,
13806,
253,
4833,
273,
37845,
5561,
327,
659,
3298,
949,
752,
4477,
33769,
6984,
4940,
285,
4744,
27477,
1307,
346,
697,
1943,
14988,
3590,
285,
1234,
292,
33258,
3753,
346,
1157,
342,
247,
1386,
1214,
14,
33,
598,
11616,
659,
3298,
313,
23599,
1157,
27275,
1157,
49298,
2387,
1157,
23698,
313,
47087,
2387,
1157,
18975,
17025,
313,
18542,
2387,
285,
18223,
666,
15914,
526,
1136,
313,
16819,
1157,
44392,
41461,
2387,
964,
2490,
27051,
8631,
659,
3298,
686,
84,
346,
29731,
1214,
14,
33,
31283,
5909,
346,
347,
247,
7520,
346,
34647,
323,
521,
1211,
14988,
3987,
346,
1157,
1223,
23698,
1794,
25895,
14698,
418,
1205,
12013,
273,
346,
247,
687,
1875,
2962,
273,
23698,
14518,
13471,
326,
3982,
281,
2564,
8502,
1351,
1876,
1342,
346,
964,
3840,
689,
69,
24976,
2908,
9021,
432,
1264,
19673,
17898,
1346,
1157,
3977,
407,
2448,
7765,
16057,
6984,
4115,
11590,
964,
4928,
187,
426,
426,
426,
346,
44892,
1342,
346,
426,
426,
426,
4928,
187,
1198,
253,
2014,
686,
84,
378,
1214,
14,
33,
1930,
1157,
659,
3298,
574,
2168,
3542,
285,
5950,
346,
44892,
1342,
346,
1157,
253,
10014,
4498,
323,
253,
401,
15182,
249,
6575,
11960,
5168,
1214,
14,
33,
6828,
2101,
356,
44284,
6359,
273,
253,
1072,
1416,
1157,
32539,
323,
534,
659,
3298,
574,
21018,
275,
1340,
281,
1347,
387,
253,
42134,
323,
29310,
964,
659,
3298,
4197,
253,
3540,
342,
15914,
526,
1136,
964,
380,
12154,
323,
346,
44892,
1342,
346,
2335,
1659,
387,
8217,
327,
1283,
1108,
655,
4223,
1157,
342,
15350,
37638,
40720,
26411,
5516,
34735,
659,
3298,
285,
15914,
526,
1136,
964,
6975,
253,
3085,
44892,
1342,
313,
16609,
2387,
1157,
253,
4498,
310,
2918,
275,
1698,
2743,
407,
17139,
3706,
2101,
6081,
8631,
352,
347,
346,
247,
47156,
1214,
14,
33,
31283,
14035,
463,
342,
1652,
281,
5583,
346,
964,
4928,
187,
426,
426,
20002,
285,
16112,
426,
426,
4928,
187,
8217,
15648,
6808,
253,
2014,
327,
1722,
3919,
15750,
275,
9643,
1157,
347,
8217,
416,
8978,
2031,
1157,
342,
247,
1982,
3727,
3192,
1659,
1264,
1897,
1996,
1157,
347,
8217,
1283,
2537,
964,
733,
369,
659,
3298,
686,
84,
806,
3727,
1580,
346,
733,
5037,
686,
85,
13516,
28127,
346,
1157,
247,
807,
1078,
964,
6408,
436,
2180,
1157,
521,
11674,
574,
644,
281,
1287,
247,
5249,
347,
271,
12353,
275,
6590,
824,
347,
1052,
9849,
1241,
313,
16609,
2387,
285,
44892,
1342,
964,
3840,
8495,
272,
2994,
342,
9643,
686,
84,
37845,
5561,
4866,
1157,
659,
3298,
1160,
521,
6423,
451,
11386,
342,
28810,
281,
3452,
462,
466,
313,
15750,
2387,
1157,
247,
3085,
28193,
16001,
266,
326,
2908,
659,
3298,
686,
84,
20541,
273,
247,
308,
15,
36533,
12699,
2918,
387,
411,
358,
934,
90,
327,
1283,
3919,
964,
2726,
346,
8247,
5566,
3452,
462,
267,
3288,
346,
1157,
427,
5288,
7291,
8679,
411,
2727,
527,
257
] |
There are three hospitals in Meridian, as well as many other healthcare @-@ related facilities. Jeff Anderson Regional Medical Center provides cardiovascular surgery, a Level II newborn intensive @-@ care unit, and a health and fitness center. Rush Foundation Hospital and the related Rush Health Systems operate a Specialty Hospital of Meridian, which offers long @-@ term care for non @-@ permanent patients who require more recovery time in a hospital setting. Riley Hospital has two centers for stroke treatment and rehabilitation services. Other healthcare facilities in Meridian include the Alliance Health Center and East Mississippi State Hospital, the latter of which has been in operation since 1882.
Retail is another major employer in the county, with 5 @,@ 280 people employed in April 2010. Nearly $ 2 billion annually is spent on retail purchases in the city. The 633 @,@ 685 @-@ square @-@ foot ( 58 @,@ 871 m2 ) Bonita Lakes Mall offers over one hundred shopping venues, including department stores, specialty shops, restaurants, eateries, and United Artists Theatres. Phase I of the construction of Meridian Crossroads, a 375 @,@ 000 @-@ square @-@ foot ( 34 @,@ 800 m2 ) shopping center in the Bonita Lakes area, was completed in November 2007, providing a major boost to retail in the area. Also, the shopping district on North Hills Street has continued to expand, and in March 2007, additional retail and office space was opened near the Highway 19 Walmart Supercenter.
The area is also served by two military facilities, Naval Air Station Meridian and Key Field, which supply over 4 @,@ 000 jobs to residents of the surrounding area. NAS Meridian provides training for naval carrier pilots and other enlisted personnel. Also housed at the base is the Regional Counter @-@ Drug Training Academy ( RCTA ), which provides narcotics training for law enforcement in many southeastern states. Containing the first local Department of Homeland Security in the state, the city is the leader in a nine county regional response team and a twenty @-@ nine county regional response task force. Key Field is the site of the famous flight by brothers Fred and Al Key, who set a world endurance flight record in 1935. Key Field is now home to the 186th Air Refueling Wing of the Air National Guard and a support facility for the 185th Aviation Brigade of the Army National Guard. The site also contains an exhibit reviewing the history of aviation, and is the home of Meridian's Aviation Museum.
The total manufacturing employment of Lauderdale County in April 2010 was 2 @,@ 850 people. Peavey Electronics Corporation, which has manufactured guitars, amplifiers, and sound equipment since 1965, operates its headquarters in the city. Other businesses in the area include Avery Dennison, Structural Steel Services, Sara Lee, Tower Automotive, and Teikuro Corporation. The city is also home to four industrial parks.
In downtown, the MSU Riley Center provides revenue from tourism, arts, and entertainment sales. The Riley Center attracts more than 60 @,@ 000 visitors to downtown Meridian annually for conferences, meetings, and performances. Loeb's Department Store on Front St has remained a Mississippi clothing landmark, having passed through four generations of family ownership. The store has been selling fine men's and women's clothing since 1887, when the store was first opened by Alex Loeb.
= = Culture = =
= = = Arts = = =
Known for more than a century of arts, Meridian contains many art and cultural organizations and hosts many cultural events. One of the first art organizations in the city, The Meridian Art League, was established in February 1933. Art exhibitions were originally held in Lamar Hotel in downtown Meridian, but after a name change to Meridian Art Association in 1949, exhibitions were held at various locations around the city. After the Carnegie library at 25th Ave and 7th St was closed, the Art Association remodelled the building into the Meridian Museum of Art to serve as a permanent home for exhibits. The museum was opened in 1970 and has since featured rotating exhibitions as well as many educational programs for both students and adults. Over thirty exhibitions are held annually, ranging from traditional decorative arts to ethnographic and tribal materials, photography, crafts, and many other works of art. The collection also includes 18th and 19th century portraits, 20th century photography, and several sculptures.
The Meridian Council for the Arts ( MCA ) was founded as Meridian's and Lauderdale County's official arts agency in 1978. MCA operates its Community Art Grants program, the annual Threefoot Festival, several workshops, and other special events each year. MCA is partnered with many arts organizations in the city and county including the Meridian Museum of Art, the Meridian Little Theatre, and the Meridian Symphony Orchestra. Meridian Little Theatre, one of the South's oldest subscription @-@ based community theatres, was built in 1932 and currently provides entertainment to residents of and visitors to Meridian and Lauderdale County, entertaining over 22 @,@ 000 guests each season, making it Mississippi's most @-@ attended community theatre. The Meridian Symphony Orchestra ( MSO ) – founded in 1961 – played its first concert in 1962 and its first full season in 1963. In 1965 the MSO booked its first international soloist, Elena Nikolaidi, to perform with the orchestra. The Orchestra helped the Meridian Public School District develop its own orchestra and strings programs and also helped develop the Meridian Symphony Chorus. The current conductor is Dr. Claire Fox Hillard, who has been with the orchestra since 1991. The MSO will celebrate its 50th anniversary in February 2011 with a performance from Itzhak Perlman.
The city's former Grand Opera House was built in 1889 by two half brothers, Israel Marks and Levi Rothenberg. During its operation the opera house hosted many famous artists and works, the first being a German company's rendition of Johann Strauss II's " The Gypsy Baron ". After closing in the late 1920s due to the Great Depression, the opera house was abandoned for nearly 70 years. A $ 10 million grant in 2000 by the Riley Foundation, a local foundation chartered in 1998, sparked the building's restoration while $ 15 million came from a combination of city, county, and federal grants. The opera house's renovation was completed in September 2006 under the new name " Mississippi State University Riley Center for Education and Performing Arts. " The Riley Center, which includes a 950 @-@ seat auditorium for live performances, a 200 @-@ seat studio theater, and 30 @,@ 000 sq ft ( 2 @,@ 787 m2 ) of meeting space, attracts more than 60 @,@ 000 visitors to downtown Meridian annually for conferences, meetings, and performances.
Meridian is rightly considered an architectural treasure trove being one the nations most intact cities from the turn of the last century. Architecture students from around the nation and Canada are known to visit Meridian in groups as part of their coursework due to numerous structures in the city having been designed by noted architects. The only home in the US south designed by noted Canadian born Architect Louis S. Curtiss, famous for inventing the glass curtain wall skyscraper, is extant on Highland Park. The Frank Fort designed Threefoot Building is generally considered one of the best Art Deco skyscrapers in the US and is often compared to Detroit's famed Fisher Building. Noted California Architect Wallace Neff designed a number of homes in Meridian as well as in the Alabama Black Belt which adjoins the city across the nearby Alabama State line. He had relatives in Meridian and Selma who were executives in the then thriving railroad industry and would take commissions in the area when commissions in California were lean. His work is mostly concentrated in the lower numbered blocks of Poplar Springs Drive where his 2516 Poplar Springs Drive is often compared to the similarly designed Falcon Lair, the Beverly Hills home in Benedict Canyon of Rudolph Valentino. One Neff work was lost to an expansion of Anderson Hospital in 1990 and another in Marion Park burned in the 1950s. The Meridian Post Office with its interior done entirely of bronze and Verde marble is also noteworthy as a very fine example of the type of Post Office structures built in thriving and well to do cities in the 1920s and originally had Lalique lighting which was removed sadly during a 1960s remodeling and which are now in private residences on Poplar Springs Drive and in North Hills.
Meridian has also been selected as the future location of the Mississippi Arts and Entertainment Center ( MAEC ). The Mississippi Legislature approved the idea in 2001 and in 2006 promised $ 4 million in funding if private contributors could raise $ 8 million. The city donated $ 50 @,@ 000 to the cause in September 2007. The MAEC, as proposed, would be located on 175 acres ( 71 ha ) at Bonita Lakes and consist of an outdoor amphitheatre, an indoor concert hall, and a Hall of Fame honoring Mississippi artists. The Hall of Fame will be located downtown in the old Montana's building. That property and the adjacent Meridian Hotel building were acquired in July 2010 for $ 300 @,@ 000. In February 2009, the MAEC revealed its Walk of Fame outside of the Riley Center in an attempt to promote the planned Hall of Fame. The first star on the walk was dedicated to Jimmie Rodgers, a Meridian native. In September of the same year, the second star was revealed, recognizing B.B. King, a famous blues musician from Mississippi. On June 1, 2010, authors Tennessee Williams, Eudora Welty, and William Faulkner were added to the walk. Sela Ward was added to the walk on June 24, 2010. The MAEC plans | wikitext_103 | [
1707,
403,
1264,
13240,
275,
7612,
31517,
1157,
347,
973,
347,
1142,
643,
11723,
1214,
14,
33,
2905,
9189,
964,
9069,
13051,
19804,
8710,
5197,
3400,
13440,
5869,
1157,
247,
15557,
3719,
23066,
17193,
1214,
14,
33,
1557,
3943,
1157,
285,
247,
1786,
285,
14601,
4055,
964,
31933,
6807,
8896,
285,
253,
2905,
31933,
4775,
13869,
10196,
247,
10396,
555,
8896,
273,
7612,
31517,
1157,
534,
6131,
1048,
1214,
14,
33,
1307,
1557,
323,
1327,
1214,
14,
33,
9928,
1363,
665,
2430,
625,
7355,
673,
275,
247,
4675,
4758,
964,
32920,
8896,
556,
767,
12127,
323,
9980,
1971,
285,
20123,
3238,
964,
5131,
11723,
9189,
275,
7612,
31517,
2486,
253,
20958,
4775,
5197,
285,
5791,
18531,
2418,
8896,
1157,
253,
6158,
273,
534,
556,
644,
275,
4254,
1580,
49325,
964,
2490,
45943,
310,
1529,
2201,
11169,
275,
253,
9635,
1157,
342,
608,
1214,
13,
33,
22121,
952,
7091,
275,
4162,
4267,
964,
36388,
370,
374,
6494,
21051,
310,
5262,
327,
10567,
21754,
275,
253,
2846,
964,
380,
48891,
1214,
13,
33,
721,
2227,
1214,
14,
33,
6278,
1214,
14,
33,
3174,
313,
9135,
1214,
13,
33,
854,
3677,
278,
19,
2387,
11228,
5741,
32396,
21984,
6131,
689,
581,
4289,
12701,
28966,
1157,
1690,
7811,
10111,
1157,
28648,
16999,
1157,
15114,
1157,
299,
727,
447,
1157,
285,
1986,
47011,
380,
255,
373,
964,
19368,
309,
273,
253,
5140,
273,
7612,
31517,
10547,
29488,
1157,
247,
28458,
1214,
13,
33,
20181,
1214,
14,
33,
6278,
1214,
14,
33,
3174,
313,
5910,
1214,
13,
33,
14212,
278,
19,
2387,
12701,
4055,
275,
253,
11228,
5741,
32396,
2170,
1157,
369,
6312,
275,
4596,
5215,
1157,
5277,
247,
2201,
9510,
281,
10567,
275,
253,
2170,
964,
5220,
1157,
253,
12701,
3286,
327,
3729,
21706,
5720,
556,
4821,
281,
5645,
1157,
285,
275,
3919,
5215,
1157,
3081,
10567,
285,
3906,
2317,
369,
5485,
2822,
253,
21788,
655,
41414,
6053,
9229,
964,
2490,
380,
2170,
310,
671,
5608,
407,
767,
4668,
9189,
1157,
29066,
6037,
14628,
7612,
31517,
285,
10030,
7327,
1157,
534,
6186,
689,
577,
1214,
13,
33,
20181,
7375,
281,
8811,
273,
253,
8704,
2170,
964,
13170,
7612,
31517,
3400,
3733,
323,
25186,
10289,
25244,
285,
643,
42969,
11570,
964,
5220,
24981,
387,
253,
2613,
310,
253,
19804,
27891,
1214,
14,
33,
16686,
19036,
11417,
313,
31741,
34,
2387,
1157,
534,
3400,
41815,
3733,
323,
1569,
10473,
275,
1142,
32276,
25489,
3054,
964,
3267,
1776,
253,
806,
1980,
4487,
273,
38394,
9044,
275,
253,
1375,
1157,
253,
2846,
310,
253,
6657,
275,
247,
7457,
9635,
9933,
2380,
2285,
285,
247,
6818,
1214,
14,
33,
7457,
9635,
9933,
2380,
4836,
3490,
964,
10030,
7327,
310,
253,
2670,
273,
253,
8530,
8630,
407,
13189,
10852,
285,
1219,
10030,
1157,
665,
873,
247,
1533,
33272,
8630,
1924,
275,
29175,
964,
10030,
7327,
310,
1024,
1728,
281,
253,
25384,
394,
6037,
7567,
3814,
272,
28139,
273,
253,
6037,
3313,
12174,
285,
247,
1329,
9509,
323,
253,
23512,
394,
38315,
34412,
273,
253,
8663,
3313,
12174,
964,
380,
2670,
671,
4428,
271,
10738,
16725,
253,
2892,
273,
34953,
1157,
285,
310,
253,
1728,
273,
7612,
31517,
686,
84,
38315,
11032,
964,
2490,
380,
2264,
10264,
8410,
273,
3905,
438,
15182,
1079,
3928,
275,
4162,
4267,
369,
374,
1214,
13,
33,
39739,
952,
964,
3586,
1123,
90,
43754,
11294,
1157,
534,
556,
18461,
47087,
1157,
5457,
13783,
1157,
285,
3590,
6500,
1580,
18417,
1157,
17209,
697,
17929,
275,
253,
2846,
964,
5131,
9341,
275,
253,
2170,
2486,
329,
635,
399,
2477,
1988,
1157,
46553,
19727,
9491,
1157,
31336,
8652,
1157,
20610,
24689,
20082,
1157,
285,
2745,
1479,
1822,
11294,
964,
380,
2846,
310,
671,
1728,
281,
1740,
9787,
21952,
964,
2490,
496,
17207,
1157,
253,
353,
6971,
32920,
5197,
3400,
11784,
432,
26742,
1157,
14635,
1157,
285,
14608,
6224,
964,
380,
32920,
5197,
45465,
625,
685,
3925,
1214,
13,
33,
20181,
12942,
281,
17207,
7612,
31517,
21051,
323,
27691,
1157,
12225,
1157,
285,
16226,
964,
9497,
2275,
686,
84,
4487,
16106,
327,
15808,
659,
556,
6376,
247,
18531,
14234,
30951,
1157,
1907,
4817,
949,
1740,
14649,
273,
2021,
12851,
964,
380,
4657,
556,
644,
10156,
4030,
1821,
686,
84,
285,
2255,
686,
84,
14234,
1580,
48026,
1157,
672,
253,
4657,
369,
806,
5485,
407,
6539,
9497,
2275,
964,
4928,
187,
426,
426,
17156,
426,
426,
4928,
19668,
426,
426,
426,
15118,
426,
426,
426,
4928,
187,
41570,
323,
625,
685,
247,
5331,
273,
14635,
1157,
7612,
31517,
4428,
1142,
1445,
285,
8928,
8889,
285,
14516,
1142,
8928,
3394,
964,
2596,
273,
253,
806,
1445,
8889,
275,
253,
2846,
1157,
380,
7612,
31517,
3975,
6884,
1157,
369,
4232,
275,
5080,
26916,
964,
3975,
44742,
497,
8927,
2918,
275,
16967,
274,
14469,
275,
17207,
7612,
31517,
1157,
533,
846,
247,
1416,
1818,
281,
7612,
31517,
3975,
7115,
275,
24344,
1157,
44742,
497,
2918,
387,
2710,
8593,
1475,
253,
2846,
964,
2732,
253,
48476,
6335,
387,
2030,
394,
18953,
285,
818,
394,
659,
369,
4581,
1157,
253,
3975,
7115,
21150,
5911,
253,
3652,
715,
253,
7612,
31517,
11032,
273,
3975,
281,
5752,
347,
247,
9928,
1728,
323,
15646,
964,
380,
16064,
369,
5485,
275,
10333,
285,
556,
1580,
12819,
17387,
44742,
347,
973,
347,
1142,
11331,
5659,
323,
1097,
3484,
285,
7747,
964,
6061,
10488,
44742,
403,
2918,
21051,
1157,
12319,
432,
5899,
38323,
14635,
281,
22603,
5576,
285,
26903,
4753,
1157,
20937,
1157,
43021,
1157,
285,
1142,
643,
2987,
273,
1445,
964,
380,
4849,
671,
3797,
1283,
394,
285,
655,
394,
5331,
38317,
1157,
1384,
394,
5331,
20937,
1157,
285,
2067,
48106,
964,
2490,
380,
7612,
31517,
6456,
323,
253,
15118,
313,
44269,
2387,
369,
11420,
347,
7612,
31517,
686,
84,
285,
3905,
438,
15182,
1079,
3928,
686,
84,
3565,
14635,
6757,
275,
14304,
964,
44269,
17209,
697,
12244,
3975,
1997,
1103,
2086,
1157,
253,
7970,
9064,
8938,
14964,
1157,
2067,
29561,
1157,
285,
643,
2714,
3394,
1016,
807,
964,
44269,
310,
47199,
342,
1142,
14635,
8889,
275,
253,
2846,
285,
9635,
1690,
253,
7612,
31517,
11032,
273,
3975,
1157,
253,
7612,
31517,
11573,
19670,
1157,
285,
253,
7612,
31517,
44110,
38008,
964,
7612,
31517,
11573,
19670,
1157,
581,
273,
253,
3684,
686,
84,
17172,
21729,
1214,
14,
33,
1754,
3114,
28245,
373,
1157,
369,
4270,
275,
30953,
285,
4390,
3400,
14608,
281,
8811,
273,
285,
12942,
281,
7612,
31517,
285,
3905,
438,
15182,
1079,
3928,
1157,
25945,
689,
3307,
1214,
13,
33,
20181,
12958,
1016,
2952,
1157,
2403,
352,
18531,
686,
84,
954,
1214,
14,
33,
11612,
3114,
20021,
964,
380,
7612,
31517,
44110,
38008,
313,
7852,
48,
2387,
1108,
11420,
275,
21054,
1108,
4546,
697,
806,
12699,
275,
20208,
285,
697,
806,
2120,
2952,
275,
19949,
964,
496,
18417,
253,
7852,
48,
32346,
697,
806,
5213,
14088,
382,
1157,
44846,
17250,
6836,
13535,
1157,
281,
1347,
342,
253,
37970,
964,
380,
38008,
6518,
253,
7612,
31517,
5259,
4726,
4412,
1287,
697,
1211,
37970,
285,
11559,
5659,
285,
671,
6518,
1287,
253,
7612,
31517,
44110,
775,
16973,
964,
380,
1655,
23998,
310,
3196,
15,
31231,
11024,
7061,
472,
1157,
665,
556,
644,
342,
253,
37970,
1580,
10226,
964,
380,
7852,
48,
588,
17019,
697,
2456,
394,
19054,
275,
5080,
4332,
342,
247,
3045,
432,
733,
20122,
518,
33515,
1342,
964,
2490,
380,
2846,
686,
84,
3438,
8481,
30383,
3995,
369,
4270,
275,
45272,
407,
767,
2716,
13189,
1157,
5143,
46954,
285,
35925,
22343,
864,
4978,
964,
6408,
697,
4254,
253,
24342,
2419,
17386,
1142,
8530,
10846,
285,
2987,
1157,
253,
806,
1146,
247,
5685,
2567,
686,
84,
50032,
273,
26737,
19967,
1316,
3719,
686,
84,
346,
380,
20925,
19060,
26192,
346,
964,
2732,
11196,
275,
253,
3563,
18471,
84,
1955,
281,
253,
6495,
27675,
1157,
253,
24342,
2419,
369,
13966,
323,
4829,
5571,
1107,
964,
329,
370,
884,
3041,
4098,
275,
5307,
407,
253,
32920,
6807,
1157,
247,
1980,
12153,
8326,
2122,
275,
8065,
1157,
35560,
253,
3652,
686,
84,
20384,
1223,
370,
1458,
3041,
2210,
432,
247,
5019,
273,
2846,
1157,
9635,
1157,
285,
4400,
16311,
964,
380,
24342,
2419,
686,
84,
45081,
369,
6312,
275,
4397,
5403,
762,
253,
747,
1416,
346,
18531,
2418,
2499,
32920,
5197,
323,
10286,
285,
3545,
14692,
15118,
964,
346,
380,
32920,
5197,
1157,
534,
3797,
247,
49305,
1214,
14,
33,
7319,
41740,
1514,
323,
3153,
16226,
1157,
247,
1052,
1214,
14,
33,
7319,
11803,
18876,
1157,
285,
1884,
1214,
13,
33,
20181,
34703,
23899,
313,
374,
1214,
13,
33,
818,
2597,
278,
19,
2387,
273,
4804,
2317,
1157,
45465,
625,
685,
3925,
1214,
13,
33,
20181,
12942,
281,
17207,
7612,
31517,
21051,
323,
27691,
1157,
12225,
1157,
285,
16226,
964,
2490,
7612,
31517,
310,
35155,
2783,
271,
27934,
21764,
6727,
306,
1146,
581,
253,
12390,
954,
15282,
8238,
432,
253,
1614,
273,
253,
1390,
5331,
964,
35052,
3484,
432,
1475,
253,
5674,
285,
6144,
403,
1929,
281,
4143,
7612,
31517,
275,
2390,
347,
629,
273,
616,
2282,
1601,
1955,
281,
7418,
5289,
275,
253,
2846,
1907,
644,
4158,
407,
4879,
38446,
964,
380,
760,
1728,
275,
253,
1982,
6420,
4158,
407,
4879,
9462,
5686,
22717,
7406,
322,
15,
24126,
739,
1157,
8530,
323,
10242,
272,
253,
5253,
31261,
3402,
1629,
656,
33205,
468,
1157,
310,
46463,
327,
4855,
1373,
4913,
964,
380,
6893,
10188,
4158,
9064,
8938,
16790,
310,
3839,
2783,
581,
273,
253,
1682,
3975,
7659,
80,
1629,
656,
68,
1761,
398,
275,
253,
1982,
285,
310,
2223,
2429,
281,
17372,
686,
84,
47683,
14826,
16790,
964,
3105,
264,
5002,
22717,
25458,
3532,
567,
4158,
247,
1180,
273,
9076,
275,
7612,
31517,
347,
973,
347,
275,
253,
15263,
5418,
39398,
534,
38319,
968,
253,
2846,
2439,
253,
10151,
15263,
2418,
1386,
964,
754,
574,
17772,
275,
7612,
31517,
285,
16120,
785,
665,
497,
23289,
275,
253,
840,
43377,
23859,
4491,
285,
651,
1379,
36662,
275,
253,
2170,
672,
36662,
275,
5002,
497,
9644,
964,
3032,
789,
310,
6571,
16761,
275,
253,
2406,
31050,
8336,
273,
367,
4488,
274,
26250,
19672,
835,
521,
2030,
1036,
367,
4488,
274,
26250,
19672,
310,
2223,
2429,
281,
253,
12014,
4158,
41196,
418,
1094,
1157,
253,
42408,
21706,
1728,
275,
36841,
33843,
273,
21523,
15967,
24640,
2610,
964,
2596,
3532,
567,
789,
369,
3663,
281,
271,
7466,
273,
13051,
8896,
275,
7901,
285,
1529,
275,
38502,
4913,
15676,
275,
253,
13918,
84,
964,
380,
7612,
31517,
5779,
7454,
342,
697,
10755,
2218,
7094,
273,
26247,
285,
7188,
615,
28594,
310,
671,
35092,
347,
247,
1077,
4030,
1650,
273,
253,
1511,
273,
5779,
7454,
5289,
4270,
275,
43377,
285,
973,
281,
513,
8238,
275,
253,
18471,
84,
285,
8927,
574,
48877,
2271,
15632,
534,
369,
5176,
30018,
1309,
247,
11994,
84,
27975,
285,
534,
403,
1024,
275,
3055,
4178,
2979,
327,
367,
4488,
274,
26250,
19672,
285,
275,
3729,
21706,
964,
2490,
7612,
31517,
556,
671,
644,
4236,
347,
253,
2852,
4328,
273,
253,
18531,
15118,
285,
23890,
5197,
313,
6908,
4625,
2387,
964,
380,
18531,
22891,
7012,
253,
2934,
275,
6585,
285,
275,
5403,
12316,
370,
577,
3041,
275,
8362,
604,
3055,
24781,
812,
7164,
370,
854,
3041,
964,
380,
2846,
26837,
370,
2456,
1214,
13,
33,
20181,
281,
253,
2847,
275,
4397,
5215,
964,
380,
6908,
4625,
1157,
347,
4081,
1157,
651,
320,
4441,
327,
20105,
20046,
313,
11102,
419,
2387,
387,
11228,
5741,
32396,
285,
2882,
273,
271,
17603,
29555,
37018,
11203,
1157,
271,
24340,
12699,
7423,
1157,
285,
247,
6696,
273,
27993,
4070,
4263,
18531,
10846,
964,
380,
6696,
273,
27993,
588,
320,
4441,
17207,
275,
253,
1711,
27540,
686,
84,
3652,
964,
2064,
2867,
285,
253,
9701,
7612,
31517,
14469,
3652,
497,
9288,
275,
4163,
4267,
323,
370,
7469,
1214,
13,
33,
20181,
964,
496,
5080,
4748,
1157,
253,
6908,
4625,
4950,
697,
11255,
273,
27993,
3345,
273,
253,
32920,
5197,
275,
271,
3177,
281,
8591,
253,
9355,
6696,
273,
27993,
964,
380,
806,
4177,
327,
253,
2940,
369,
9940,
281,
8438,
44492,
41678,
1157,
247,
7612,
31517,
7925,
964,
496,
4397,
273,
253,
1072,
807,
1157,
253,
1273,
4177,
369,
4950,
1157,
26182,
378,
15,
35,
15,
4377,
1157,
247,
8530,
32428,
26650,
432,
18531,
964,
1623,
3978,
337,
1157,
4267,
1157,
4477,
16091,
8757,
1157,
444,
438,
6464,
17871,
555,
1157,
285,
7252,
15404,
23073,
1216,
497,
2879,
281,
253,
2940,
964,
322,
7896,
18730,
369,
2879,
281,
253,
2940,
327,
3978,
2164,
1157,
4267,
964,
380,
6908,
4625,
5827
] |
have twin fairs. US 2 / US 41 / M ‑ 35 continues north on Lincoln Avenue past the campus of Bay de Noc Community College. The four @-@ lane highway crosses the Escanaba River just upstream from its mouth near the large Mead Paper Mill and shifts to run immediately next to Little Bay de Noc. The section here carried the highest traffic counts along all of US 2 in the state : an average of 23 @,@ 977 vehicles used this segment of roadway daily in 2011.
The road turns inland again, and US 2 / US 41 / M ‑ 35 passes to the west of downtown Gladstone. The highway through here is an expressway, four lanes divided by a central median and no driveway access. Unlike a freeway, the expressway has standard intersections and not interchanges. The highway intersects the eastern terminus of County Road 426 ( CR 426 ) and crosses the ELS Railroad south of the stoplight for 4th Avenue North, where M ‑ 35 separates from the US Highways and turns to the northwest. The expressway continues north parallel to the CN Railway, crossing the Days River. Through this area, the trunkline carries a speed limit of 65 mph ( 105 km / h ) for car traffic. This is the only road in the UP with a speed limit higher than 55 mph ( 89 km / h ) besides I @-@ 75, which has a speed limit of 70 mph ( 110 km / h ). The expressway segment runs around the upper end of Little Bay de Noc before ending at Rapid River. In this location, US 41 separates to the north, and US 2 returns to an easterly track as a two @-@ lane road, crossing the Rapid and Whitefish rivers and turning southeast around the head of the bay. As US 2 crosses southern Delta County, it passes through the western unit of the Hiawatha National Forest. Near Garden Corners, the highway runs along the shore of Big Bay de Noc. After the intersection with the northern terminus of M ‑ 183, US 2 turns inland cutting across the base of the Garden Peninsula and enters Schoolcraft County.
As the highway approaches Thompson, US 2 leaves the western unit of the Hiawatha National Forest and enters the Lake Superior State Forest. The roadway runs along Lake Michigan to Manistique, crossing the Manistique River. The trunkline turns inland approaching Gulliver and then turns north @-@ northeast to Blaney Park. The community there is a former logging town @-@ turned @-@ resort at the southern terminus of M ‑ 77 ; the resort was active from the late 1920s but declined by the 1980s. From Blaney Park, US 2 turns due east and crosses into Mackinac County west of Gould City. Where it intersects a former routing, the main highway crosses the CN Railway one last time and runs to the south of Engadine to follow the Lake Michigan shoreline through Naubinway. After passing the community of Epoufette, US 2 crosses the Cut River Bridge, 147 feet ( 45 m ) over the Cut River. The highway crosses into the eastern unit of the Hiawatha National Forest near Brevort, running between Lake Michigan and Brevort Lake in the process. The road continues along the Lake Michigan shoreline, passing Mystery Spot near Gros Cap and turning inland immediately west of St. Ignace. The US 2 designation ends at the highway's partial cloverleaf interchange with I ‑ 75. The roadway continues easterly into downtown St. Ignace as Business Loop I ‑ 75 ( BL I ‑ 75 ).
= = History = =
= = = Indian trail through auto trails = = =
In 1701, the first transportation routes through what became the state of Michigan were the lakes, rivers and Indian trails. Two of these trails followed parts of the future US 2. The Sault – Green Bay Trail roughly followed the Lake Michigan shoreline routing of US 2 between Escanaba and St. Ignace. The Mackinac Trail connected St. Ignace with Sault Ste. Marie.
In the age of the auto trail, the roads that later formed US 2 through the UP were given a few different highway names. When the original roadways between Ironwood and Iron River were completed in late 1915, the Upper Peninsula Development Bureau ( UPDB ) named the area Cloverland and the highway the Cloverland Trail. Later the name was extended over the highway to Escanaba, and to all highways in the area in the early 1920s ; the name was phased out by the UPDB completely in 1927. The roadways were also used for the Theodore Roosevelt International Highway, named for former US president Theodore Roosevelt after his death in 1919. Overall, this highway ran from Portland, Oregon, to Portland, Maine, by way of Michigan and the Canadian province of Ontario. Through the UP, the southern branch followed the immediate predecessors to US 2, including the section through Florence County, Wisconsin.
The Great Lakes Automobile Route was established in 1917 by the UPDB. A predecessor of the Great Lakes Circle Tours by seventy years, the route followed " a circular journey along the banks of lakes Michigan and Superior and Green Bay... " This route followed the modern US 2 from Ironwood to the M ‑ 94 junction in Manistique, using the modern M ‑ 69 and M ‑ 95 to stay in Michigan. Branches of the route followed US 41 and M ‑ 35 between Powers and Escanaba. The route was originally intended to entice motorists to drive around Lake Michigan. The name fell out of use before its first anniversary because of World War I.
One Canadian auto trail was routed through the UP as well. In 1920, the King's International Highway linked Vancouver, British Columbia, to Halifax, Nova Scotia, but there was no highway to carry it around the north side of Lake Superior. Motorists had to ship their cars by boat between Sault Ste. Marie, Ontario, and Thunder Bay or enter the United States to continue along the auto trail. The routings varied on the maps of the time, but its basic route used US 2 through the UP from Ironwood to Sault Ste. Marie until a highway north of Lake Superior was opened in 1960 ; by that time, the auto trail had taken on the Trans @-@ Canada Highway name.
= = = State trunkline = = =
The first state trunkline highway designated along the path of the modern US 2 was M ‑ 12, a designation that was in use by July 1, 1919, between Ironwood and Sault Ste. Marie. The first roadside park in the country was created by Herbert Larson near what is now US 2 near Iron River in 1919 – 20, although other sources state that the first was a picnic table alongside US 16 ( Grand River Avenue ) in 1929 south of Saranac. When the US Highway System was created on November 11, 1926, US 2 partially replaced M @-@ 12. Between Crystal Falls and Iron Mountain, US 2 was routed through Florence, Wisconsin. The former routing of M ‑ 12 from Crystal Falls to Sagola became a new M ‑ 69 when the former M ‑ 69 became US 102 ( now US 141 ). M ‑ 12 from Sagola south to Iron Mountain was made a part of an extended M ‑ 45, which is now M ‑ 95. By the next year, M ‑ 48 was added along US 2 from Rexton to Garnet as part of a larger extension.
The first changes to the routing of US 2 itself were made in 1930 with a bypass of downtown Escanaba. A larger rerouting was completed in 1933 between Rogers Park and Sault Ste. Marie. The new routing followed Mackinac Trail instead of turning east to Cedarville and north to Sault Ste. Marie ; the former routing was given the M ‑ 121 designation. Another realignment in the Iron Mountain area shifted US 2 / US 141 to a new bridge over the Menominee River between 1932 and 1934. Downtown Ironwood was bypassed in 1934, and the former route was initially designated M ‑ 54.
The Michigan State Highway Department ( MSHD ) changed the routings and designations of the highways around Cooks, Thompson and Manistique in the mid @-@ 1930s. The agency rerouted US 2 between Cooks and M ‑ 149 in Thompson, turning the old road back to county control. The section between M ‑ 149 and M ‑ 125 was redesignated as an extension of M ‑ 149 to Thompson, and M ‑ 125 was replaced by a further extension of M ‑ 149. The last change was to route US 2 along its current alignment in the area, completing the changes on August 2, 1936.
The MSHD started construction in 1936 on a new road that rerouted US 2 into St. Ignace for the first time. Between Brevort and Moran, US 2 previously followed Worth Road inland to the Tahquamenon Trail to meet the northern extension of US 31 into the Upper Peninsula. The new routing took US 2 along the lakeshore into St. Ignace. US 31 was truncated to the state ferry docks in Mackinaw City and US 2 was routed through St. Ignace along the former US 31 to Rogers Park ; the connection in St. Ignace to the state ferry docks became M ‑ 122. Further changes in the early 1940s straightened the roadway out near Watersmeet and Crystal Falls.
Additional realignments were completed by the MSHD to move US 2 to its modern lakeshore routing between Gould City and Epoufette in 1941. The new highway traveled due east from Gould City to Naubinway and then along the lake to Epoufette. The former route through Eng | wikitext_103 | [
452,
19661,
269,
3514,
964,
1982,
374,
1227,
1982,
7609,
1227,
353,
541,
228,
4791,
7788,
6146,
327,
15915,
14216,
2469,
253,
13790,
273,
6912,
372,
427,
406,
12244,
6822,
964,
380,
1740,
1214,
14,
33,
18209,
17657,
25808,
253,
20748,
266,
10442,
7121,
816,
17934,
432,
697,
6208,
2822,
253,
1781,
31662,
21897,
13134,
285,
15036,
281,
1408,
4745,
1735,
281,
11573,
6912,
372,
427,
406,
964,
380,
2593,
1060,
4824,
253,
4585,
7137,
9372,
2112,
512,
273,
1982,
374,
275,
253,
1375,
1163,
271,
3388,
273,
3495,
1214,
13,
33,
898,
2357,
9411,
908,
436,
8223,
273,
50159,
5312,
275,
4332,
964,
2490,
380,
3971,
7819,
40835,
969,
1157,
285,
1982,
374,
1227,
1982,
7609,
1227,
353,
541,
228,
4791,
11999,
281,
253,
8935,
273,
17207,
36977,
10228,
964,
380,
17657,
949,
1060,
310,
271,
3890,
1106,
1157,
1740,
24914,
4272,
407,
247,
4275,
8876,
285,
642,
35664,
2289,
964,
16513,
247,
1959,
1106,
1157,
253,
3890,
1106,
556,
2629,
42320,
285,
417,
734,
31973,
964,
380,
17657,
23965,
84,
253,
14730,
43259,
273,
3928,
8669,
39802,
313,
6246,
39802,
2387,
285,
25808,
253,
444,
7858,
31606,
6420,
273,
253,
3523,
3243,
323,
577,
394,
14216,
3729,
1157,
835,
353,
541,
228,
4791,
36158,
432,
253,
1982,
4855,
1576,
285,
7819,
281,
253,
29979,
964,
380,
3890,
1106,
7788,
6146,
7529,
281,
253,
18526,
23419,
1157,
14270,
253,
23264,
7121,
964,
11970,
436,
2170,
1157,
253,
18855,
1282,
15814,
247,
3885,
2701,
273,
7251,
36772,
313,
12446,
10771,
1227,
288,
2387,
323,
1113,
7137,
964,
831,
310,
253,
760,
3971,
275,
253,
20653,
342,
247,
3885,
2701,
2169,
685,
7288,
36772,
313,
11289,
10771,
1227,
288,
2387,
16280,
309,
1214,
14,
33,
6879,
1157,
534,
556,
247,
3885,
2701,
273,
5571,
36772,
313,
9199,
10771,
1227,
288,
2387,
964,
380,
3890,
1106,
8223,
6613,
1475,
253,
5170,
990,
273,
11573,
6912,
372,
427,
406,
1078,
12365,
387,
37645,
7121,
964,
496,
436,
4328,
1157,
1982,
7609,
36158,
281,
253,
6146,
1157,
285,
1982,
374,
6548,
281,
271,
1842,
350,
314,
3540,
347,
247,
767,
1214,
14,
33,
18209,
3971,
1157,
14270,
253,
37645,
285,
5219,
12306,
21646,
285,
8577,
32253,
1475,
253,
1481,
273,
253,
17699,
964,
1284,
1982,
374,
25808,
11053,
25291,
3928,
1157,
352,
11999,
949,
253,
10439,
3943,
273,
253,
388,
571,
88,
36319,
3313,
16015,
964,
27922,
18733,
14656,
398,
1157,
253,
17657,
6613,
2112,
253,
16838,
273,
7967,
6912,
372,
427,
406,
964,
2732,
253,
15171,
342,
253,
11186,
43259,
273,
353,
541,
228,
26235,
1157,
1982,
374,
7819,
40835,
9968,
2439,
253,
2613,
273,
253,
18733,
33489,
285,
19413,
4726,
12517,
3928,
964,
2490,
1284,
253,
17657,
7274,
16647,
1157,
1982,
374,
6505,
253,
10439,
3943,
273,
253,
388,
571,
88,
36319,
3313,
16015,
285,
19413,
253,
9396,
21112,
2418,
16015,
964,
380,
50159,
6613,
2112,
9396,
11314,
281,
3083,
382,
2271,
1157,
14270,
253,
3083,
382,
2271,
7121,
964,
380,
18855,
1282,
7819,
40835,
17682,
443,
962,
2373,
285,
840,
7819,
6146,
1214,
14,
33,
29510,
281,
2071,
27674,
4913,
964,
380,
3114,
627,
310,
247,
3438,
20893,
3874,
1214,
14,
33,
3531,
1214,
14,
33,
17942,
387,
253,
11053,
43259,
273,
353,
541,
228,
10484,
3706,
253,
17942,
369,
3939,
432,
253,
3563,
18471,
84,
533,
13072,
407,
253,
9178,
84,
964,
4325,
2071,
27674,
4913,
1157,
1982,
374,
7819,
1955,
9268,
285,
25808,
715,
23302,
249,
317,
3928,
8935,
273,
44511,
3228,
964,
7900,
352,
23965,
84,
247,
3438,
24749,
1157,
253,
2022,
17657,
25808,
253,
18526,
23419,
581,
1390,
673,
285,
6613,
281,
253,
6420,
273,
2545,
324,
460,
281,
956,
253,
9396,
11314,
16838,
1282,
949,
6897,
34610,
1106,
964,
2732,
8136,
253,
3114,
273,
10643,
276,
71,
5464,
1157,
1982,
374,
25808,
253,
18665,
7121,
15454,
1157,
20825,
4669,
313,
5329,
278,
2387,
689,
253,
18665,
7121,
964,
380,
17657,
25808,
715,
253,
14730,
3943,
273,
253,
388,
571,
88,
36319,
3313,
16015,
2822,
7528,
87,
430,
1157,
3515,
875,
9396,
11314,
285,
7528,
87,
430,
9396,
275,
253,
1232,
964,
380,
3971,
7788,
2112,
253,
9396,
11314,
16838,
1282,
1157,
8136,
49369,
28238,
2822,
443,
2921,
8040,
285,
8577,
40835,
4745,
8935,
273,
659,
15,
25619,
584,
964,
380,
1982,
374,
25344,
7637,
387,
253,
17657,
686,
84,
7898,
502,
1189,
26342,
28961,
342,
309,
541,
228,
6879,
964,
380,
50159,
7788,
1842,
350,
314,
715,
17207,
659,
15,
25619,
584,
347,
10518,
32057,
309,
541,
228,
6879,
313,
13242,
309,
541,
228,
6879,
2387,
964,
4928,
187,
426,
426,
9541,
426,
426,
4928,
19668,
426,
426,
426,
5396,
11693,
949,
6753,
27192,
426,
426,
426,
4928,
187,
496,
1722,
520,
1157,
253,
806,
13120,
15050,
949,
752,
3395,
253,
1375,
273,
11314,
497,
253,
28169,
1157,
21646,
285,
5396,
27192,
964,
5761,
273,
841,
27192,
3560,
4243,
273,
253,
2852,
1982,
374,
964,
380,
322,
1923,
1108,
6115,
6912,
21832,
11467,
3560,
253,
9396,
11314,
16838,
1282,
24749,
273,
1982,
374,
875,
20748,
266,
10442,
285,
659,
15,
25619,
584,
964,
380,
23302,
249,
317,
21832,
4802,
659,
15,
25619,
584,
342,
322,
1923,
2951,
964,
21088,
964,
2490,
496,
253,
2363,
273,
253,
6753,
11693,
1157,
253,
13939,
326,
1996,
4447,
1982,
374,
949,
253,
20653,
497,
1677,
247,
1643,
1027,
17657,
4454,
964,
2091,
253,
3236,
3971,
1576,
875,
17826,
5308,
285,
17826,
7121,
497,
6312,
275,
3563,
27698,
1157,
253,
24120,
33489,
9753,
15904,
313,
530,
5414,
35,
2387,
4907,
253,
2170,
1639,
1189,
1373,
285,
253,
17657,
253,
1639,
1189,
1373,
21832,
964,
14772,
253,
1416,
369,
6508,
689,
253,
17657,
281,
20748,
266,
10442,
1157,
285,
281,
512,
40459,
275,
253,
2170,
275,
253,
2393,
18471,
84,
3706,
253,
1416,
369,
815,
833,
562,
407,
253,
530,
5414,
35,
4336,
275,
31687,
964,
380,
3971,
1576,
497,
671,
908,
323,
253,
40424,
21519,
5625,
21788,
1157,
4907,
323,
3438,
1982,
4007,
40424,
21519,
846,
521,
2471,
275,
29145,
964,
15699,
1157,
436,
17657,
6337,
432,
20956,
1157,
15427,
1157,
281,
20956,
1157,
22366,
1157,
407,
1039,
273,
11314,
285,
253,
9462,
14254,
273,
17367,
964,
11970,
253,
20653,
1157,
253,
11053,
7789,
3560,
253,
8993,
43211,
281,
1982,
374,
1157,
1690,
253,
2593,
949,
27741,
3928,
1157,
15558,
964,
2490,
380,
6495,
32396,
24689,
4252,
22720,
369,
4232,
275,
27062,
407,
253,
530,
5414,
35,
964,
329,
28934,
273,
253,
6495,
32396,
29572,
49871,
407,
28089,
1107,
1157,
253,
7622,
3560,
346,
247,
13765,
9455,
2112,
253,
10907,
273,
28169,
11314,
285,
21112,
285,
6115,
6912,
3346,
346,
831,
7622,
3560,
253,
4980,
1982,
374,
432,
17826,
5308,
281,
253,
353,
541,
228,
11107,
16889,
275,
3083,
382,
2271,
1157,
970,
253,
4980,
353,
541,
228,
10447,
285,
353,
541,
228,
5325,
281,
3297,
275,
11314,
964,
2652,
37426,
273,
253,
7622,
3560,
1982,
7609,
285,
353,
541,
228,
4791,
875,
33904,
285,
20748,
266,
10442,
964,
380,
7622,
369,
8927,
6034,
281,
994,
547,
5694,
1346,
281,
4446,
1475,
9396,
11314,
964,
380,
1416,
6497,
562,
273,
897,
1078,
697,
806,
19054,
984,
273,
3645,
3660,
309,
15,
2490,
2596,
9462,
6753,
11693,
369,
50088,
949,
253,
20653,
347,
973,
964,
496,
18471,
1157,
253,
4377,
686,
84,
5625,
21788,
7939,
22126,
1157,
4782,
12746,
1157,
281,
14449,
41653,
1157,
30947,
47138,
1157,
533,
627,
369,
642,
17657,
281,
4459,
352,
1475,
253,
6146,
1930,
273,
9396,
21112,
964,
18521,
1346,
574,
281,
6215,
616,
8458,
407,
9735,
875,
322,
1923,
2951,
964,
21088,
1157,
17367,
1157,
285,
27926,
6912,
390,
4901,
253,
1986,
2077,
281,
4035,
2112,
253,
6753,
11693,
964,
380,
5557,
723,
12848,
327,
253,
8115,
273,
253,
673,
1157,
533,
697,
5044,
7622,
908,
1982,
374,
949,
253,
20653,
432,
17826,
5308,
281,
322,
1923,
2951,
964,
21088,
1919,
247,
17657,
6146,
273,
9396,
21112,
369,
5485,
275,
11994,
3706,
407,
326,
673,
1157,
253,
6753,
11693,
574,
2668,
327,
253,
4480,
1214,
14,
33,
6144,
21788,
1416,
964,
4928,
187,
426,
426,
426,
2418,
18855,
1282,
426,
426,
426,
4928,
187,
380,
806,
1375,
18855,
1282,
17657,
13205,
2112,
253,
1854,
273,
253,
4980,
1982,
374,
369,
353,
541,
228,
1249,
1157,
247,
25344,
326,
369,
275,
897,
407,
4163,
337,
1157,
29145,
1157,
875,
17826,
5308,
285,
322,
1923,
2951,
964,
21088,
964,
380,
806,
3971,
2189,
5603,
275,
253,
2586,
369,
3562,
407,
30806,
418,
20100,
2822,
752,
310,
1024,
1982,
374,
2822,
17826,
7121,
275,
29145,
1108,
1384,
1157,
3738,
643,
4973,
1375,
326,
253,
806,
369,
247,
38769,
2829,
12936,
1982,
1668,
313,
8481,
7121,
14216,
2387,
275,
29063,
6420,
273,
9997,
266,
317,
964,
2091,
253,
1982,
21788,
4155,
369,
3562,
327,
4596,
1903,
1157,
33554,
1157,
1982,
374,
10571,
7932,
353,
1214,
14,
33,
1249,
964,
17842,
29509,
24618,
285,
17826,
15939,
1157,
1982,
374,
369,
50088,
949,
27741,
1157,
15558,
964,
380,
3438,
24749,
273,
353,
541,
228,
1249,
432,
29509,
24618,
281,
43509,
6836,
3395,
247,
747,
353,
541,
228,
10447,
672,
253,
3438,
353,
541,
228,
10447,
3395,
1982,
12197,
313,
1024,
1982,
21886,
2387,
964,
353,
541,
228,
1249,
432,
43509,
6836,
6420,
281,
17826,
15939,
369,
1160,
247,
629,
273,
271,
6508,
353,
541,
228,
5329,
1157,
534,
310,
1024,
353,
541,
228,
5325,
964,
2896,
253,
1735,
807,
1157,
353,
541,
228,
5693,
369,
2879,
2112,
1982,
374,
432,
1720,
28807,
281,
48855,
292,
347,
629,
273,
247,
4067,
6880,
964,
2490,
380,
806,
2544,
281,
253,
24749,
273,
1982,
374,
3139,
497,
1160,
275,
17437,
342,
247,
18210,
273,
17207,
20748,
266,
10442,
964,
329,
4067,
294,
83,
20309,
369,
6312,
275,
26916,
875,
22456,
4913,
285,
322,
1923,
2951,
964,
21088,
964,
380,
747,
24749,
3560,
23302,
249,
317,
21832,
3185,
273,
8577,
9268,
281,
330,
31679,
6169,
285,
6146,
281,
322,
1923,
2951,
964,
21088,
3706,
253,
3438,
24749,
369,
1677,
253,
353,
541,
228,
16493,
25344,
964,
8035,
1524,
5930,
275,
253,
17826,
15939,
2170,
14728,
1982,
374,
1227,
1982,
21886,
281,
247,
747,
9729,
689,
253,
9730,
297,
22593,
7121,
875,
30953,
285,
28507,
964,
46827,
17826,
5308,
369,
18210,
264,
275,
28507,
1157,
285,
253,
3438,
7622,
369,
8523,
13205,
353,
541,
228,
8255,
964,
2490,
380,
11314,
2418,
21788,
4487,
313,
353,
5648,
37,
2387,
4391,
253,
5557,
723,
285,
2216,
569,
273,
253,
40459,
1475,
11980,
84,
1157,
16647,
285,
3083,
382,
2271,
275,
253,
4260,
1214,
14,
33,
17437,
84,
964,
380,
6757,
294,
27861,
264,
1982,
374,
875,
11980,
84,
285,
353,
541,
228,
21300,
275,
16647,
1157,
8577,
253,
1711,
3971,
896,
281,
9635,
1453,
964,
380,
2593,
875,
353,
541,
228,
21300,
285,
353,
541,
228,
11140,
369,
45755,
456,
347,
271,
6880,
273,
353,
541,
228,
21300,
281,
16647,
1157,
285,
353,
541,
228,
11140,
369,
7932,
407,
247,
2007,
6880,
273,
353,
541,
228,
21300,
964,
380,
1390,
1818,
369,
281,
7622,
1982,
374,
2112,
697,
1655,
12420,
275,
253,
2170,
1157,
21006,
253,
2544,
327,
4223,
374,
1157,
27386,
964,
2490,
380,
353,
5648,
37,
3053,
5140,
275,
27386,
327,
247,
747,
3971,
326,
294,
27861,
264,
1982,
374,
715,
659,
15,
25619,
584,
323,
253,
806,
673,
964,
17842,
7528,
87,
430,
285,
50046,
1157,
1982,
374,
3786,
3560,
32354,
8669,
40835,
281,
253,
43000,
371,
18986,
251,
21832,
281,
2525,
253,
11186,
6880,
273,
1982,
4562,
715,
253,
24120,
33489,
964,
380,
747,
24749,
2335,
1982,
374,
2112,
253,
28169,
73,
410,
715,
659,
15,
25619,
584,
964,
1982,
4562,
369,
28069,
281,
253,
1375,
33111,
277,
4121,
275,
23302,
249,
1403,
3228,
285,
1982,
374,
369,
50088,
949,
659,
15,
25619,
584,
2112,
253,
3438,
1982,
4562,
281,
22456,
4913,
3706,
253,
4602,
275,
659,
15,
25619,
584,
281,
253,
1375,
33111,
277,
4121,
3395,
353,
541,
228,
17115,
964,
3840,
2544,
275,
253,
2393,
16952,
84,
48293,
253,
50159,
562,
2822,
34184,
49422,
285,
29509,
24618,
964,
2490,
14117,
1524,
525,
942,
497,
6312,
407,
253,
353,
5648,
37,
281,
2118,
1982,
374,
281,
697,
4980,
28169,
73,
410,
24749,
875,
44511,
3228,
285,
10643,
276,
71,
5464,
275,
22715,
964,
380,
747,
17657,
19624,
1955,
9268,
432,
44511,
3228,
281,
6897,
34610,
1106,
285,
840,
2112,
253,
14593,
281,
10643,
276,
71,
5464,
964,
380,
3438,
7622,
949,
2545
] |
= Scientology in Germany =
The Church of Scientology has been present in Germany since 1970. German authorities estimate that there are 4 @,@ 000 active Scientologists in Germany today ; the Church of Scientology gives a membership figure of around 12 @,@ 000. The Church of Scientology has encountered particular antagonism from the German press and government and occupies a precarious legal, social and cultural position in Germany.
German courts have so far not resolved whether Scientology should be accorded the legal status of a religious or worldview community, and different courts have reached contradictory conclusions. The German domestic intelligence service has monitored the organization's activities. The German government does not recognize Scientology as a religion. It views it as an abusive business masquerading as a religion and believes that it pursues political goals that conflict with the values enshrined in the German constitution. This stance has been criticized, most notably by the U.S. government, which recognizes Scientology as a religion and has raised concerns about the violation of individual rights posed by sect filters.
Scientologists in Germany face specific political and economic restrictions. They are barred from membership in some major political parties, and businesses and other employers use so @-@ called " sect filters " to expose a prospective business partner's or employee's association with the organization. German federal and state interior ministers started a process aimed at banning Scientology in late 2007, but abandoned the initiative a year later, finding insufficient legal grounds. Despite this, polls suggest that most Germans favor banning Scientology altogether.
= = Background = =
Scientology, founded in the early 1950s in the United States by L. Ron Hubbard and today claiming to be represented in 150 countries, has been a very controversial new religious movement. Its stated utopian aim is to " clear the planet ", to bring about an enlightened age in which every individual has overcome their psychological limitations. Scientology teaches that the source of people's unhappiness lies in " engrams ", psychological burdens acquired in the course of painful experiences, which can be cleared through a type of counselling called " auditing " made available by the Church of Scientology.
The fact that Scientologists have to pay large fees for auditing and other Scientology services has brought controversy to Scientology throughout much of its history, with governments classing it as a profit @-@ making enterprise rather than as a religion. Critics maintain that Scientology is " a business @-@ driven, psychologically manipulative, totalitarian ideology with world @-@ dominating aspirations ", and that it tricks its members into parting with significant sums of money for Scientology courses. Scientology has fought innumerable lawsuits to defend itself against such charges and to pursue legal recognition as a religion. These efforts have been partly successful – Scientology has gained recognition as a tax @-@ exempt religious group in a number of countries, most notably in Australia in 1983 and the United States in 1993, and in 2007 won an important case at the European Court of Human Rights, which censured Russia for failing to register Scientology as a religion.
The German government has said that it does not consider Scientology a religion, but a " commercial enterprise with a history of taking advantage of vulnerable individuals and an extreme dislike of any criticism " whose " totalitarian structure and methods may pose a risk to Germany's democratic society ". Accordingly, the German government has taken a very strong stance against the organization. Germany is not alone in opposing Scientology ; in France, the Church of Scientology was convicted of organized fraud in October 2009, after a court found that members had been manipulated into paying large sums for Scientology products, and the Church only narrowly escaped being banned altogether. Scientology is similarly controversial in Belgium, Greece and the UK.
On the subject of Scientology's status as a religion, the German government has pointed to a 1995 decision by the Federal Labor Court of Germany. That court, noting Hubbard's instruction that Scientologists should " make money, make more money – make other people produce so as to make more money ", came to the conclusion that " Scientology purports to be a'church'merely as a cover to pursue its economic interests ". In the same decision, the court also found that Scientology uses " inhuman and totalitarian practices ". Given the lessons of Germany's 20th @-@ century history, in which the country came to be dominated by a fascist movement that started from similarly small beginnings, Germany is very wary of any ideological movement that might appear to be seeking a position of absolute power. References in Scientology writings to the elimination of " parasites " and " antisocial " people who stand in the way of progress towards Scientology's utopian world " without insanity, without criminals and without war " evoke uncomfortable parallels with Nazism, and have led to Scientology being classified as an " extremist political movement ".
To further justify its stance, the German government has also pointed to the long history of U.S. court cases involving Scientology, including the conviction of 11 top Scientologists in 1979 and 1980 for a conspiracy involving the infiltration of U.S. government agencies, wiretapping and the theft of government documents, a 1994 U.S. Supreme Court finding that Scientology practices took place in a " coercive environment ", and Scientology's track record of pursuing its critics through malicious court cases and private investigators. In examining the potential threat posed by Scientology the German government has noted that Scientology organizations are " structured so as to make the individual psychologically and financially dependent on a Scientology system ", and that members often abandon contact with friends and family.
= = History = =
= = = Scientology presence in Germany = = =
Scientology first became active in Germany in 1970. By 2007, there were ten major centres ( " Scientology Churches " ), as well as fourteen minor centres ( " Scientology Missions " ) in Germany. The German Scientology Churches are located in the big cities – Munich, Hamburg, Berlin, Düsseldorf, Frankfurt am Main, Hanover and Stuttgart. Of the Scientology Missions, nine are in Baden @-@ Württemberg, and three in Bavaria. Following German re @-@ unification, Scientology proved unable to gain significant numbers of followers in the territories of the former German Democratic Republic ; most adherents are found in Baden @-@ Württemberg, Bavaria and North @-@ Rhine Westphalia.
Scientology is represented by a large number of independent associations or Vereine in Germany ; their umbrella organisation is the Scientology Kirche Deutschland e.V. Germany's domestic intelligence service, the Bundesamt für Verfassungsschutz ( BfV, or Federal Office for the Protection of the Constitution ), estimates that there are 4 @,@ 000 Scientologists in Germany, down from earlier estimates of 5 @,@ 000 to 6 @,@ 000. The Church of Scientology reported around 30 @,@ 000 members from the mid @-@ 1990s onwards ; this number remained stable for many years. However more recently Scientology has said it has only 12 @,@ 000 members. Discrepancies in Scientology membership numbers arise because the Church of Scientology applies more inclusive criteria in establishing its figures, essentially including anyone who has purchased a book or participated in courses, regardless of their subsequent involvement. The number of contractually bound Scientology staff members working in German Scientology organizations is unlikely to exceed a few hundred.
Scientology formulated a " Clear Germany " strategy in 1994 – similar to equivalent strategies pursued by Scientology in other countries and regions of the world – with the long @-@ term aim of transforming German society in line with the Scientological ideal : a non @-@ pluralist society in which Scientology enjoys overriding influence. The programme sought to address Scientology's image problems in Germany, to identify weak points in Germany that could be exploited for political gain, such as Germany's National Socialist history, and to increase both membership figures and political influence in German society, with a special emphasis on manoeuvring Scientologists into key positions in industry and government. As most religions seek to widen their influence in society, such a programme could of course also be defended as a missionary effort, much like those many religions engage in. However, according to the BfV, the strategy has not had any significant success. By 1998, 90 government officials had been suspected of being Scientologists and in 48 cases the suspicions were confirmed, but apart from some isolated cases, most of the officials concerned had not used their positions to advertise Scientology. According to Fifka & Sydora ( 2009 ), it is unknown to what degree the " Clear Germany " programme is still being pursued.
= = = Public opposition = = =
German public discourse does not regard Scientology as a religion, but generally characterizes it as a Sekte ( cult or sect ), or as an exploitative profit @-@ making venture preying on vulnerable minds. Public concerns about the potential dangers posed by cults date back to the early 1970s, when widespread debate took place about " youth religions " such as the Unification Church, ISKCON, Children of God, and the Divine Light Mission. The most prominent critics of these new religious movements were the " sect commissioners " ( Sektenbeauftragte ) of Germany's Protestant Churches, who also actively promoted the establishment of private " initiatives of parents and concerned persons ". Aktion Bildungsinformation ( " Educational Information Campaign " ) became an important organization dedicated to opposing Scientology ; taking an activist stance, it warned people not to get involved with Scientology, filed successful lawsuits against the Church of Scientology over its proselytizing in public places, and published an | wikitext_103 | [
426,
11615,
1497,
275,
6176,
426,
4928,
187,
380,
6412,
273,
11615,
1497,
556,
644,
1246,
275,
6176,
1580,
10333,
964,
5685,
9061,
6642,
326,
627,
403,
577,
1214,
13,
33,
20181,
3939,
11615,
11644,
275,
6176,
3063,
3706,
253,
6412,
273,
11615,
1497,
4245,
247,
14199,
4677,
273,
1475,
1249,
1214,
13,
33,
20181,
964,
380,
6412,
273,
11615,
1497,
556,
14494,
1798,
13878,
1204,
432,
253,
5685,
2315,
285,
2208,
285,
41358,
247,
3509,
37993,
4320,
1157,
2675,
285,
8928,
1899,
275,
6176,
964,
2490,
5685,
7829,
452,
594,
2080,
417,
11512,
1880,
11615,
1497,
943,
320,
48693,
253,
4320,
3708,
273,
247,
7231,
390,
1533,
1374,
3114,
1157,
285,
1027,
7829,
452,
4925,
34126,
11815,
964,
380,
5685,
9836,
9260,
2579,
556,
16387,
253,
6003,
686,
84,
4712,
964,
380,
5685,
2208,
1057,
417,
9446,
11615,
1497,
347,
247,
9596,
964,
733,
6849,
352,
347,
271,
33408,
2136,
9425,
14056,
6748,
347,
247,
9596,
285,
11532,
326,
352,
8796,
955,
3569,
7342,
326,
7344,
342,
253,
2193,
546,
34083,
967,
275,
253,
5685,
7410,
964,
831,
22567,
556,
644,
23159,
1157,
954,
19836,
407,
253,
530,
15,
52,
15,
2208,
1157,
534,
25153,
11615,
1497,
347,
247,
9596,
285,
556,
5439,
7350,
670,
253,
8411,
273,
2060,
3570,
22691,
407,
25102,
15116,
964,
2490,
11615,
11644,
275,
6176,
2454,
2173,
3569,
285,
5054,
13133,
964,
1583,
403,
22030,
432,
14199,
275,
690,
2201,
3569,
4676,
1157,
285,
9341,
285,
643,
18652,
897,
594,
1214,
14,
33,
1925,
346,
25102,
15116,
346,
281,
22065,
247,
13893,
2136,
7832,
686,
84,
390,
8183,
686,
84,
5864,
342,
253,
6003,
964,
5685,
4400,
285,
1375,
10755,
23885,
3053,
247,
1232,
11205,
387,
43916,
11615,
1497,
275,
3563,
5215,
1157,
533,
13966,
253,
15952,
247,
807,
1996,
1157,
4560,
12497,
4320,
9905,
964,
9937,
436,
1157,
22207,
1804,
326,
954,
20003,
3718,
43916,
11615,
1497,
17965,
964,
4928,
187,
426,
426,
17720,
426,
426,
4928,
187,
11615,
1497,
1157,
11420,
275,
253,
2393,
13918,
84,
275,
253,
1986,
2077,
407,
418,
15,
15657,
35826,
285,
3063,
15081,
281,
320,
6607,
275,
7783,
4343,
1157,
556,
644,
247,
1077,
15620,
747,
7231,
4866,
964,
7850,
4767,
2780,
40113,
4388,
310,
281,
346,
2590,
253,
8859,
346,
1157,
281,
3324,
670,
271,
49400,
2363,
275,
534,
1046,
2060,
556,
11399,
616,
12264,
7364,
964,
11615,
1497,
22332,
326,
253,
2603,
273,
952,
686,
84,
20209,
1212,
1632,
8696,
275,
346,
546,
5059,
346,
1157,
12264,
32274,
9288,
275,
253,
2282,
273,
16592,
8450,
1157,
534,
476,
320,
16481,
949,
247,
1511,
273,
2258,
23708,
1925,
346,
3820,
2996,
346,
1160,
2130,
407,
253,
6412,
273,
11615,
1497,
964,
2490,
380,
958,
326,
11615,
11644,
452,
281,
2075,
1781,
8128,
323,
3820,
2996,
285,
643,
11615,
1497,
3238,
556,
3982,
16305,
281,
11615,
1497,
4768,
1199,
273,
697,
2892,
1157,
342,
13001,
966,
272,
352,
347,
247,
11528,
1214,
14,
33,
2403,
16100,
2581,
685,
347,
247,
9596,
964,
22956,
982,
6558,
326,
11615,
1497,
310,
346,
247,
2136,
1214,
14,
33,
8877,
1157,
4369,
11220,
9452,
12581,
1157,
2264,
14621,
25680,
342,
1533,
1214,
14,
33,
41297,
40659,
346,
1157,
285,
326,
352,
24866,
697,
2758,
715,
629,
272,
342,
1534,
22661,
273,
2583,
323,
11615,
1497,
13519,
964,
11615,
1497,
556,
13465,
4470,
25552,
33563,
281,
2342,
3139,
1411,
824,
7260,
285,
281,
15142,
4320,
8981,
347,
247,
9596,
964,
2053,
6031,
452,
644,
13730,
5547,
1108,
11615,
1497,
556,
12103,
8981,
347,
247,
2891,
1214,
14,
33,
13959,
7231,
1387,
275,
247,
1180,
273,
4343,
1157,
954,
19836,
275,
6976,
275,
11299,
285,
253,
1986,
2077,
275,
9725,
1157,
285,
275,
5215,
1912,
271,
1774,
1083,
387,
253,
5284,
2111,
273,
8801,
12484,
1157,
534,
23339,
1520,
7422,
323,
11741,
281,
8749,
11615,
1497,
347,
247,
9596,
964,
2490,
380,
5685,
2208,
556,
753,
326,
352,
1057,
417,
1908,
11615,
1497,
247,
9596,
1157,
533,
247,
346,
6264,
16100,
342,
247,
2892,
273,
3192,
5750,
273,
14043,
4292,
285,
271,
9559,
34941,
273,
667,
14226,
346,
3692,
346,
2264,
14621,
2605,
285,
3082,
778,
16753,
247,
2495,
281,
6176,
686,
84,
18545,
5948,
346,
964,
10022,
1157,
253,
5685,
2208,
556,
2668,
247,
1077,
2266,
22567,
1411,
253,
6003,
964,
6176,
310,
417,
3815,
275,
18327,
11615,
1497,
3706,
275,
6181,
1157,
253,
6412,
273,
11615,
1497,
369,
13084,
273,
10932,
9116,
275,
4437,
4748,
1157,
846,
247,
1302,
1119,
326,
2758,
574,
644,
32494,
715,
10054,
1781,
22661,
323,
11615,
1497,
3580,
1157,
285,
253,
6412,
760,
35440,
18993,
1146,
20374,
17965,
964,
11615,
1497,
310,
12014,
15620,
275,
22785,
1157,
17785,
285,
253,
5591,
964,
2490,
1623,
253,
2256,
273,
11615,
1497,
686,
84,
3708,
347,
247,
9596,
1157,
253,
5685,
2208,
556,
8042,
281,
247,
8878,
3061,
407,
253,
7671,
9543,
2111,
273,
6176,
964,
2064,
1302,
1157,
15806,
35826,
686,
84,
9775,
326,
11615,
11644,
943,
346,
1056,
2583,
1157,
1056,
625,
2583,
1108,
1056,
643,
952,
4711,
594,
347,
281,
1056,
625,
2583,
346,
1157,
2210,
281,
253,
6452,
326,
346,
11615,
1497,
1460,
4124,
281,
320,
247,
686,
6105,
686,
7960,
347,
247,
3835,
281,
15142,
697,
5054,
6284,
346,
964,
496,
253,
1072,
3061,
1157,
253,
1302,
671,
1119,
326,
11615,
1497,
4648,
346,
275,
13961,
285,
2264,
14621,
8333,
346,
964,
10300,
253,
15880,
273,
6176,
686,
84,
1384,
394,
1214,
14,
33,
5331,
2892,
1157,
275,
534,
253,
2586,
2210,
281,
320,
14691,
407,
247,
10942,
382,
4866,
326,
3053,
432,
12014,
1355,
46325,
1157,
6176,
310,
1077,
38407,
273,
667,
31002,
4866,
326,
1537,
3176,
281,
320,
8445,
247,
1899,
273,
7880,
1612,
964,
48176,
275,
11615,
1497,
25527,
281,
253,
20408,
273,
346,
27338,
346,
285,
346,
21827,
2142,
346,
952,
665,
1462,
275,
253,
1039,
273,
4780,
4404,
11615,
1497,
686,
84,
2780,
40113,
1533,
346,
1293,
41403,
1157,
1293,
25481,
285,
1293,
2137,
346,
612,
3136,
20032,
43630,
342,
13025,
1204,
1157,
285,
452,
3977,
281,
11615,
1497,
1146,
10509,
347,
271,
346,
5320,
382,
3569,
4866,
346,
964,
2490,
1916,
2007,
15249,
697,
22567,
1157,
253,
5685,
2208,
556,
671,
8042,
281,
253,
1048,
2892,
273,
530,
15,
52,
15,
1302,
2219,
7668,
11615,
1497,
1157,
1690,
253,
9611,
273,
1903,
1755,
11615,
11644,
275,
13842,
285,
9178,
323,
247,
13445,
7668,
253,
25514,
273,
530,
15,
52,
15,
2208,
11009,
1157,
6371,
893,
2784,
285,
253,
19610,
273,
2208,
7177,
1157,
247,
9354,
530,
15,
52,
15,
6413,
2111,
4560,
326,
11615,
1497,
8333,
2335,
1659,
275,
247,
346,
29323,
422,
3126,
346,
1157,
285,
11615,
1497,
686,
84,
3540,
1924,
273,
23453,
697,
17139,
949,
24764,
1302,
2219,
285,
3055,
17085,
964,
496,
17565,
253,
2442,
4322,
22691,
407,
11615,
1497,
253,
5685,
2208,
556,
4879,
326,
11615,
1497,
8889,
403,
346,
18872,
594,
347,
281,
1056,
253,
2060,
4369,
11220,
285,
27576,
7976,
327,
247,
11615,
1497,
985,
346,
1157,
285,
326,
2758,
2223,
9488,
3057,
342,
3858,
285,
2021,
964,
4928,
187,
426,
426,
9541,
426,
426,
4928,
19668,
426,
426,
426,
11615,
1497,
3361,
275,
6176,
426,
426,
426,
4928,
187,
11615,
1497,
806,
3395,
3939,
275,
6176,
275,
10333,
964,
2896,
5215,
1157,
627,
497,
3578,
2201,
23221,
313,
346,
11615,
1497,
775,
16089,
346,
2387,
1157,
347,
973,
347,
25963,
5884,
23221,
313,
346,
11615,
1497,
5767,
621,
346,
2387,
275,
6176,
964,
380,
5685,
11615,
1497,
775,
16089,
403,
4441,
275,
253,
1943,
8238,
1108,
32000,
1157,
38343,
1157,
12911,
1157,
399,
33880,
10391,
34760,
1157,
42471,
717,
11505,
1157,
13594,
1189,
285,
659,
13077,
23946,
964,
4683,
253,
11615,
1497,
5767,
621,
1157,
7457,
403,
275,
378,
12670,
1214,
14,
33,
411,
3090,
1378,
85,
2037,
72,
1157,
285,
1264,
275,
43447,
8125,
964,
11977,
5685,
294,
1214,
14,
33,
440,
1877,
1157,
11615,
1497,
8058,
7591,
281,
6351,
1534,
3904,
273,
18409,
275,
253,
26949,
273,
253,
3438,
5685,
9922,
4687,
3706,
954,
40457,
84,
403,
1119,
275,
378,
12670,
1214,
14,
33,
411,
3090,
1378,
85,
2037,
72,
1157,
43447,
8125,
285,
3729,
1214,
14,
33,
11537,
460,
4255,
13203,
571,
964,
2490,
11615,
1497,
310,
6607,
407,
247,
1781,
1180,
273,
3907,
12485,
390,
657,
11892,
460,
275,
6176,
3706,
616,
33265,
19156,
310,
253,
11615,
1497,
611,
1426,
248,
42141,
1373,
299,
15,
55,
15,
6176,
686,
84,
9836,
9260,
2579,
1157,
253,
42442,
312,
85,
13417,
7188,
71,
515,
1947,
859,
348,
25374,
313,
378,
71,
55,
1157,
390,
7671,
7454,
323,
253,
17504,
273,
253,
10350,
2387,
1157,
8197,
326,
627,
403,
577,
1214,
13,
33,
20181,
11615,
11644,
275,
6176,
1157,
1066,
432,
4321,
8197,
273,
608,
1214,
13,
33,
20181,
281,
721,
1214,
13,
33,
20181,
964,
380,
6412,
273,
11615,
1497,
2361,
1475,
1884,
1214,
13,
33,
20181,
2758,
432,
253,
4260,
1214,
14,
33,
7901,
84,
39210,
3706,
436,
1180,
6376,
6474,
323,
1142,
1107,
964,
1723,
625,
4102,
11615,
1497,
556,
753,
352,
556,
760,
1249,
1214,
13,
33,
20181,
2758,
964,
5201,
719,
81,
14013,
275,
11615,
1497,
14199,
3904,
12893,
984,
253,
6412,
273,
11615,
1497,
10384,
625,
25495,
6866,
275,
14631,
697,
8442,
1157,
9093,
1690,
3780,
665,
556,
9716,
247,
1984,
390,
13640,
275,
13519,
1157,
10159,
273,
616,
6774,
10171,
964,
380,
1180,
273,
3310,
1230,
3033,
11615,
1497,
4750,
2758,
2444,
275,
5685,
11615,
1497,
8889,
310,
11543,
281,
8268,
247,
1643,
4289,
964,
2490,
11615,
1497,
26115,
247,
346,
24415,
6176,
346,
5700,
275,
9354,
1108,
2074,
281,
6425,
8130,
23321,
407,
11615,
1497,
275,
643,
4343,
285,
4811,
273,
253,
1533,
1108,
342,
253,
1048,
1214,
14,
33,
1307,
4388,
273,
27197,
5685,
5948,
275,
1386,
342,
253,
11615,
1975,
7445,
1163,
247,
1327,
1214,
14,
33,
25540,
382,
5948,
275,
534,
11615,
1497,
29566,
49776,
4833,
964,
380,
13521,
7799,
281,
2953,
11615,
1497,
686,
84,
2460,
3237,
275,
6176,
1157,
281,
4271,
5075,
2792,
275,
6176,
326,
812,
320,
28734,
323,
3569,
6351,
1157,
824,
347,
6176,
686,
84,
3313,
36781,
2892,
1157,
285,
281,
2572,
1097,
14199,
8442,
285,
3569,
4833,
275,
5685,
5948,
1157,
342,
247,
2714,
15075,
327,
637,
3703,
8962,
804,
11615,
11644,
715,
2234,
6887,
275,
4491,
285,
2208,
964,
1284,
954,
31194,
7703,
281,
5261,
257,
616,
4833,
275,
5948,
1157,
824,
247,
13521,
812,
273,
2282,
671,
320,
25860,
347,
247,
42938,
3434,
1157,
1199,
751,
1110,
1142,
31194,
11377,
275,
964,
1723,
1157,
2556,
281,
253,
378,
71,
55,
1157,
253,
5700,
556,
417,
574,
667,
1534,
2323,
964,
2896,
8065,
1157,
5091,
2208,
6338,
574,
644,
13282,
273,
1146,
11615,
11644,
285,
275,
5693,
2219,
253,
44873,
497,
5783,
1157,
533,
7419,
432,
690,
7011,
2219,
1157,
954,
273,
253,
6338,
7514,
574,
417,
908,
616,
6887,
281,
46459,
11615,
1497,
964,
4794,
281,
12979,
4530,
708,
16739,
6464,
313,
4748,
2387,
1157,
352,
310,
7202,
281,
752,
4248,
253,
346,
24415,
6176,
346,
13521,
310,
1335,
1146,
23321,
964,
4928,
187,
426,
426,
426,
5259,
10266,
426,
426,
426,
4928,
187,
5685,
1345,
25200,
1057,
417,
2743,
11615,
1497,
347,
247,
9596,
1157,
533,
3839,
45589,
352,
347,
247,
1023,
47520,
313,
2453,
390,
25102,
2387,
1157,
390,
347,
271,
10220,
6716,
11528,
1214,
14,
33,
2403,
18875,
638,
3184,
327,
14043,
13846,
964,
5259,
7350,
670,
253,
2442,
25926,
22691,
407,
2453,
84,
3522,
896,
281,
253,
2393,
10333,
84,
1157,
672,
14414,
8881,
2335,
1659,
670,
346,
8920,
31194,
346,
824,
347,
253,
914,
1877,
6412,
1157,
4110,
44,
5707,
1157,
12757,
273,
2656,
1157,
285,
253,
35502,
10315,
22368,
964,
380,
954,
11906,
17139,
273,
841,
747,
7231,
11438,
497,
253,
346,
25102,
45504,
346,
313,
1023,
76,
1866,
1257,
1952,
649,
22194,
442,
2387,
273,
6176,
686,
84,
31573,
775,
16089,
1157,
665,
671,
15257,
15127,
253,
13701,
273,
3055,
346,
21823,
273,
4651,
285,
7514,
7732,
346,
964,
28945,
279,
378,
786,
1947,
7432,
1248,
313,
346,
42079,
8339,
27069,
346,
2387,
3395,
271,
1774,
6003,
9940,
281,
18327,
11615,
1497,
3706,
3192,
271,
22531,
22567,
1157,
352,
14315,
952,
417,
281,
755,
3206,
342,
11615,
1497,
1157,
4724,
5547,
33563,
1411,
253,
6412,
273,
11615,
1497,
689,
697,
5847,
600,
85,
3006,
275,
1345,
5053,
1157,
285,
3863,
271
] |
= Homarus gammarus =
Homarus gammarus, known as the European lobster or common lobster, is a species of clawed lobster from the eastern Atlantic Ocean, Mediterranean Sea and parts of the Black Sea. It is closely related to the American lobster, H. americanus. It may grow to a length of 60 cm ( 24 in ) and a mass of 6 kilograms ( 13 lb ), and bears a conspicuous pair of claws. In life, the lobsters are blue, only becoming " lobster red " on cooking. Mating occurs in the summer, producing eggs which are carried by the females for up to a year before hatching into planktonic larvae. Homarus gammarus is a highly esteemed food, and is widely caught using lobster pots, mostly around the British Isles.
= = Description = =
Homarus gammarus is a large crustacean, with a body length up to 60 centimetres ( 24 in ) and weighing up to 5 – 6 kilograms ( 11 – 13 lb ), although the lobsters caught in lobster pots are usually 23 – 38 cm ( 9 – 15 in ) long and weigh 0 @.@ 7 – 2 @.@ 2 kg ( 1 @.@ 5 – 4 @.@ 9 lb ). Like other crustaceans, lobsters have a hard exoskeleton which they must shed in order to grow, in a process called ecdysis ( moulting ). This may occur several times a year for young lobsters, but decreases to once every 1 – 2 years for larger animals.
The first pair of pereiopods is armed with a large, asymmetrical pair of claws. The larger one is the " crusher ", and has rounded nodules used for crushing prey ; the other is the " cutter ", which has sharp inner edges, and is used for holding or tearing the prey. Usually, the left claw is the crusher, and the right is the cutter.
The exoskeleton is generally blue above, with spots that coalesce, and yellow below. The red colour associated with lobsters only appears after cooking. This occurs because, in life, the red pigment astaxanthin is bound to a protein complex, but the complex is broken up by the heat of cooking, releasing the red pigment.
The closest relative of H. gammarus is the American lobster, Homarus americanus. The two species are very similar, and can be crossed artificially, although hybrids are unlikely to occur in the wild since their ranges do not overlap. The two species can be distinguished by a number of characteristics :
The rostrum of H. americanus bears one or more spines on the underside, which are lacking in H. gammarus.
The spines on the claws of H. americanus are red or red @-@ tipped, while those of H. gammarus are white or white @-@ tipped.
The underside of the claw of H. americanus is orange or red, while that of H. gammarus is creamy white or very pale red.
= = Life cycle = =
Female H. gammarus reach sexual maturity when they have grown to a carapace length of 80 – 85 millimetres ( 3 @.@ 1 – 3 @.@ 3 in ), whereas males mature at a slightly smaller size. Mating typically occurs in summer between a recently moulted female, whose shell is therefore soft, and a hard @-@ shelled male. The female carries the eggs for up to 12 months, depending on the temperature, attached to her pleopods. Females carrying eggs are said to be " berried " and can be found throughout the year.
The eggs hatch at night, and the larvae swim to the water surface where they drift with the ocean currents, preying on zooplankton. This stage involves three moults and lasts for 15 – 35 days. After the third moult, the juvenile takes on a form closer to the adult, and adopts a benthic lifestyle. The juveniles are rarely seen in the wild, and are poorly known, although they are known to be capable of digging extensive burrows. It is estimated that only 1 larva in every 20 @,@ 000 survives to the benthic phase. When they reach a carapace length of 15 mm ( 0 @.@ 59 in ), the juveniles leave their burrows and start their adult lives.
= = Distribution = =
Homarus gammarus is found across the north @-@ eastern Atlantic Ocean from northern Norway to the Azores and Morocco, not including the Baltic Sea. It is also present in most of the Mediterranean Sea, only missing from the section east of Crete, and along only the north @-@ west coast of the Black Sea. The northernmost populations are found in the Norwegian fjords Tysfjorden and Nordfolda, inside the Arctic Circle.
The species can be divided into four genetically distinct populations, one widespread population, and three which have diverged due to small effective population sizes, possibly due to adaptation to the local environment. The first of these is the population of lobsters from northern Norway, which have been referred to as the " midnight @-@ sun lobster ". The populations in the Mediterranean Sea are distinct from those in the Atlantic Ocean. The last distinct population is found in the Netherlands : samples from the Oosterschelde were distinct from those collected in the North Sea or English Channel.
Attempts have been made to introduce H. gammarus to New Zealand, alongside other European species such as the edible crab, Cancer pagurus. Between 1904 and 1914, one million lobster larvae were released from hatcheries in Dunedin, but the species did not become established there.
= = Ecology = =
Adult H. gammarus live on the continental shelf at depths of 0 – 150 metres ( 0 – 492 ft ), although not normally deeper than 50 m ( 160 ft ). They prefer hard substrates, such as rocks or hard mud, and live in holes or crevices, emerging at night to feed.
The diet of H. gammarus mostly consists of other benthic invertebrates. These include crabs, molluscs, sea urchins, starfish and polychaete worms.
The three clawed lobster species Homarus gammarus, H. americanus and Nephrops norvegicus are hosts to the three known species of the animal phylum Cycliophora ; the species on H. gammarus has not been described.
Homarus gammarus is susceptible to the disease gaffkaemia, caused by the bacterium Aerococcus viridans. Although it is frequently found in American lobsters, the disease has only been seen in captive H. gammarus, where prior occupation of the tanks by H. americanus could not be ruled out.
= = Human consumption = =
Homarus gammarus is traditionally " highly esteemed " as a foodstuff and was mentioned in " The Crabfish " a seventeenth century English folk song. It may fetch very high prices and may be sold fresh, frozen, canned or powdered. Both the claws and the abdomen of H. gammarus contain " excellent " white meat, and most of the contents of the cephalothorax are edible. The exceptions are the gastric mill and the " sand vein " ( gut ). The price of H. gammarus is up to three times higher than that of H. americanus, and the European species is considered to have a better flavour.
Lobsters are mostly fished using lobster pots, although lines baited with octopus or cuttlefish sometimes succeed in tempting them out, to allow them to be caught in a net or by hand. In 2008, 4 @,@ 386 t of H. gammarus were caught across Europe and North Africa, of which 3 @,@ 462 t ( 79 % ) was caught in the British Isles ( including the Channel Islands ). The minimum landing size for H. gammarus is a carapace length of 87 mm ( 3 @.@ 4 in ).
Aquaculture systems for H. gammarus are under development, and production rates are still very low.
= = Taxonomic history = =
Homarus gammarus was first given a binomial name by Carl Linnaeus in the tenth edition of his Systema Naturae, published in 1758. That name was Cancer gammarus, since Linnaeus'concept of the genus Cancer at that time included all large crustaceans.
H. gammarus is the type species of the genus Homarus Weber, 1795, as determined by Direction 51 of the International Commission on Zoological Nomenclature. Prior to that direction, confusion arose because the species had been referred to by several different names, including Astacus marinus Fabricius, 1775 and Homarus vulgaris H. Milne @-@ Edwards, 1837, and also because Friedrich Weber's description of the genus had been overlooked until rediscovered by Mary Rathbun, rendering any prior assignments of type species ( for Homarus H. Milne @-@ Edwards, 1837 ) invalid for Homarus Weber, 1795.
The type specimen of Homarus gammarus was a lectotype selected by Lipke Holthuis in 1974. It came from 57 ° 53 ′ N 11 ° 32 ′ E, near Marstrand, Sweden ( 48 kilometres or 30 miles northwest of Gothenburg ), but both it and the paralectotypes have since been lost.
The common name for H. gammarus preferred by the Food and Agriculture Organization is " | wikitext_103 | [
2490,
426,
15388,
33858,
305,
21089,
316,
426,
4928,
187,
15388,
33858,
305,
21089,
316,
1157,
1929,
347,
253,
5284,
11037,
2971,
390,
1846,
11037,
2971,
1157,
310,
247,
3417,
273,
502,
36221,
11037,
2971,
432,
253,
14730,
14847,
17323,
1157,
21609,
11936,
285,
4243,
273,
253,
5418,
11936,
964,
733,
310,
8244,
2905,
281,
253,
2448,
11037,
2971,
1157,
388,
15,
41290,
38628,
964,
733,
778,
1756,
281,
247,
2978,
273,
3925,
7892,
313,
2164,
275,
2387,
285,
247,
2280,
273,
721,
44068,
313,
2145,
32830,
2387,
1157,
285,
17267,
247,
43988,
4667,
273,
43390,
964,
496,
1495,
1157,
253,
11037,
13297,
403,
4797,
1157,
760,
7552,
346,
11037,
2971,
2502,
346,
327,
12398,
964,
353,
839,
6634,
275,
253,
5768,
1157,
9603,
11624,
534,
403,
4824,
407,
253,
10753,
323,
598,
281,
247,
807,
1078,
288,
16464,
715,
499,
41484,
280,
23844,
964,
15388,
33858,
305,
21089,
316,
310,
247,
4122,
12368,
11574,
2739,
1157,
285,
310,
7561,
7270,
970,
11037,
2971,
36612,
1157,
6571,
1475,
253,
4782,
1680,
868,
964,
4928,
187,
426,
426,
11451,
426,
426,
4928,
187,
15388,
33858,
305,
21089,
316,
310,
247,
1781,
23396,
584,
266,
1157,
342,
247,
2133,
2978,
598,
281,
3925,
1399,
33256,
373,
313,
2164,
275,
2387,
285,
27466,
598,
281,
608,
1108,
721,
44068,
313,
1903,
1108,
2145,
32830,
2387,
1157,
3738,
253,
11037,
13297,
7270,
275,
11037,
2971,
36612,
403,
3798,
3495,
1108,
6480,
7892,
313,
898,
1108,
1458,
275,
2387,
1048,
285,
14357,
470,
1214,
15,
33,
818,
1108,
374,
1214,
15,
33,
374,
15841,
313,
337,
1214,
15,
33,
608,
1108,
577,
1214,
15,
33,
898,
32830,
2387,
964,
6975,
643,
23396,
584,
507,
1157,
11037,
13297,
452,
247,
1892,
385,
375,
30166,
534,
597,
1364,
17914,
275,
1340,
281,
1756,
1157,
275,
247,
1232,
1925,
299,
2428,
1493,
313,
278,
3941,
1076,
2387,
964,
831,
778,
2826,
2067,
2069,
247,
807,
323,
2872,
11037,
13297,
1157,
533,
12075,
281,
2378,
1046,
337,
1108,
374,
1107,
323,
4067,
5074,
964,
2490,
380,
806,
4667,
273,
759,
250,
17591,
24322,
310,
12360,
342,
247,
1781,
1157,
40736,
5526,
4667,
273,
43390,
964,
380,
4067,
581,
310,
253,
346,
37440,
379,
346,
1157,
285,
556,
9971,
37154,
908,
323,
37625,
21794,
3706,
253,
643,
310,
253,
346,
40588,
346,
1157,
534,
556,
9479,
6703,
9297,
1157,
285,
310,
908,
323,
5877,
390,
35765,
253,
21794,
964,
25683,
1157,
253,
1669,
44758,
310,
253,
37440,
379,
1157,
285,
253,
987,
310,
253,
40588,
964,
2490,
380,
385,
375,
30166,
310,
3839,
4797,
1840,
1157,
342,
13977,
326,
40405,
336,
1157,
285,
8862,
2708,
964,
380,
2502,
10688,
2330,
342,
11037,
13297,
760,
4620,
846,
12398,
964,
831,
6634,
984,
1157,
275,
1495,
1157,
253,
2502,
30448,
7846,
991,
14718,
249,
310,
3033,
281,
247,
2601,
2570,
1157,
533,
253,
2570,
310,
7154,
598,
407,
253,
4250,
273,
12398,
1157,
20437,
253,
2502,
30448,
964,
2490,
380,
8642,
4103,
273,
388,
15,
305,
21089,
316,
310,
253,
2448,
11037,
2971,
1157,
15388,
33858,
41290,
38628,
964,
380,
767,
3417,
403,
1077,
2074,
1157,
285,
476,
320,
13405,
41544,
1157,
3738,
40425,
403,
11543,
281,
2826,
275,
253,
4956,
1580,
616,
13794,
513,
417,
14787,
964,
380,
767,
3417,
476,
320,
15622,
407,
247,
1180,
273,
5319,
1163,
2490,
380,
687,
1344,
360,
273,
388,
15,
41290,
38628,
17267,
581,
390,
625,
49898,
327,
253,
17433,
504,
1157,
534,
403,
14999,
275,
388,
15,
305,
21089,
316,
964,
2490,
380,
49898,
327,
253,
43390,
273,
388,
15,
41290,
38628,
403,
2502,
390,
2502,
1214,
14,
33,
40414,
1157,
1223,
1110,
273,
388,
15,
305,
21089,
316,
403,
3168,
390,
3168,
1214,
14,
33,
40414,
964,
2490,
380,
17433,
504,
273,
253,
44758,
273,
388,
15,
41290,
38628,
310,
13735,
390,
2502,
1157,
1223,
326,
273,
388,
15,
305,
21089,
316,
310,
40180,
3168,
390,
1077,
14530,
2502,
964,
4928,
187,
426,
426,
7813,
5880,
426,
426,
4928,
187,
26993,
388,
15,
305,
21089,
316,
3986,
5615,
29791,
672,
597,
452,
8228,
281,
247,
1113,
522,
584,
2978,
273,
5096,
1108,
9330,
5499,
33256,
373,
313,
495,
1214,
15,
33,
337,
1108,
495,
1214,
15,
33,
495,
275,
2387,
1157,
5727,
10798,
14242,
387,
247,
5777,
4577,
1979,
964,
353,
839,
5431,
6634,
275,
5768,
875,
247,
4102,
278,
3941,
8659,
5343,
1157,
3692,
8135,
310,
3103,
2602,
1157,
285,
247,
1892,
1214,
14,
33,
8135,
264,
5086,
964,
380,
5343,
15814,
253,
11624,
323,
598,
281,
1249,
2607,
1157,
7293,
327,
253,
3276,
1157,
7660,
281,
617,
2318,
412,
24322,
964,
43299,
2339,
8785,
11624,
403,
753,
281,
320,
346,
17099,
2200,
346,
285,
476,
320,
1119,
4768,
253,
807,
964,
2490,
380,
11624,
32732,
387,
2360,
1157,
285,
253,
23844,
10831,
281,
253,
1824,
2553,
835,
597,
16924,
342,
253,
12927,
18476,
1157,
638,
3184,
327,
24615,
4488,
41484,
964,
831,
3924,
8687,
1264,
278,
3941,
1641,
285,
34756,
323,
1458,
1108,
4791,
1897,
964,
2732,
253,
2626,
278,
3941,
85,
1157,
253,
20962,
3936,
327,
247,
830,
8003,
281,
253,
6782,
1157,
285,
47932,
247,
270,
7385,
280,
14898,
964,
380,
7166,
1261,
3205,
403,
11766,
2326,
275,
253,
4956,
1157,
285,
403,
15225,
1929,
1157,
3738,
597,
403,
1929,
281,
320,
7032,
273,
28063,
9470,
3600,
8111,
964,
733,
310,
5998,
326,
760,
337,
1236,
6156,
275,
1046,
1384,
1214,
13,
33,
20181,
46046,
281,
253,
270,
7385,
280,
3408,
964,
2091,
597,
3986,
247,
1113,
522,
584,
2978,
273,
1458,
5823,
313,
470,
1214,
15,
33,
8978,
275,
2387,
1157,
253,
7166,
1261,
3205,
3553,
616,
3600,
8111,
285,
1265,
616,
6782,
4852,
964,
4928,
187,
426,
426,
30313,
426,
426,
4928,
187,
15388,
33858,
305,
21089,
316,
310,
1119,
2439,
253,
6146,
1214,
14,
33,
14730,
14847,
17323,
432,
11186,
20341,
281,
253,
13063,
2324,
285,
40983,
1157,
417,
1690,
253,
48477,
11936,
964,
733,
310,
671,
1246,
275,
954,
273,
253,
21609,
11936,
1157,
760,
5816,
432,
253,
2593,
9268,
273,
13501,
442,
1157,
285,
2112,
760,
253,
6146,
1214,
14,
33,
8935,
8852,
273,
253,
5418,
11936,
964,
380,
11186,
2252,
7625,
403,
1119,
275,
253,
25771,
269,
75,
6565,
308,
656,
71,
75,
38605,
285,
23060,
8089,
66,
1157,
3304,
253,
27693,
29572,
964,
2490,
380,
3417,
476,
320,
4272,
715,
1740,
24663,
5799,
7625,
1157,
581,
14414,
3072,
1157,
285,
1264,
534,
452,
11711,
2400,
1955,
281,
1355,
3576,
3072,
9552,
1157,
6830,
1955,
281,
15644,
281,
253,
1980,
3126,
964,
380,
806,
273,
841,
310,
253,
3072,
273,
11037,
13297,
432,
11186,
20341,
1157,
534,
452,
644,
6289,
281,
347,
253,
346,
21811,
1214,
14,
33,
5101,
11037,
2971,
346,
964,
380,
7625,
275,
253,
21609,
11936,
403,
5799,
432,
1110,
275,
253,
14847,
17323,
964,
380,
1390,
5799,
3072,
310,
1119,
275,
253,
16333,
1163,
3530,
432,
253,
473,
493,
398,
1962,
392,
70,
497,
5799,
432,
1110,
5728,
275,
253,
3729,
11936,
390,
4383,
16824,
964,
2490,
42478,
84,
452,
644,
1160,
281,
9569,
388,
15,
305,
21089,
316,
281,
1457,
12123,
1157,
12936,
643,
5284,
3417,
824,
347,
253,
46281,
40501,
1157,
13877,
24949,
40756,
964,
17842,
40253,
285,
26478,
1157,
581,
3041,
11037,
2971,
23844,
497,
4439,
432,
7856,
1962,
2246,
275,
12221,
36777,
1157,
533,
253,
3417,
858,
417,
2489,
4232,
627,
964,
4928,
187,
426,
426,
24253,
1497,
426,
426,
4928,
187,
32967,
388,
15,
305,
21089,
316,
3153,
327,
253,
39222,
22826,
387,
24484,
273,
470,
1108,
7783,
26156,
313,
470,
1108,
45223,
23899,
2387,
1157,
3738,
417,
9403,
12861,
685,
2456,
278,
313,
12036,
23899,
2387,
964,
1583,
4510,
1892,
16007,
1157,
824,
347,
16419,
390,
1892,
16059,
1157,
285,
3153,
275,
11385,
390,
1424,
87,
1271,
1157,
14149,
387,
2360,
281,
3997,
964,
2490,
380,
6196,
273,
388,
15,
305,
21089,
316,
6571,
8414,
273,
643,
270,
7385,
280,
275,
31861,
36613,
964,
2053,
2486,
1531,
5375,
1157,
48315,
316,
6113,
1157,
6150,
2936,
348,
968,
1157,
4177,
12306,
285,
877,
3155,
66,
16606,
35231,
964,
2490,
380,
1264,
502,
36221,
11037,
2971,
3417,
15388,
33858,
305,
21089,
316,
1157,
388,
15,
41290,
38628,
285,
3532,
545,
33840,
4543,
306,
72,
23301,
403,
14516,
281,
253,
1264,
1929,
3417,
273,
253,
5893,
15583,
360,
25053,
17591,
24643,
3706,
253,
3417,
327,
388,
15,
305,
21089,
316,
556,
417,
644,
2529,
964,
2490,
15388,
33858,
305,
21089,
316,
310,
16931,
281,
253,
2728,
305,
2843,
4530,
9512,
1157,
4269,
407,
253,
42207,
37785,
20332,
2432,
301,
507,
964,
4129,
352,
310,
7208,
1119,
275,
2448,
11037,
13297,
1157,
253,
2728,
556,
760,
644,
2326,
275,
37435,
388,
15,
305,
21089,
316,
1157,
835,
2720,
17238,
273,
253,
20470,
407,
388,
15,
41290,
38628,
812,
417,
320,
12969,
562,
964,
4928,
187,
426,
426,
8801,
8353,
426,
426,
4928,
187,
15388,
33858,
305,
21089,
316,
310,
21533,
346,
4122,
12368,
11574,
346,
347,
247,
2739,
41695,
285,
369,
5393,
275,
346,
380,
7306,
357,
12306,
346,
247,
49747,
5331,
4383,
19365,
4498,
964,
733,
778,
20279,
1077,
1029,
7911,
285,
778,
320,
4211,
5352,
1157,
13831,
1157,
45364,
390,
43462,
964,
6295,
253,
43390,
285,
253,
30781,
273,
388,
15,
305,
21089,
316,
3831,
346,
7126,
346,
3168,
9132,
1157,
285,
954,
273,
253,
9410,
273,
253,
48814,
837,
263,
991,
403,
46281,
964,
380,
16022,
403,
253,
16418,
5499,
285,
253,
346,
7537,
17716,
346,
313,
11479,
2387,
964,
380,
4376,
273,
388,
15,
305,
21089,
316,
310,
598,
281,
1264,
2069,
2169,
685,
326,
273,
388,
15,
41290,
38628,
1157,
285,
253,
5284,
3417,
310,
2783,
281,
452,
247,
1805,
34149,
964,
2490,
418,
706,
13297,
403,
6571,
269,
1428,
970,
11037,
2971,
36612,
1157,
3738,
3104,
18927,
959,
342,
17109,
30504,
390,
2624,
22924,
12306,
4536,
9302,
275,
39189,
731,
562,
1157,
281,
1581,
731,
281,
320,
7270,
275,
247,
2036,
390,
407,
1133,
964,
496,
4695,
1157,
577,
1214,
13,
33,
35312,
246,
273,
388,
15,
305,
21089,
316,
497,
7270,
2439,
3060,
285,
3729,
7531,
1157,
273,
534,
495,
1214,
13,
33,
41517,
246,
313,
11275,
2462,
2387,
369,
7270,
275,
253,
4782,
1680,
868,
313,
1690,
253,
16824,
18708,
2387,
964,
380,
5927,
15165,
1979,
323,
388,
15,
305,
21089,
316,
310,
247,
1113,
522,
584,
2978,
273,
11422,
5823,
313,
495,
1214,
15,
33,
577,
275,
2387,
964,
2490,
23231,
317,
7546,
2718,
323,
388,
15,
305,
21089,
316,
403,
762,
2440,
1157,
285,
3275,
4142,
403,
1335,
1077,
1698,
964,
4928,
187,
426,
426,
13662,
22255,
2892,
426,
426,
4928,
187,
15388,
33858,
305,
21089,
316,
369,
806,
1677,
247,
47585,
1416,
407,
11197,
18077,
48918,
316,
275,
253,
28081,
11166,
273,
521,
4155,
66,
427,
4953,
3348,
1157,
3863,
275,
1722,
3680,
964,
2064,
1416,
369,
13877,
305,
21089,
316,
1157,
1580,
18077,
48918,
316,
686,
4473,
273,
253,
15443,
13877,
387,
326,
673,
2908,
512,
1781,
23396,
584,
507,
964,
2490,
388,
15,
305,
21089,
316,
310,
253,
1511,
3417,
273,
253,
15443,
15388,
33858,
37247,
1157,
1722,
2222,
1157,
347,
3413,
407,
399,
11798,
8319,
273,
253,
5625,
5399,
327,
37759,
1975,
427,
50125,
964,
13036,
281,
326,
3884,
1157,
13775,
20944,
984,
253,
3417,
574,
644,
6289,
281,
407,
2067,
1027,
4454,
1157,
1690,
15123,
317,
316,
2304,
30264,
17287,
695,
3750,
1157,
1722,
1976,
285,
15388,
33858,
36015,
261,
388,
15,
6939,
570,
1214,
14,
33,
24006,
1157,
1283,
1787,
1157,
285,
671,
984,
37511,
37247,
686,
84,
5740,
273,
253,
15443,
574,
644,
28849,
1919,
2502,
2865,
3111,
407,
6393,
416,
506,
67,
328,
1157,
18164,
667,
2720,
23768,
273,
1511,
3417,
313,
323,
15388,
33858,
388,
15,
6939,
570,
1214,
14,
33,
24006,
1157,
1283,
1787,
2387,
12078,
323,
15388,
33858,
37247,
1157,
1722,
2222,
964,
2490,
380,
1511,
20204,
273,
15388,
33858,
305,
21089,
316,
369,
247,
11873,
5174,
4236,
407,
22609,
413,
4716,
394,
25338,
275,
15788,
964,
733,
2210,
432,
8988,
11758,
8676,
541,
112,
427,
1903,
11758,
4567,
541,
112,
444,
1157,
2822,
2398,
35559,
1157,
16842,
313,
5693,
39050,
390,
1884,
6574,
29979,
273,
21979,
864,
6121,
2387,
1157,
533,
1097,
352,
285,
253,
37909,
646,
9117,
452,
1580,
644,
3663,
964,
2490,
380,
1846,
1416,
323,
388,
15,
305,
21089,
316,
9013,
407,
253,
11431,
285,
28079,
17273,
310,
346
] |
= Slammiversary ( 2008 ) =
Slammiversary ( 2008 ) was a professional wrestling pay @-@ per @-@ view ( PPV ) event produced by the Total Nonstop Action Wrestling ( TNA ) promotion that took place on June 8, 2008 at the DeSoto Civic Center in Southaven, Mississippi. It was the fourth event under the Slammiversary name and the sixth event in the 2008 TNA PPV schedule. Seven professional wrestling matches and one dark match were featured on the event's card, three of which were for championships. The event commemorated TNA's six year anniversary.
The main event was a King of the Mountain match for the TNA World Heavyweight Championship, in which then @-@ champion Samoa Joe defended against Booker T, Christian Cage, Rhino, and Robert Roode. Joe won the match to retain the title. The card also featured a bout pitting A.J. Styles against Kurt Angle, which Styles won. The TNA World Tag Team Championship was defended by The Latin American Xchange ( Hernandez and Homicide ; LAX ) against Team 3D ( Brother Devon and Brother Ray ) at the event. LAX was the victors in the contest to retain the championship. A Six Woman Tag Team match was won by the team of Gail Kim, ODB, and Roxxi over The Beautiful People ( Angelina Love and Velvet Sky ) and Moose on the undercard.
Slammiversary is remembered for Joe being the first to retain a championship in a King of the Mountain match. The reported figure of purchasers for the event was 20 @,@ 000, as reported by The Wrestling Observer Newsletter. Slammiversary had an attendance of 2 @,@ 000 people. Jon Waldman of the professional wrestling section of the Canadian Online Explorer rated the show a 7 out of 10, which was lower than the 8 out of 10 given to the 2007 edition by Jason Clevett. After the event, an accident occurred which resulted in the death of one man and the injury of another.
= = Production = =
= = = Background = = =
The fourth installment in the Slammiversary name was announced in January 2008 to take place on June 8. In March 2008, it was reported that Slammiversary would be held outside the TNA Impact! Zone in Orlando, Florida. In late @-@ March 2008, Slammiversary was expected to be held in Tennessee. TNA issued a press release in April 2008 advertising Slammiversary on June 8 at the DeSoto Civic Center in Southaven, Mississippi, although TNA promoted the event as being held in the Memphis area. It also announced that the annual King of the Mountain match would be held at the event. Tickets for Slammiverary went on sale on April 25. Slammiversary celebrates TNA's six year anniversary, after it formed on June 19, 2002. TNA created a section covering the event on their website. TNA released a poster to promote the event prior featuring the tagline " In a town where legends are made, one strives to reach immortality " and Booker T, Christian Cage, Rhino, Samoa Joe, and Tomko. Release the Flood by Dust for Life was used as the official theme for the show. Promotional material advertising the return of Abyss at the event was featured on TNA's television program TNA Impact!. The scripted wedding of Jay Lethal and SoCal Val was promoted for Slammiversary. This was announced on the May 15 episode of Impact!, when Lethal proposed and Val accepted in the storyline. American singer Ace Young was advertised take part in the segment on the May 22 episode of Impact!. On the May 29 episode of Impact!, Lethal asked Sonjay Dutt to be his best man, to which Dutt agreed. Lethal's groomsmen were announced on the June 5 episode as George Steele, Kamala, Koko B. Ware, and Jake Roberts.
= = = Storylines = = =
Slammiversary featured seven professional wrestling matches and one pre @-@ show match that involved different wrestlers from pre @-@ existing scripted feuds and storylines. Wrestlers portrayed villains, heroes, or less distinguishable characters in the scripted events that built tension and culminated in a wrestling match or series of matches.
The main event at Slammiversary was a King of the Mountain match for the TNA World Heavyweight Championship, in which then @-@ champion Samoa Joe defended the title against four other competitors. On the May 15 episode of Impact!, Joe announced the encounter would take place at Slammiversary as well that an agreement had been made between Management Director Jim Cornette and himself on who would compete in the bout. The arrangement entailed that qualifying matches would take place leading to the event between four wrestlers he chose and four wrestlers Cornette chose. Cornette's four wrestlers were James Storm, Matt Morgan, Robert Roode, and Tomko, while Joe's four were A.J. Styles, Booker T, Christian Cage, and Rhino. The qualifying matches were held on the May 22 and May 29 episodes of Impact!. Roode defeated Morgan in the first qualifier, while Booker T defeated Styles in the second, both on the May 22 episode of Impact!. The last two qualification matches were held on the May 29 episode of Impact!, with Rhino defeating Storm and Cage defeating Tomko. Kevin Nash, who played Joe's mentor in the storyline, requested to be made the Special Guest Ringside Enforcer for the bout, which he was granted by Cornette on the May 29 episode of Impact!.
The predominate storyline heading into the event was the rivalry between A.J. Styles and Kurt Angle, both members of The Angle Alliance group. On the February 14 episode of Impact!, TNA held the scripted wedding of Angle's real @-@ life wife Karen Angle and Styles despite Angle and Karen still being married on @-@ screen. Afterwards, Karen and Angle separated in the storyline on the March 13 episode of Impact!. TNA continued to build the situation with Angle attempting to reconcile with Karen on the May 15 episode of Impact!. Karen refused Angle's request on the May 22 episode of Impact!, leading to Angle turning on and assaulting Styles later in the episode due to his jealousy of the affection Karen showed for Styles. On the May 29 episode of Impact!, Cornette announced Angle versus Styles for the event. Angle sustained a severe neck injury in early May with several TNA officials believing Angle would not recover in time to perform at the show. Angle was still in pain a few days prior to Slammiversary but was expected to perform normally despite some officials feeling it was too soon to compete.
The TNA World Tag Team Championship was defended at Slammiversary by then @-@ champions The Latin American Xchange ( Hernandez and Homicide ; LAX ) against Team 3D ( Brother Devon and Brother Ray ). At TNA's previous PPV event Sacrifice on May 11, LAX defeated Team 3D in the final round of the Deuces Wild Tag Team Tournament for the vacant TNA World Tag Team Championship. On the May 15 episode of Impact!, Team 3D attacked and was scripted to injure LAX's manager Héctor Guerrero, thus starting a rivalry between the two. Cornette announced a rematch from Sacrifice for the championship to take place at the show on the May 29 episode of Impact!.
TNA held a Six Woman Tag Team match pitting The Beautiful People ( Angelina Love and Velvet Sky ) and Mickie Knuckles against Gail Kim, ODB, and Roxxi at Slammiversary. This was the main storyline in TNA's women's division which started at Sacrifice where TNA held a Ten Woman TNA Knockouts Makeover Battle Royal to become number @-@ one contender to the TNA Women's Knockout Championship. The rules of the contest involved the winner getting a championship match while the runner @-@ up had her head shaven. Love cost Roxxi — then known as Roxxi Laveaux — the match, resulting in her head being shaven. Kim won the bout and went on to have her title opportunity on the May 15 episode of Impact!, which she lost after interference from Love. On the June 5 episode of Impact!, Knuckles made her TNA debut aligning with The Beautiful People in assaulting Kim, ODB, and Roxxi.
= = Event = =
TNA held a match to warm – up the crowd known as a dark match prior to the show pitting The Motor City Machine Guns ( Alex Shelley and Chris Sabin ) against the team of Lance Hoyt and Johnny Devine. The Motor City Machine Guns won the encounter.
= = = Miscellaneous = = =
Slammiversary featured employees other than the wrestlers involved in the matches. Mike Tenay and Don West were the commentators for the telecast, with Frank Trigg providing for the A.J. Styles versus Kurt Angle bout only. Jeremy Borash and David Penzer were ring announcers for the event. Andrew Thomas, Earl Hebner, Rudy Charles, and Mark " Slick " Johnson participated as referees for the encounters. Lauren Thompson and Borash were used as interviewers during the event. Besides those who competed at the event, Abyss, Ace Young, Eric Young, George Steele, Héctor Guerrero, Jake Roberts, Jay Lethal, | wikitext_103 | [
426,
7335,
3681,
16488,
313,
4695,
2387,
426,
4928,
187,
7335,
3681,
16488,
313,
4695,
2387,
369,
247,
5702,
28508,
2075,
1214,
14,
33,
591,
1214,
14,
33,
1859,
313,
367,
10201,
2387,
2362,
4197,
407,
253,
12266,
8758,
13121,
12121,
47139,
313,
308,
1322,
2387,
14892,
326,
2335,
1659,
327,
3978,
854,
1157,
4695,
387,
253,
1605,
52,
4881,
21352,
280,
5197,
275,
3684,
7603,
1157,
18531,
964,
733,
369,
253,
7002,
2362,
762,
253,
7335,
3681,
16488,
1416,
285,
253,
15515,
2362,
275,
253,
4695,
308,
1322,
367,
10201,
10130,
964,
20400,
5702,
28508,
10129,
285,
581,
3644,
3761,
497,
12819,
327,
253,
2362,
686,
84,
3120,
1157,
1264,
273,
534,
497,
323,
40507,
964,
380,
2362,
42628,
456,
308,
1322,
686,
84,
2800,
807,
19054,
964,
2490,
380,
2022,
2362,
369,
247,
4377,
273,
253,
15939,
3761,
323,
253,
308,
1322,
3645,
32592,
6712,
11218,
1157,
275,
534,
840,
1214,
14,
33,
16928,
5769,
12354,
9915,
25860,
1411,
45428,
308,
1157,
6416,
330,
486,
1157,
11537,
2610,
1157,
285,
6911,
416,
836,
70,
964,
9915,
1912,
253,
3761,
281,
13280,
253,
4060,
964,
380,
3120,
671,
12819,
247,
23928,
268,
2835,
329,
15,
43,
15,
31297,
868,
1411,
32211,
4965,
282,
1157,
534,
31297,
868,
1912,
964,
380,
308,
1322,
3645,
17750,
10589,
11218,
369,
25860,
407,
380,
12760,
2448,
1594,
4168,
313,
36835,
285,
388,
4986,
504,
3706,
12226,
57,
2387,
1411,
10589,
495,
37,
313,
14533,
40316,
285,
14533,
10734,
2387,
387,
253,
2362,
964,
12226,
57,
369,
253,
3949,
641,
275,
253,
12417,
281,
13280,
253,
15730,
964,
329,
11067,
23724,
17750,
10589,
3761,
369,
1912,
407,
253,
2285,
273,
443,
647,
10766,
1157,
473,
8904,
1157,
285,
416,
1004,
2981,
689,
380,
34718,
6491,
313,
18354,
1758,
10540,
285,
22484,
14763,
16194,
2387,
285,
6956,
583,
327,
253,
762,
9290,
964,
2490,
7335,
3681,
16488,
310,
12659,
323,
9915,
1146,
253,
806,
281,
13280,
247,
15730,
275,
247,
4377,
273,
253,
15939,
3761,
964,
380,
2361,
4677,
273,
4147,
39053,
323,
253,
2362,
369,
1384,
1214,
13,
33,
20181,
1157,
347,
2361,
407,
380,
47139,
46335,
6317,
15139,
964,
7335,
3681,
16488,
574,
271,
21250,
273,
374,
1214,
13,
33,
20181,
952,
964,
10354,
48690,
1342,
273,
253,
5702,
28508,
2593,
273,
253,
9462,
15650,
29904,
20139,
253,
921,
247,
818,
562,
273,
884,
1157,
534,
369,
2406,
685,
253,
854,
562,
273,
884,
1677,
281,
253,
5215,
11166,
407,
16553,
8148,
87,
3592,
964,
2732,
253,
2362,
1157,
271,
7343,
5866,
534,
7369,
275,
253,
2471,
273,
581,
637,
285,
253,
4975,
273,
1529,
964,
4928,
187,
426,
426,
28363,
426,
426,
4928,
19668,
426,
426,
426,
17720,
426,
426,
426,
4928,
187,
380,
7002,
41860,
275,
253,
7335,
3681,
16488,
1416,
369,
6138,
275,
4247,
4695,
281,
1379,
1659,
327,
3978,
854,
964,
496,
3919,
4695,
1157,
352,
369,
2361,
326,
7335,
3681,
16488,
651,
320,
2918,
3345,
253,
308,
1322,
29930,
2195,
24380,
275,
27687,
1157,
7758,
964,
496,
3563,
1214,
14,
33,
3919,
4695,
1157,
7335,
3681,
16488,
369,
3264,
281,
320,
2918,
275,
16091,
964,
308,
1322,
6808,
247,
2315,
3727,
275,
4162,
4695,
12089,
7335,
3681,
16488,
327,
3978,
854,
387,
253,
1605,
52,
4881,
21352,
280,
5197,
275,
3684,
7603,
1157,
18531,
1157,
3738,
308,
1322,
15127,
253,
2362,
347,
1146,
2918,
275,
253,
33199,
2170,
964,
733,
671,
6138,
326,
253,
7970,
4377,
273,
253,
15939,
3761,
651,
320,
2918,
387,
253,
2362,
964,
48702,
323,
7335,
3681,
2373,
552,
2427,
327,
7289,
327,
4162,
2030,
964,
7335,
3681,
16488,
46417,
308,
1322,
686,
84,
2800,
807,
19054,
1157,
846,
352,
4447,
327,
3978,
655,
1157,
6752,
964,
308,
1322,
3562,
247,
2593,
10985,
253,
2362,
327,
616,
4422,
964,
308,
1322,
4439,
247,
20731,
281,
8591,
253,
2362,
2720,
15773,
253,
6809,
1282,
346,
496,
247,
3874,
835,
38209,
403,
1160,
1157,
581,
331,
39477,
281,
3986,
4293,
48317,
346,
285,
45428,
308,
1157,
6416,
330,
486,
1157,
11537,
2610,
1157,
5769,
12354,
9915,
1157,
285,
6270,
7381,
964,
20002,
253,
48613,
407,
35540,
323,
7813,
369,
908,
347,
253,
3565,
10014,
323,
253,
921,
964,
13798,
29882,
2144,
12089,
253,
1091,
273,
3506,
37409,
387,
253,
2362,
369,
12819,
327,
308,
1322,
686,
84,
7315,
2086,
308,
1322,
29930,
2195,
964,
380,
6001,
264,
12142,
273,
16246,
418,
678,
267,
285,
1893,
4218,
4009,
369,
15127,
323,
7335,
3681,
16488,
964,
831,
369,
6138,
327,
253,
2552,
1458,
9037,
273,
29930,
2195,
1157,
672,
418,
678,
267,
4081,
285,
4009,
7607,
275,
253,
44803,
964,
2448,
16057,
37667,
10231,
369,
37636,
1379,
629,
275,
253,
8223,
327,
253,
2552,
3307,
9037,
273,
29930,
2195,
964,
1623,
253,
2552,
3285,
9037,
273,
29930,
2195,
1157,
418,
678,
267,
2546,
11832,
48079,
399,
13077,
281,
320,
521,
1682,
637,
1157,
281,
534,
399,
13077,
5821,
964,
418,
678,
267,
686,
84,
7753,
3056,
3767,
497,
6138,
327,
253,
3978,
608,
9037,
347,
6086,
40592,
1157,
21174,
7080,
1157,
611,
23988,
378,
15,
39128,
1157,
285,
23239,
16171,
964,
4928,
187,
426,
426,
426,
16061,
8737,
426,
426,
426,
4928,
187,
7335,
3681,
16488,
12819,
5093,
5702,
28508,
10129,
285,
581,
638,
1214,
14,
33,
921,
3761,
326,
3206,
1027,
16972,
10787,
432,
638,
1214,
14,
33,
5368,
6001,
264,
704,
36626,
285,
2926,
8737,
964,
37839,
10787,
30804,
5193,
1550,
1157,
22271,
1157,
390,
1679,
37651,
5810,
275,
253,
6001,
264,
3394,
326,
4270,
12415,
285,
27798,
456,
275,
247,
28508,
3761,
390,
2962,
273,
10129,
964,
2490,
380,
2022,
2362,
387,
7335,
3681,
16488,
369,
247,
4377,
273,
253,
15939,
3761,
323,
253,
308,
1322,
3645,
32592,
6712,
11218,
1157,
275,
534,
840,
1214,
14,
33,
16928,
5769,
12354,
9915,
25860,
253,
4060,
1411,
1740,
643,
21607,
964,
1623,
253,
2552,
1458,
9037,
273,
29930,
2195,
1157,
9915,
6138,
253,
13329,
651,
1379,
1659,
387,
7335,
3681,
16488,
347,
973,
326,
271,
4345,
574,
644,
1160,
875,
11354,
9966,
8438,
14656,
5464,
285,
2994,
327,
665,
651,
15639,
275,
253,
23928,
964,
380,
11461,
994,
7193,
326,
28661,
10129,
651,
1379,
1659,
4283,
281,
253,
2362,
875,
1740,
16972,
10787,
344,
9703,
285,
1740,
16972,
10787,
14656,
5464,
9703,
964,
14656,
5464,
686,
84,
1740,
16972,
10787,
497,
5490,
25005,
1157,
12429,
16286,
1157,
6911,
416,
836,
70,
1157,
285,
6270,
7381,
1157,
1223,
9915,
686,
84,
1740,
497,
329,
15,
43,
15,
31297,
868,
1157,
45428,
308,
1157,
6416,
330,
486,
1157,
285,
11537,
2610,
964,
380,
28661,
10129,
497,
2918,
327,
253,
2552,
3307,
285,
2552,
3285,
13305,
273,
29930,
2195,
964,
416,
836,
70,
16473,
16286,
275,
253,
806,
4426,
5425,
1157,
1223,
45428,
308,
16473,
31297,
868,
275,
253,
1273,
1157,
1097,
327,
253,
2552,
3307,
9037,
273,
29930,
2195,
964,
380,
1390,
767,
35011,
10129,
497,
2918,
327,
253,
2552,
3285,
9037,
273,
29930,
2195,
1157,
342,
11537,
2610,
38774,
25005,
285,
330,
486,
38774,
6270,
7381,
964,
15273,
20627,
1157,
665,
4546,
9915,
686,
84,
31854,
275,
253,
44803,
1157,
9521,
281,
320,
1160,
253,
10396,
34933,
50012,
504,
3035,
1542,
1209,
323,
253,
23928,
1157,
534,
344,
369,
7169,
407,
14656,
5464,
327,
253,
2552,
3285,
9037,
273,
29930,
2195,
964,
2490,
380,
2063,
297,
4024,
44803,
13590,
715,
253,
2362,
369,
253,
43497,
875,
329,
15,
43,
15,
31297,
868,
285,
32211,
4965,
282,
1157,
1097,
2758,
273,
380,
4965,
282,
20958,
1387,
964,
1623,
253,
5080,
1638,
9037,
273,
29930,
2195,
1157,
308,
1322,
2918,
253,
6001,
264,
12142,
273,
4965,
282,
686,
84,
1524,
1214,
14,
33,
1495,
4475,
25062,
4965,
282,
285,
31297,
868,
5747,
4965,
282,
285,
25062,
1335,
1146,
7028,
327,
1214,
14,
33,
3601,
964,
47090,
1157,
25062,
285,
4965,
282,
9070,
275,
253,
44803,
327,
253,
3919,
2145,
9037,
273,
29930,
2195,
964,
308,
1322,
4821,
281,
1973,
253,
4112,
342,
4965,
282,
13756,
281,
42853,
342,
25062,
327,
253,
2552,
1458,
9037,
273,
29930,
2195,
964,
25062,
9284,
4965,
282,
686,
84,
2748,
327,
253,
2552,
3307,
9037,
273,
29930,
2195,
1157,
4283,
281,
4965,
282,
8577,
327,
285,
9222,
272,
31297,
868,
1996,
275,
253,
9037,
1955,
281,
521,
44170,
273,
253,
21909,
25062,
2692,
323,
31297,
868,
964,
1623,
253,
2552,
3285,
9037,
273,
29930,
2195,
1157,
14656,
5464,
6138,
4965,
282,
7147,
31297,
868,
323,
253,
2362,
964,
4965,
282,
12321,
247,
5460,
7623,
4975,
275,
2393,
2552,
342,
2067,
308,
1322,
6338,
22142,
4965,
282,
651,
417,
9295,
275,
673,
281,
1347,
387,
253,
921,
964,
4965,
282,
369,
1335,
275,
3075,
247,
1643,
1897,
2720,
281,
7335,
3681,
16488,
533,
369,
3264,
281,
1347,
9403,
5747,
690,
6338,
5471,
352,
369,
1512,
3517,
281,
15639,
964,
2490,
380,
308,
1322,
3645,
17750,
10589,
11218,
369,
25860,
387,
7335,
3681,
16488,
407,
840,
1214,
14,
33,
28002,
380,
12760,
2448,
1594,
4168,
313,
36835,
285,
388,
4986,
504,
3706,
12226,
57,
2387,
1411,
10589,
495,
37,
313,
14533,
40316,
285,
14533,
10734,
2387,
964,
2058,
308,
1322,
686,
84,
2045,
367,
10201,
2362,
20106,
16297,
327,
2552,
1903,
1157,
12226,
57,
16473,
10589,
495,
37,
275,
253,
2457,
3790,
273,
253,
1605,
86,
707,
13303,
17750,
10589,
34947,
323,
253,
33997,
308,
1322,
3645,
17750,
10589,
11218,
964,
1623,
253,
2552,
1458,
9037,
273,
29930,
2195,
1157,
10589,
495,
37,
13964,
285,
369,
6001,
264,
281,
2450,
459,
12226,
57,
686,
84,
7205,
388,
860,
1870,
3262,
32987,
287,
1157,
3021,
4983,
247,
43497,
875,
253,
767,
964,
14656,
5464,
6138,
247,
867,
1506,
432,
20106,
16297,
323,
253,
15730,
281,
1379,
1659,
387,
253,
921,
327,
253,
2552,
3285,
9037,
273,
29930,
2195,
964,
2490,
308,
1322,
2918,
247,
11067,
23724,
17750,
10589,
3761,
268,
2835,
380,
34718,
6491,
313,
18354,
1758,
10540,
285,
22484,
14763,
16194,
2387,
285,
42735,
466,
10381,
37746,
1411,
443,
647,
10766,
1157,
473,
8904,
1157,
285,
416,
1004,
2981,
387,
7335,
3681,
16488,
964,
831,
369,
253,
2022,
44803,
275,
308,
1322,
686,
84,
2255,
686,
84,
9025,
534,
3053,
387,
20106,
16297,
835,
308,
1322,
2918,
247,
13728,
23724,
308,
1322,
47480,
8349,
10338,
1189,
15764,
10043,
281,
2489,
1180,
1214,
14,
33,
581,
49865,
281,
253,
308,
1322,
10168,
686,
84,
47480,
483,
11218,
964,
380,
4803,
273,
253,
12417,
3206,
253,
13688,
2970,
247,
15730,
3761,
1223,
253,
25620,
1214,
14,
33,
598,
574,
617,
1481,
439,
7603,
964,
10540,
2105,
416,
1004,
2981,
1905,
840,
1929,
347,
416,
1004,
2981,
418,
1123,
10422,
1905,
253,
3761,
1157,
4795,
275,
617,
1481,
1146,
439,
7603,
964,
10766,
1912,
253,
23928,
285,
2427,
327,
281,
452,
617,
4060,
5107,
327,
253,
2552,
1458,
9037,
273,
29930,
2195,
1157,
534,
703,
3663,
846,
11689,
432,
10540,
964,
1623,
253,
3978,
608,
9037,
273,
29930,
2195,
1157,
10381,
37746,
1160,
617,
308,
1322,
11386,
8495,
272,
342,
380,
34718,
6491,
275,
9222,
272,
10766,
1157,
473,
8904,
1157,
285,
416,
1004,
2981,
964,
4928,
187,
426,
426,
11846,
426,
426,
4928,
187,
308,
1322,
2918,
247,
3761,
281,
5890,
1108,
598,
253,
9539,
1929,
347,
247,
3644,
3761,
2720,
281,
253,
921,
268,
2835,
380,
18521,
3228,
21585,
443,
4539,
313,
6539,
19787,
2205,
285,
11007,
16336,
249,
2387,
1411,
253,
2285,
273,
35463,
388,
899,
85,
285,
22810,
8397,
460,
964,
380,
18521,
3228,
21585,
443,
4539,
1912,
253,
13329,
964,
4928,
187,
426,
426,
426,
353,
2865,
43295,
426,
426,
426,
4928,
187,
7335,
3681,
16488,
12819,
6171,
643,
685,
253,
16972,
10787,
3206,
275,
253,
10129,
964,
10035,
13728,
333,
285,
5037,
4255,
497,
253,
42608,
323,
253,
4014,
4008,
1157,
342,
6893,
1535,
20878,
5277,
323,
253,
329,
15,
43,
15,
31297,
868,
7147,
32211,
4965,
282,
23928,
760,
964,
25413,
14027,
1225,
285,
5119,
7009,
8260,
497,
5818,
4300,
8964,
323,
253,
2362,
964,
11116,
7195,
1157,
22992,
754,
67,
1216,
1157,
21523,
90,
8444,
1157,
285,
4744,
346,
322,
4655,
346,
7902,
13640,
347,
10591,
6151,
323,
253,
25767,
964,
33821,
16647,
285,
14027,
1225,
497,
908,
347,
4572,
398,
1309,
253,
2362,
964,
15222,
1110,
665,
29177,
387,
253,
2362,
1157,
3506,
37409,
1157,
37667,
10231,
1157,
12284,
10231,
1157,
6086,
40592,
1157,
388,
860,
1870,
3262,
32987,
287,
1157,
23239,
16171,
1157,
16246,
418,
678,
267,
1157
] |
rd congressional district, represented by Gregg Harper ( R ), who has been in office since 2009. Lauderdale County, home to Meridian, has voted for the Republican candidate in every United States presidential election since 1972. Prior to the shift to the Republican Party, white area voters supported Democratic Party candidates, as for decades since the late nineteenth century, it was a one @-@ party state.
= = Demographics = =
The city's growth has reflected the push and pull of many social and economic factors. The total population increased in each census from the city's founding until 1970, although varying from rates as high as 165 % to as low as 0 @.@ 2 %. In the 1970 census the population decreased, then slightly increased by 1980, after which the population slowly declined, increasing again since the turn of the 21st century. Between 1980 and 2000, the population declined more than 14 %. As of the census of 2000, the city's population was 39 @,@ 968, and the population density was 885 @.@ 9 inhabitants per square mile ( 342 @.@ 0 / km2 ). In 2008, the city was the sixth largest in the state. The population increased as of 2010.
Meridian is the principal city in the Meridian micropolitan area, which as of 2009 consisted of three counties – Clarke, Kemper, and Lauderdale – and had a population of 106 @,@ 139. There is a population of 232 @,@ 900 in a 45 @-@ mile ( 72 km ) radius and 526 @,@ 500 in a 65 @-@ mile ( 105 km ) radius.
While the overall population growth of the city has varied, there has been a steady growth in the number and percentage of non @-@ white residents. The only decline in this group was between 1960 and 1970, when the city's overall population declined markedly. In the 2010 Census, the racial makeup of the city was 61 @.@ 55 % African American, 35 @.@ 71 % White, 0 @.@ 9 % Asian, 0 @.@ 2 % Native American, < 0 @.@ 02 % Pacific Islander, 0 @.@ 59 % from other races, and 0 @.@ 89 % from two or more races. Hispanic or Latino of any race were 1 @.@ 75 % of the population.
According to the 2000 Census, of the 17 @,@ 890 housing units inside city limits, 15 @,@ 966 were occupied, 10 @,@ 033 of them by families. 31 @.@ 1 % of occupied households had children under the age of 18, 36 @.@ 2 % were married couples living together, 23 @.@ 3 % consisted of a female householder with no husband present, and 37 @.@ 2 % were non @-@ families. 33 @.@ 2 % of all households were made up of individuals, and 14 @.@ 0 % had someone living alone who was 65 years of age or older. The average household size was 2 @.@ 39 and the average family size was 3 @.@ 06. The average household size has steadily decreased since 1970, when it was 3 @.@ 04. Meridian's median age has increased from 30 @.@ 4 in 1970 to 34 @.@ 6 in 2000.
The median income for a household in the city was $ 25 @,@ 085, and the median income for a family was $ 31 @,@ 062. Males had a median income of $ 29 @,@ 404 versus $ 19 @,@ 702 for females. The per capita income for the city was $ 15 @,@ 255. About 24 @.@ 6 % of families and 28 @.@ 6 % of the population were below the poverty line, including 40 @.@ 8 % of those under age 18 and 22 @.@ 0 % of those age 65 or over.
= = = Religion = = =
The population of Meridian and its surrounds is fairly observant, with 65 @.@ 2 % of Lauderdale County identifying as affiliated with some type of religious congregation, compared with the national average of 50 @.@ 2 %. Of the affiliated in 2000, 30 @,@ 068 ( 59 @.@ 0 % ) were in the Southern Baptist Convention, 9 @,@ 469 ( 18 @.@ 6 % ) were with the United Methodist Church, and 1 @,@ 872 ( 3 @.@ 7 % ) were associated with the Catholic Church.
Immigrant Jews from Germany and eastern Europe were influential in commercial development of the city, building businesses and services. Congregation Beth Israel was founded in 1868, just before the city's " Golden Age. " Meridian once had the largest Jewish community in the state, with 575 Jewish people living in the city in 1927. Today, fewer than 40 Jews live in Meridian, most of whom are elderly.
= = Geography and climate = =
Meridian is located in the North Central Hills region of Mississippi in Lauderdale County. According to the United States Census Bureau, the city has a total area of 45 @.@ 9 sq mi ( 119 km2 ), of which 45 @.@ 1 sq mi ( 117 km2 ) is land and 0 @.@ 8 sq mi ( 2 @.@ 1 km2 ) is water. Along major highways, the city is 93 mi ( 150 km ) east of Jackson, Mississippi ; 154 mi ( 248 km ) west of Birmingham, Alabama ; 202 mi ( 325 km ) northeast of New Orleans, Louisiana ; 231 mi ( 372 km ) southeast of Memphis, Tennessee ; and 297 mi ( 478 km ) west of Atlanta, Georgia. The area surrounding the city is covered with cotton and corn fields along with oak and pine forests, and its topography consists of clay hills and the bottom lands of the head waters of the Chickasawhay River.
The natural terrain of the area has been modified in the urban core of the city by grading, but it maintains its gentle rolling character in the outlying areas. Numerous small creeks are found throughout the city and small lakes and woodlands lie in the northern and southern portions of the city. Sowashee Creek runs through the southern portion of the city and branches off into Gallagher's Creek, which flows through the center of the city. Loper's Creek runs through the far @-@ western part of the city while smaller creeks including Shearer's Branch, Magnolia Creek, and Robbins Creek are dispersed throughout the city.
Meridian is in the humid subtropical climate zone. The average high temperature during summer ( June through August ) is around 90 ° F ( 32 ° C ) and the average low is around 70 ° F ( 21 ° C ). In winter ( December through February ) the average maximum is around 60 ° F ( 16 ° C ) and minimum 35 ° F ( 2 ° C ). The warmest month is July, with an average high of 92 @.@ 9 ° F ( 33 @.@ 8 ° C ), and the coldest month of the year is January with an average low of 34 @.@ 7 ° F ( 1 @.@ 5 ° C ).
The average annual precipitation in the city is 58 @.@ 65 in ( 1 @,@ 490 mm ). Rainfall is fairly evenly distributed throughout the year, and the wettest month of the year is March, in which an average of 6 @.@ 93 in ( 176 mm ) of rain falls. Much rainfall is delivered by thunderstorms which are common during the summer months but occur throughout the year. Severe thunderstorms - which can produce damaging winds and / or large hail in addition to the usual hazards of lightning and heavy rain - occasionally occur. These are most common during the spring months with a secondary peak during the Fall months. These storms also bring the risk of tornadoes.
= = Economy = =
Early on, the economy depended greatly upon the railroads in the area. The city was the largest in Mississippi around the start of the 20th century, with five major rail lines and 44 trains coming in and out daily. The city's economy not only depended on the rails but the goods, such as timber and cotton, transported on them. With these rail @-@ based industries, the city was a great economic power in the state and region from about 1890 through 1930. Though its economy slowed with the decline of the railroading industry in the 1950s, the city has adapted, moving from a largely rail @-@ based economy to a more diversified one, with healthcare, military, and manufacturing employing the most people.
Along with Lauderdale County and the city of Marion, Meridian is served by the East Mississippi Business Development Corporation, which was formed in 1996 by a group of business leaders from the area. While as of April 2010, the city's civilian labor force was only 15 @,@ 420 people, there is a population of 232 @,@ 900 in a 45 @-@ mile ( 72 km ) radius and 526 @,@ 500 in a 65 @-@ mile ( 105 km ) radius, of which 104 @,@ 600 and 234 @,@ 200 people respectively are in the labor force. The city thus serves as a hub of employment, retail, health care, and culture activities. Eighty percent of Lauderdale County's workers reside in the county while 90 % live within 45 miles.
In April 2010, there were 6 @,@ 260 people employed in the healthcare field in Lauderdale County. Rush Hospital is the largest healthcare organization in the region, employing 2 @,@ 610 people, followed by East Mississippi State Hospital with 1 @,@ 500 and Anderson Hospital with 1 @,@ 475. | wikitext_103 | [
5784,
22996,
3286,
1157,
6607,
407,
13729,
1266,
22663,
313,
416,
2387,
1157,
665,
556,
644,
275,
3906,
1580,
4748,
964,
3905,
438,
15182,
1079,
3928,
1157,
1728,
281,
7612,
31517,
1157,
556,
14285,
323,
253,
8786,
7431,
275,
1046,
1986,
2077,
12674,
6132,
1580,
15750,
964,
13036,
281,
253,
5333,
281,
253,
8786,
7021,
1157,
3168,
2170,
11163,
4516,
9922,
7021,
9183,
1157,
347,
323,
8007,
1580,
253,
3563,
26815,
5331,
1157,
352,
369,
247,
581,
1214,
14,
33,
3128,
1375,
964,
4928,
187,
426,
426,
4281,
24959,
426,
426,
4928,
187,
380,
2846,
686,
84,
3116,
556,
11392,
253,
7450,
285,
3785,
273,
1142,
2675,
285,
5054,
2616,
964,
380,
2264,
3072,
2559,
275,
1016,
20740,
432,
253,
2846,
686,
84,
23569,
1919,
10333,
1157,
3738,
11962,
432,
4142,
347,
1029,
347,
19939,
2462,
281,
347,
1698,
347,
470,
1214,
15,
33,
374,
2462,
964,
496,
253,
10333,
20740,
253,
3072,
6137,
1157,
840,
5777,
2559,
407,
9178,
1157,
846,
534,
253,
3072,
7808,
13072,
1157,
3629,
969,
1580,
253,
1614,
273,
253,
3127,
296,
5331,
964,
17842,
9178,
285,
5307,
1157,
253,
3072,
13072,
625,
685,
1638,
2462,
964,
1284,
273,
253,
20740,
273,
5307,
1157,
253,
2846,
686,
84,
3072,
369,
6931,
1214,
13,
33,
898,
2358,
1157,
285,
253,
3072,
4038,
369,
854,
2227,
1214,
15,
33,
898,
21251,
591,
6278,
13915,
313,
36153,
1214,
15,
33,
470,
1227,
10771,
19,
2387,
964,
496,
4695,
1157,
253,
2846,
369,
253,
15515,
6253,
275,
253,
1375,
964,
380,
3072,
2559,
347,
273,
4267,
964,
2490,
7612,
31517,
310,
253,
8624,
2846,
275,
253,
7612,
31517,
8555,
19646,
2170,
1157,
534,
347,
273,
4748,
14278,
273,
1264,
21813,
1108,
31131,
1157,
44570,
468,
1157,
285,
3905,
438,
15182,
1079,
1108,
285,
574,
247,
3072,
273,
12708,
1214,
13,
33,
15470,
964,
1707,
310,
247,
3072,
273,
26972,
1214,
13,
33,
22908,
275,
247,
5329,
1214,
14,
33,
13915,
313,
8187,
10771,
2387,
9941,
285,
44947,
1214,
13,
33,
6783,
275,
247,
7251,
1214,
14,
33,
13915,
313,
12446,
10771,
2387,
9941,
964,
2490,
3900,
253,
4583,
3072,
3116,
273,
253,
2846,
556,
12848,
1157,
627,
556,
644,
247,
11792,
3116,
275,
253,
1180,
285,
7155,
273,
1327,
1214,
14,
33,
3168,
8811,
964,
380,
760,
10343,
275,
436,
1387,
369,
875,
11994,
285,
10333,
1157,
672,
253,
2846,
686,
84,
4583,
3072,
13072,
22293,
964,
496,
253,
4267,
31188,
1157,
253,
15066,
24071,
273,
253,
2846,
369,
9901,
1214,
15,
33,
7288,
2462,
8118,
2448,
1157,
4791,
1214,
15,
33,
11102,
2462,
5219,
1157,
470,
1214,
15,
33,
898,
2462,
11650,
1157,
470,
1214,
15,
33,
374,
2462,
18199,
2448,
1157,
654,
470,
1214,
15,
33,
16261,
2462,
11553,
8451,
254,
1157,
470,
1214,
15,
33,
8978,
2462,
432,
643,
15820,
1157,
285,
470,
1214,
15,
33,
11289,
2462,
432,
767,
390,
625,
15820,
964,
28787,
390,
36180,
273,
667,
5492,
497,
337,
1214,
15,
33,
6879,
2462,
273,
253,
3072,
964,
2490,
4794,
281,
253,
5307,
31188,
1157,
273,
253,
1722,
1214,
13,
33,
854,
2270,
8039,
5085,
3304,
2846,
7787,
1157,
1458,
1214,
13,
33,
898,
2526,
497,
13598,
1157,
884,
1214,
13,
33,
470,
1610,
273,
731,
407,
5870,
964,
4562,
1214,
15,
33,
337,
2462,
273,
13598,
18294,
574,
2151,
762,
253,
2363,
273,
1283,
1157,
5540,
1214,
15,
33,
374,
2462,
497,
7028,
17581,
3811,
2366,
1157,
3495,
1214,
15,
33,
495,
2462,
14278,
273,
247,
5343,
2419,
11375,
342,
642,
5938,
1246,
1157,
285,
5345,
1214,
15,
33,
374,
2462,
497,
1327,
1214,
14,
33,
5870,
964,
5922,
1214,
15,
33,
374,
2462,
273,
512,
18294,
497,
1160,
598,
273,
4292,
1157,
285,
1638,
1214,
15,
33,
470,
2462,
574,
3095,
3811,
3815,
665,
369,
7251,
1107,
273,
2363,
390,
5662,
964,
380,
3388,
11692,
1979,
369,
374,
1214,
15,
33,
6931,
285,
253,
3388,
2021,
1979,
369,
495,
1214,
15,
33,
17796,
964,
380,
3388,
11692,
1979,
556,
25060,
6137,
1580,
10333,
1157,
672,
352,
369,
495,
1214,
15,
33,
16703,
964,
7612,
31517,
686,
84,
8876,
2363,
556,
2559,
432,
1884,
1214,
15,
33,
577,
275,
10333,
281,
5910,
1214,
15,
33,
721,
275,
5307,
964,
2490,
380,
8876,
6021,
323,
247,
11692,
275,
253,
2846,
369,
370,
2030,
1214,
13,
33,
470,
2227,
1157,
285,
253,
8876,
6021,
323,
247,
2021,
369,
370,
4562,
1214,
13,
33,
470,
3763,
964,
353,
2339,
574,
247,
8876,
6021,
273,
370,
3285,
1214,
13,
33,
21566,
7147,
370,
655,
1214,
13,
33,
42444,
323,
10753,
964,
380,
591,
37297,
6021,
323,
253,
2846,
369,
370,
1458,
1214,
13,
33,
15215,
964,
11376,
2164,
1214,
15,
33,
721,
2462,
273,
5870,
285,
3349,
1214,
15,
33,
721,
2462,
273,
253,
3072,
497,
2708,
253,
14192,
1386,
1157,
1690,
3387,
1214,
15,
33,
854,
2462,
273,
1110,
762,
2363,
1283,
285,
3307,
1214,
15,
33,
470,
2462,
273,
1110,
2363,
7251,
390,
689,
964,
4928,
187,
426,
426,
426,
34959,
426,
426,
426,
4928,
187,
380,
3072,
273,
7612,
31517,
285,
697,
46168,
310,
9648,
1759,
386,
1157,
342,
7251,
1214,
15,
33,
374,
2462,
273,
3905,
438,
15182,
1079,
3928,
12488,
347,
27312,
342,
690,
1511,
273,
7231,
35997,
1157,
2429,
342,
253,
3872,
3388,
273,
2456,
1214,
15,
33,
374,
2462,
964,
4683,
253,
27312,
275,
5307,
1157,
1884,
1214,
13,
33,
470,
2358,
313,
8978,
1214,
15,
33,
470,
2462,
2387,
497,
275,
253,
10586,
30021,
15757,
1157,
898,
1214,
13,
33,
40089,
313,
1283,
1214,
15,
33,
721,
2462,
2387,
497,
342,
253,
1986,
43327,
6412,
1157,
285,
337,
1214,
13,
33,
854,
3547,
313,
495,
1214,
15,
33,
818,
2462,
2387,
497,
2330,
342,
253,
10503,
6412,
964,
2490,
17573,
45243,
11563,
432,
6176,
285,
14730,
3060,
497,
20803,
275,
6264,
2440,
273,
253,
2846,
1157,
3652,
9341,
285,
3238,
964,
4731,
37480,
22169,
5143,
369,
11420,
275,
48318,
1157,
816,
1078,
253,
2846,
686,
84,
346,
15790,
11362,
964,
346,
7612,
31517,
2378,
574,
253,
6253,
9556,
3114,
275,
253,
1375,
1157,
342,
45916,
9556,
952,
3811,
275,
253,
2846,
275,
31687,
964,
11056,
1157,
11184,
685,
3387,
11563,
3153,
275,
7612,
31517,
1157,
954,
273,
5207,
403,
13988,
964,
4928,
187,
426,
426,
3096,
3756,
285,
7952,
426,
426,
4928,
187,
7612,
31517,
310,
4441,
275,
253,
3729,
8170,
21706,
2919,
273,
18531,
275,
3905,
438,
15182,
1079,
3928,
964,
4794,
281,
253,
1986,
2077,
31188,
15904,
1157,
253,
2846,
556,
247,
2264,
2170,
273,
5329,
1214,
15,
33,
898,
34703,
3641,
313,
12035,
10771,
19,
2387,
1157,
273,
534,
5329,
1214,
15,
33,
337,
34703,
3641,
313,
12387,
10771,
19,
2387,
310,
2659,
285,
470,
1214,
15,
33,
854,
34703,
3641,
313,
374,
1214,
15,
33,
337,
10771,
19,
2387,
310,
1824,
964,
23243,
2201,
40459,
1157,
253,
2846,
310,
11456,
3641,
313,
7783,
10771,
2387,
9268,
273,
9857,
1157,
18531,
3706,
21603,
3641,
313,
28640,
10771,
2387,
8935,
273,
26846,
1157,
15263,
3706,
22038,
3641,
313,
28325,
10771,
2387,
29510,
273,
1457,
20159,
1157,
17753,
3706,
28804,
3641,
313,
38891,
10771,
2387,
32253,
273,
33199,
1157,
16091,
3706,
285,
32047,
3641,
313,
42035,
10771,
2387,
8935,
273,
18267,
1157,
12096,
964,
380,
2170,
8704,
253,
2846,
310,
6107,
342,
17649,
285,
14128,
4910,
2112,
342,
29098,
285,
21175,
21327,
1157,
285,
697,
48865,
8414,
273,
24272,
19607,
285,
253,
5004,
13446,
273,
253,
1481,
12685,
273,
253,
46797,
284,
1403,
49289,
7121,
964,
2490,
380,
3626,
25061,
273,
253,
2170,
556,
644,
7321,
275,
253,
10106,
5161,
273,
253,
2846,
407,
35401,
1157,
533,
352,
18922,
697,
9950,
14572,
1894,
275,
253,
562,
2943,
3672,
964,
43275,
1355,
260,
658,
661,
403,
1119,
4768,
253,
2846,
285,
1355,
28169,
285,
5534,
6056,
7027,
275,
253,
11186,
285,
11053,
11821,
273,
253,
2846,
964,
322,
319,
284,
31622,
16611,
6613,
949,
253,
11053,
5110,
273,
253,
2846,
285,
12998,
745,
715,
11414,
41710,
686,
84,
16611,
1157,
534,
14221,
949,
253,
4055,
273,
253,
2846,
964,
418,
2211,
686,
84,
16611,
6613,
949,
253,
2080,
1214,
14,
33,
10439,
629,
273,
253,
2846,
1223,
4577,
260,
658,
661,
1690,
1500,
12287,
686,
84,
25474,
1157,
18482,
25119,
16611,
1157,
285,
6625,
37267,
16611,
403,
27667,
4768,
253,
2846,
964,
2490,
7612,
31517,
310,
275,
253,
33595,
8482,
29289,
7952,
8232,
964,
380,
3388,
1029,
3276,
1309,
5768,
313,
3978,
949,
4223,
2387,
310,
1475,
5091,
11758,
401,
313,
4567,
11758,
330,
2387,
285,
253,
3388,
1698,
310,
1475,
5571,
11758,
401,
313,
3127,
11758,
330,
2387,
964,
496,
8986,
313,
4565,
949,
5080,
2387,
253,
3388,
4869,
310,
1475,
3925,
11758,
401,
313,
1668,
11758,
330,
2387,
285,
5927,
4791,
11758,
401,
313,
374,
11758,
330,
2387,
964,
380,
5890,
383,
1770,
310,
4163,
1157,
342,
271,
3388,
1029,
273,
11266,
1214,
15,
33,
898,
11758,
401,
313,
5922,
1214,
15,
33,
854,
11758,
330,
2387,
1157,
285,
253,
5412,
383,
1770,
273,
253,
807,
310,
4247,
342,
271,
3388,
1698,
273,
5910,
1214,
15,
33,
818,
11758,
401,
313,
337,
1214,
15,
33,
608,
11758,
330,
2387,
964,
2490,
380,
3388,
7970,
26611,
275,
253,
2846,
310,
9135,
1214,
15,
33,
7251,
275,
313,
337,
1214,
13,
33,
35302,
5823,
2387,
964,
21398,
12615,
310,
9648,
25356,
5939,
4768,
253,
807,
1157,
285,
253,
9685,
2566,
1770,
273,
253,
807,
310,
3919,
1157,
275,
534,
271,
3388,
273,
721,
1214,
15,
33,
11456,
275,
313,
23670,
5823,
2387,
273,
9313,
11521,
964,
18770,
33621,
310,
8549,
407,
24511,
296,
19793,
534,
403,
1846,
1309,
253,
5768,
2607,
533,
2826,
4768,
253,
807,
964,
47770,
24511,
296,
19793,
428,
534,
476,
4711,
24038,
19362,
285,
1227,
390,
1781,
48154,
275,
1635,
281,
253,
7312,
29952,
273,
25033,
285,
5536,
9313,
428,
13949,
2826,
964,
2053,
403,
954,
1846,
1309,
253,
7203,
2607,
342,
247,
6561,
5241,
1309,
253,
16275,
2607,
964,
2053,
33387,
671,
3324,
253,
2495,
273,
34887,
265,
964,
4928,
187,
426,
426,
36946,
426,
426,
4928,
187,
15643,
327,
1157,
253,
6982,
32945,
10260,
2220,
253,
8087,
29488,
275,
253,
2170,
964,
380,
2846,
369,
253,
6253,
275,
18531,
1475,
253,
1265,
273,
253,
1384,
394,
5331,
1157,
342,
2620,
2201,
8087,
3104,
285,
7127,
18784,
3551,
275,
285,
562,
5312,
964,
380,
2846,
686,
84,
6982,
417,
760,
32945,
327,
253,
29418,
533,
253,
10229,
1157,
824,
347,
30578,
285,
17649,
1157,
20870,
327,
731,
964,
2726,
841,
8087,
1214,
14,
33,
1754,
17057,
1157,
253,
2846,
369,
247,
1270,
5054,
1612,
275,
253,
1375,
285,
2919,
432,
670,
32789,
949,
17437,
964,
11474,
697,
6982,
28837,
342,
253,
10343,
273,
253,
8087,
287,
6748,
4491,
275,
253,
13918,
84,
1157,
253,
2846,
556,
12956,
1157,
4886,
432,
247,
8127,
8087,
1214,
14,
33,
1754,
6982,
281,
247,
625,
7940,
1245,
581,
1157,
342,
11723,
1157,
4668,
1157,
285,
10264,
19693,
253,
954,
952,
964,
2490,
23243,
342,
3905,
438,
15182,
1079,
3928,
285,
253,
2846,
273,
38502,
1157,
7612,
31517,
310,
5608,
407,
253,
5791,
18531,
10518,
9753,
11294,
1157,
534,
369,
4447,
275,
8441,
407,
247,
1387,
273,
2136,
7038,
432,
253,
2170,
964,
3900,
347,
273,
4162,
4267,
1157,
253,
2846,
686,
84,
21731,
5299,
3490,
369,
760,
1458,
1214,
13,
33,
30642,
952,
1157,
627,
310,
247,
3072,
273,
26972,
1214,
13,
33,
22908,
275,
247,
5329,
1214,
14,
33,
13915,
313,
8187,
10771,
2387,
9941,
285,
44947,
1214,
13,
33,
6783,
275,
247,
7251,
1214,
14,
33,
13915,
313,
12446,
10771,
2387,
9941,
1157,
273,
534,
12131,
1214,
13,
33,
12891,
285,
27812,
1214,
13,
33,
1052,
952,
2975,
403,
275,
253,
5299,
3490,
964,
380,
2846,
3021,
11029,
347,
247,
14713,
273,
8410,
1157,
10567,
1157,
1786,
1557,
1157,
285,
4466,
4712,
964,
16244,
90,
2558,
273,
3905,
438,
15182,
1079,
3928,
686,
84,
5820,
28932,
275,
253,
9635,
1223,
5091,
2462,
3153,
1561,
5329,
6574,
964,
2490,
496,
4162,
4267,
1157,
627,
497,
721,
1214,
13,
33,
22146,
952,
7091,
275,
253,
11723,
1673,
275,
3905,
438,
15182,
1079,
3928,
964,
31933,
8896,
310,
253,
6253,
11723,
6003,
275,
253,
2919,
1157,
19693,
374,
1214,
13,
33,
43385,
952,
1157,
3560,
407,
5791,
18531,
2418,
8896,
342,
337,
1214,
13,
33,
6783,
285,
13051,
8896,
342,
337,
1214,
13,
33,
34581,
964
] |
the next morning. Engineers were brought forward, as was a bulldozer, and the gap was bridged. Amidst heavy fighting, the Australians forced their way across the creek. By the time that the position had been taken in the afternoon and the infantry had advanced to the line of exploitation 400 yd ( 370 m ) beyond the creek, 37 Japanese had been killed for the loss of seven Australians killed and 19 wounded. After this, the Australians continued their advance towards Sindou Creek, which was a further 1 mi ( 1 @.@ 6 km ) to the southeast. In response, the Japanese launched a number of determined counterattacks over the course of the following week, although these were turned back. During this time, the Australians sent a number of patrols out in front of their forward elements, one of which managed to slip through the Japanese defensive positions either side of the Buin Road and carried out a reconnaissance of the Hongorai River about 1 @,@ 000 yd ( 910 m ) south of the main crossing. Further patrols were carried out, as well as a number of ambushes, before the advance was resumed on 26 April.
Resuming their advance, the Australians were supported by three squadrons of Corsairs from the Royal New Zealand Air Force — Nos. 14, 22 and 26 Squadrons — which bombed and strafed the ground in front of the advancing infantry, as well as a creeping barrage of artillery and mortar fire. With such strong support the Japanese offered little resistance and over the course of two days the 24th Infantry Battalion covered almost a third of the distance to the Hongorai, for just one man wounded. Further progress was made over the next week, but on 4 May the advance was slowed when they encountered a roadblock defended by a field gun along with a machine gun, mines and other improvised explosive devices. After this, the 15th Brigade's engineer support were called upon to regularly carry out route clearance and proving operations as the Japanese became increasingly desperate to destroy the Australian armour, to the extent that they were prepared to sacrifice an artillery piece in order to lure the Australian tanks into a trap where they could be destroyed by mines. The Japanese began to adapt their tactics in other ways also. To negate the effectiveness of the Australian tanks, the Japanese began to position themselves off the roads, forcing the infantry to fight without their armoured support. Additionally, the Japanese began to concentrate their artillery with increasing accuracy upon the advancing infantry, which they kept under constant observation and fire.
Meanwhile, the previous day, 3 May, the 57th / 60th Infantry Battalion had begun operating along the parallel Commando Road to the north. Here they had a number of encounters and suffered casualties due to their inexperience in patrolling, which resulted in them being ambushed. They also kept up a steady advance and eventually beat the main force in reaching, and crossing the river, arriving there on 6 May. On 5 May, along the Buin Road, the 24th Infantry Battalion had pressed forward again. Advancing with a tank troop in support, they came up against a concealed field gun defended by approximately 100 Japanese. After the lead Matilda's machine gun jammed, the field gun opened fire on it, damaging it and wounding its crew. Moving around the stricken tank, the second Matilda, armed with a howitzer, opened fire and destroyed the field gun before sweeping the Japanese defenders from the position. That night, the Japanese artillery opened up on the Australian position with a heavy barrage, and the following morning put in a company @-@ sized counter @-@ attack. The fighting lasted for over two @-@ and @-@ a @-@ half hours, but when it was over the Australians remained in possession of the position having repulsed the attack. In doing so, they suffered one killed and nine wounded, while the attacking Japanese had suffered heavily, losing 58 men killed. It was the biggest loss since the action at Slater's Knoll and it spelt the end of their attempt to defend the Hongorai.
After this, the Australians were able to resume their advance to the river on 7 May without further opposition. The previous three weeks in which they had advanced 7 @,@ 000 yd ( 6 @,@ 400 m ) to the Hongorai had been costly for them, however, with the Australian 24th Infantry Battalion losing 25 killed and 95 wounded. Against this, the Japanese had lost at least 169 killed.
= = = Crossing the Hongorai = = =
Following the advance to the Hongorai, there was a pause of about a week as the Australians had to wait for roads to be improved and supplies to be brought up, before attempting to cross the Hongorai en masse. This allowed Savige to re @-@ evaluate the situation and to issue new orders for the advance towards the Hari and Mivo Rivers. As they waited for the advance to resume, the Australians carried out reconnaissance patrols deep into Japanese held territory and there were a couple of significant engagements during this time. As a part of these, the 24th Infantry Battalion sent a company across the Hongorai and subsequently located a strong Japanese position on a feature that became known as Egan's Ridge, which, due to its location, commanded the main Australian axis of advance.
The main crossing was planned for 20 May, with the 58th / 59th Infantry Battalion on the right tasked to cut the Buin Road and the Aitara Track to the east of the river, while on the left the 57th / 60th Infantry Battalion would divert the attention of the Japanese off the 24th Infantry Battalion which would make the main frontal assault from the centre of the Australian line, crossing at the Pororei ford, advancing straight up the Buin Road. Preliminary moves began before this, and on 15 May a platoon from the 24th Infantry Battalion along with two tanks attempted to carry out an attack on Egan's Ridge. After one of the tanks was held up and knocked out by a Japanese field gun, they were forced to withdraw. Meanwhile, the RNZAF Corsair squadrons — now reinforced by No. 16 Squadron — began an eight @-@ day aerial campaign, attacking along the length of the Buin and Commando Roads. During this period, the New Zealanders flew 381 sorties, while artillery and mortars fired " thousands of rounds ".
Two days later, on 17 May, the 57th / 60th Infantry Battalion began its diversionary move on the left flank, crossing the Hongorai inland and advancing along the Commando Road with 32 Corsairs and two batteries of artillery in support. Crossing 500 yd ( 460 m ) north of the ford, the centre company carried out an attack along the far bank of the river without its armoured support which had been unable to negotiate the crossing. Nevertheless, shortly before noon they had secured the crossing and began to fan out, carrying out further flanking moves before establishing a firm base to receive supplies and from where it began patrolling operations on 20 May.
In the centre, the main attack along the Buin Road began at 08 : 30 on 20 May after 20 minutes of strafing by New Zealand Corsairs had prepared the ground. Advancing under a creeping barrage, and with mortar and machine gun support, the 24th Infantry Battalion moved forward with three companies up front and one held back in reserve, along with two troops of Matilda tanks. Mostly the forward companies reached their objectives, but one of the companies was halted just short of their objective and was forced to dig @-@ in overnight after coming under heavy small arms and artillery fire and losing four killed and five wounded. The attack was resumed the following day, and the Australians were able to advance to the Pororei ford ; however, they were prevented from moving any further as the Japanese were still concentrated in large numbers further to the west where an Australian patrol encountered 70 Japanese and were forced to go to ground. Finally, a company from the 24th Infantry Battalion was able to move on to the high ground on Egan's Ridge, which they found to be heavily mined and booby trapped. Engineers and assault pioneers were called up to clear the feature.
On the right flank, the 58th / 59th Infantry Battalion carried out a wide flanking move along a track that had been carved out of the west bank of the Hongorai by bulldozer. Beginning their move two days earlier, a number of patrols had had contacts with the Japanese. Meanwhile, using tractors to drag the tanks through the mud, the Australian armour had crossed the river also and by 16 : 00 on 20 May the battalion had managed to establish itself in an assembly area to the east of the river, unbeknown to the Japanese. The following day, the battalion left the line of departure and began to advance on its primary objective, which it reached in the early afternoon despite being held up while the tanks attempted to affect a creek crossing, and further delayed by stiff resistance. Later, after one of the battalion's patrols came under heavy fire, the tanks moved up and attacked a Japanese gun position which the defenders quickly abandoned, leaving behind a 70 mm gun and a large amount of ammunition.
By 22 May, although there were still a number of Japanese in the area which continued to harass and ambush their line of communications, most of the Australian objectives had been secured and mopping up operations began. The last remaining defensive location before the Hongorai was Egan's Ridge, where the Japanese were sheltering in tunnels. A heavy aerial and artillery bombardment devastated the position and forced them to abandon the ridge. It was subsequently occupied by a company of Australian infantry. Within a short period of time the Buin Road was subsequently opened, providing the Australians with the means with which to bring up supplies for the next stage | wikitext_103 | [
253,
1735,
4131,
964,
37349,
497,
3982,
3579,
1157,
347,
369,
247,
5152,
392,
6002,
254,
1157,
285,
253,
8037,
369,
18138,
2400,
964,
3052,
301,
296,
5536,
8615,
1157,
253,
45373,
6726,
616,
1039,
2439,
253,
38879,
964,
2896,
253,
673,
326,
253,
1899,
574,
644,
2668,
275,
253,
9055,
285,
253,
32468,
574,
7269,
281,
253,
1386,
273,
30211,
9166,
340,
69,
313,
32002,
278,
2387,
4457,
253,
38879,
1157,
5345,
6692,
574,
644,
5339,
323,
253,
2957,
273,
5093,
45373,
5339,
285,
655,
16545,
964,
2732,
436,
1157,
253,
45373,
4821,
616,
7170,
4404,
322,
527,
276,
16611,
1157,
534,
369,
247,
2007,
337,
3641,
313,
337,
1214,
15,
33,
721,
10771,
2387,
281,
253,
32253,
964,
496,
2380,
1157,
253,
6692,
10098,
247,
1180,
273,
3413,
4828,
1595,
7305,
689,
253,
2282,
273,
253,
1563,
2129,
1157,
3738,
841,
497,
3531,
896,
964,
6408,
436,
673,
1157,
253,
45373,
2197,
247,
1180,
273,
21820,
84,
562,
275,
2914,
273,
616,
3579,
3603,
1157,
581,
273,
534,
7303,
281,
15813,
949,
253,
6692,
14397,
6887,
2057,
1930,
273,
253,
11262,
249,
8669,
285,
4824,
562,
247,
8756,
34056,
273,
253,
14025,
263,
2284,
7121,
670,
337,
1214,
13,
33,
20181,
340,
69,
313,
898,
740,
278,
2387,
6420,
273,
253,
2022,
14270,
964,
3840,
21820,
84,
497,
4824,
562,
1157,
347,
973,
347,
247,
1180,
273,
6861,
17379,
1157,
1078,
253,
7170,
369,
30974,
327,
3436,
4162,
964,
2490,
2213,
14583,
616,
7170,
1157,
253,
45373,
497,
4516,
407,
1264,
13487,
9036,
273,
49480,
3514,
432,
253,
10043,
1457,
12123,
6037,
10627,
1905,
18407,
15,
1638,
1157,
3307,
285,
3436,
26436,
9036,
1905,
534,
13962,
3026,
285,
3405,
22210,
253,
3216,
275,
2914,
273,
253,
26441,
32468,
1157,
347,
973,
347,
247,
49801,
2534,
14372,
273,
29923,
285,
39247,
3289,
964,
2726,
824,
2266,
1329,
253,
6692,
5907,
1652,
5052,
285,
689,
253,
2282,
273,
767,
1897,
253,
2164,
394,
33166,
35843,
6107,
2761,
247,
2626,
273,
253,
4181,
281,
253,
14025,
263,
2284,
1157,
323,
816,
581,
637,
16545,
964,
3840,
4780,
369,
1160,
689,
253,
1735,
2129,
1157,
533,
327,
577,
2552,
253,
7170,
369,
28837,
672,
597,
14494,
247,
3971,
6172,
25860,
407,
247,
1673,
5654,
2112,
342,
247,
5145,
5654,
1157,
27304,
285,
643,
1965,
13337,
26660,
4095,
964,
2732,
436,
1157,
253,
1458,
394,
34412,
686,
84,
16518,
1329,
497,
1925,
2220,
281,
11719,
4459,
562,
7622,
17998,
285,
18597,
5871,
347,
253,
6692,
3395,
9592,
18439,
281,
6909,
253,
9943,
44878,
1157,
281,
253,
6070,
326,
597,
497,
5480,
281,
17789,
271,
29923,
5313,
275,
1340,
281,
42620,
253,
9943,
20470,
715,
247,
15464,
835,
597,
812,
320,
11069,
407,
27304,
964,
380,
6692,
3407,
281,
5223,
616,
21041,
275,
643,
4088,
671,
964,
1916,
2297,
366,
253,
12510,
273,
253,
9943,
20470,
1157,
253,
6692,
3407,
281,
1899,
3746,
745,
253,
13939,
1157,
17190,
253,
32468,
281,
3819,
1293,
616,
4430,
9698,
1329,
964,
9157,
1157,
253,
6692,
3407,
281,
21364,
616,
29923,
342,
3629,
7200,
2220,
253,
26441,
32468,
1157,
534,
597,
4934,
762,
3638,
8310,
285,
3289,
964,
2490,
16257,
1157,
253,
2045,
1388,
1157,
495,
2552,
1157,
253,
8988,
394,
1227,
3925,
394,
33166,
35843,
574,
13207,
6498,
2112,
253,
7529,
11293,
6575,
8669,
281,
253,
6146,
964,
3856,
597,
574,
247,
1180,
273,
25767,
285,
9606,
32853,
1955,
281,
616,
275,
38835,
275,
869,
19891,
1157,
534,
7369,
275,
731,
1146,
6861,
6093,
964,
1583,
671,
4934,
598,
247,
11792,
7170,
285,
6524,
7171,
253,
2022,
3490,
275,
10922,
1157,
285,
14270,
253,
8281,
1157,
20948,
627,
327,
721,
2552,
964,
1623,
608,
2552,
1157,
2112,
253,
11262,
249,
8669,
1157,
253,
2164,
394,
33166,
35843,
574,
13661,
3579,
969,
964,
13536,
6816,
342,
247,
11100,
34883,
275,
1329,
1157,
597,
2210,
598,
1411,
247,
27715,
1673,
5654,
25860,
407,
5512,
2233,
6692,
964,
2732,
253,
1421,
6397,
34223,
686,
84,
5145,
5654,
480,
15416,
1157,
253,
1673,
5654,
5485,
3289,
327,
352,
1157,
24038,
352,
285,
10785,
272,
697,
10402,
964,
39207,
1475,
253,
34614,
3612,
11100,
1157,
253,
1273,
6397,
34223,
1157,
12360,
342,
247,
849,
13412,
1157,
5485,
3289,
285,
11069,
253,
1673,
5654,
1078,
28110,
253,
6692,
31342,
432,
253,
1899,
964,
2064,
2360,
1157,
253,
6692,
29923,
5485,
598,
327,
253,
9943,
1899,
342,
247,
5536,
2534,
14372,
1157,
285,
253,
1563,
4131,
1691,
275,
247,
2567,
1214,
14,
33,
25180,
4828,
1214,
14,
33,
2983,
964,
380,
8615,
20578,
323,
689,
767,
1214,
14,
33,
285,
1214,
14,
33,
247,
1214,
14,
33,
2716,
3038,
1157,
533,
672,
352,
369,
689,
253,
45373,
6376,
275,
10023,
273,
253,
1899,
1907,
1234,
7228,
264,
253,
2983,
964,
496,
2509,
594,
1157,
597,
9606,
581,
5339,
285,
7457,
16545,
1157,
1223,
253,
20362,
6692,
574,
9606,
11306,
1157,
10305,
9135,
1821,
5339,
964,
733,
369,
253,
5962,
2957,
1580,
253,
2250,
387,
7335,
727,
686,
84,
10381,
2555,
285,
352,
653,
2585,
253,
990,
273,
616,
3177,
281,
2342,
253,
14025,
263,
2284,
964,
2490,
2732,
436,
1157,
253,
45373,
497,
2104,
281,
21058,
616,
7170,
281,
253,
8281,
327,
818,
2552,
1293,
2007,
10266,
964,
380,
2045,
1264,
3618,
275,
534,
597,
574,
7269,
818,
1214,
13,
33,
20181,
340,
69,
313,
721,
1214,
13,
33,
9166,
278,
2387,
281,
253,
14025,
263,
2284,
574,
644,
19983,
323,
731,
1157,
2299,
1157,
342,
253,
9943,
2164,
394,
33166,
35843,
10305,
2030,
5339,
285,
5325,
16545,
964,
24161,
436,
1157,
253,
6692,
574,
3663,
387,
1878,
23504,
5339,
964,
4928,
187,
426,
426,
426,
10547,
272,
253,
14025,
263,
2284,
426,
426,
426,
4928,
187,
11977,
253,
7170,
281,
253,
14025,
263,
2284,
1157,
627,
369,
247,
19309,
273,
670,
247,
2129,
347,
253,
45373,
574,
281,
3343,
323,
13939,
281,
320,
5520,
285,
13191,
281,
320,
3982,
598,
1157,
1078,
13756,
281,
2831,
253,
14025,
263,
2284,
546,
9425,
339,
964,
831,
4136,
12933,
9236,
281,
294,
1214,
14,
33,
7472,
253,
4112,
285,
281,
2523,
747,
7367,
323,
253,
7170,
4404,
253,
388,
1792,
285,
353,
6073,
28160,
964,
1284,
597,
13308,
323,
253,
7170,
281,
21058,
1157,
253,
45373,
4824,
562,
8756,
34056,
21820,
84,
3676,
715,
6692,
2918,
12785,
285,
627,
497,
247,
4564,
273,
1534,
2209,
356,
3658,
1309,
436,
673,
964,
1284,
247,
629,
273,
841,
1157,
253,
2164,
394,
33166,
35843,
2197,
247,
2567,
2439,
253,
14025,
263,
2284,
285,
9674,
4441,
247,
2266,
6692,
1899,
327,
247,
4735,
326,
3395,
1929,
347,
444,
1247,
686,
84,
28188,
1157,
534,
1157,
1955,
281,
697,
4328,
1157,
26814,
253,
2022,
9943,
7844,
273,
7170,
964,
2490,
380,
2022,
14270,
369,
9355,
323,
1384,
2552,
1157,
342,
253,
9135,
394,
1227,
8978,
394,
33166,
35843,
327,
253,
987,
42603,
281,
2624,
253,
11262,
249,
8669,
285,
253,
329,
262,
4595,
31633,
281,
253,
9268,
273,
253,
8281,
1157,
1223,
327,
253,
1669,
253,
8988,
394,
1227,
3925,
394,
33166,
35843,
651,
37573,
253,
4116,
273,
253,
6692,
745,
253,
2164,
394,
33166,
35843,
534,
651,
1056,
253,
2022,
24459,
9222,
432,
253,
9145,
273,
253,
9943,
1386,
1157,
14270,
387,
253,
20510,
410,
74,
323,
69,
1157,
26441,
4951,
598,
253,
11262,
249,
8669,
964,
46296,
9727,
3407,
1078,
436,
1157,
285,
327,
1458,
2552,
247,
26588,
3508,
432,
253,
2164,
394,
33166,
35843,
2112,
342,
767,
20470,
9919,
281,
4459,
562,
271,
2983,
327,
444,
1247,
686,
84,
28188,
964,
2732,
581,
273,
253,
20470,
369,
2918,
598,
285,
19336,
562,
407,
247,
6692,
1673,
5654,
1157,
597,
497,
6726,
281,
10687,
964,
16257,
1157,
253,
27840,
59,
9006,
49480,
1094,
13487,
9036,
1905,
1024,
28809,
407,
1621,
15,
1668,
36365,
1905,
3407,
271,
4314,
1214,
14,
33,
1388,
31319,
4544,
1157,
20362,
2112,
253,
2978,
273,
253,
11262,
249,
285,
11293,
6575,
8669,
84,
964,
6408,
436,
2180,
1157,
253,
1457,
12123,
398,
18811,
41206,
3686,
447,
1157,
1223,
29923,
285,
4920,
1032,
11226,
346,
6763,
273,
16334,
346,
964,
2490,
5761,
1897,
1996,
1157,
327,
1722,
2552,
1157,
253,
8988,
394,
1227,
3925,
394,
33166,
35843,
3407,
697,
41567,
552,
2118,
327,
253,
1669,
21499,
1157,
14270,
253,
14025,
263,
2284,
40835,
285,
26441,
2112,
253,
11293,
6575,
8669,
342,
4567,
49480,
3514,
285,
767,
19978,
273,
29923,
275,
1329,
964,
10547,
272,
6783,
340,
69,
313,
34678,
278,
2387,
6146,
273,
253,
323,
69,
1157,
253,
9145,
2567,
4824,
562,
271,
2983,
2112,
253,
2080,
4310,
273,
253,
8281,
1293,
697,
4430,
9698,
1329,
534,
574,
644,
7591,
281,
26339,
253,
14270,
964,
12257,
1157,
13515,
1078,
23483,
597,
574,
14049,
253,
14270,
285,
3407,
281,
7989,
562,
1157,
8785,
562,
2007,
47152,
9727,
1078,
14631,
247,
5882,
2613,
281,
4763,
13191,
285,
432,
835,
352,
3407,
869,
19891,
5871,
327,
1384,
2552,
964,
2490,
496,
253,
9145,
1157,
253,
2022,
2983,
2112,
253,
11262,
249,
8669,
3407,
387,
16331,
1163,
1884,
327,
1384,
2552,
846,
1384,
2909,
273,
3405,
41822,
407,
1457,
12123,
49480,
3514,
574,
5480,
253,
3216,
964,
13536,
6816,
762,
247,
49801,
2534,
14372,
1157,
285,
342,
39247,
285,
5145,
5654,
1329,
1157,
253,
2164,
394,
33166,
35843,
4395,
3579,
342,
1264,
4413,
598,
2914,
285,
581,
2918,
896,
275,
15917,
1157,
2112,
342,
767,
10824,
273,
6397,
34223,
20470,
964,
5595,
314,
253,
3579,
4413,
4925,
616,
16566,
1157,
533,
581,
273,
253,
4413,
369,
37350,
816,
2159,
273,
616,
8103,
285,
369,
6726,
281,
2836,
1214,
14,
33,
275,
13463,
846,
3551,
762,
5536,
1355,
6174,
285,
29923,
3289,
285,
10305,
1740,
5339,
285,
2620,
16545,
964,
380,
2983,
369,
30974,
253,
1563,
1388,
1157,
285,
253,
45373,
497,
2104,
281,
7170,
281,
253,
20510,
410,
74,
323,
69,
3706,
2299,
1157,
597,
497,
14415,
432,
4886,
667,
2007,
347,
253,
6692,
497,
1335,
16761,
275,
1781,
3904,
2007,
281,
253,
8935,
835,
271,
9943,
21820,
14494,
5571,
6692,
285,
497,
6726,
281,
564,
281,
3216,
964,
6610,
1157,
247,
2567,
432,
253,
2164,
394,
33166,
35843,
369,
2104,
281,
2118,
327,
281,
253,
1029,
3216,
327,
444,
1247,
686,
84,
28188,
1157,
534,
597,
1119,
281,
320,
11306,
278,
967,
285,
1766,
33664,
18195,
964,
37349,
285,
9222,
22223,
398,
497,
1925,
598,
281,
2590,
253,
4735,
964,
2490,
1623,
253,
987,
21499,
1157,
253,
9135,
394,
1227,
8978,
394,
33166,
35843,
4824,
562,
247,
4618,
47152,
2118,
2112,
247,
3540,
326,
574,
644,
27251,
562,
273,
253,
8935,
4310,
273,
253,
14025,
263,
2284,
407,
5152,
392,
6002,
254,
964,
43312,
616,
2118,
767,
1897,
4321,
1157,
247,
1180,
273,
21820,
84,
574,
574,
12716,
342,
253,
6692,
964,
16257,
1157,
970,
10649,
641,
281,
9310,
253,
20470,
949,
253,
16059,
1157,
253,
9943,
44878,
574,
13405,
253,
8281,
671,
285,
407,
1668,
1163,
7449,
327,
1384,
2552,
253,
40716,
574,
7303,
281,
5100,
3139,
275,
271,
7796,
2170,
281,
253,
9268,
273,
253,
8281,
1157,
46908,
4304,
281,
253,
6692,
964,
380,
1563,
1388,
1157,
253,
40716,
1669,
253,
1386,
273,
16018,
285,
3407,
281,
7170,
327,
697,
3625,
8103,
1157,
534,
352,
4925,
275,
253,
2393,
9055,
5747,
1146,
2918,
598,
1223,
253,
20470,
9919,
281,
2818,
247,
38879,
14270,
1157,
285,
2007,
13444,
407,
13827,
5052,
964,
14772,
1157,
846,
581,
273,
253,
40716,
686,
84,
21820,
84,
2210,
762,
5536,
3289,
1157,
253,
20470,
4395,
598,
285,
13964,
247,
6692,
5654,
1899,
534,
253,
31342,
4541,
13966,
1157,
6108,
3212,
247,
5571,
5823,
5654,
285,
247,
1781,
2408,
273,
28630,
964,
2490,
2896,
3307,
2552,
1157,
3738,
627,
497,
1335,
247,
1180,
273,
6692,
275,
253,
2170,
534,
4821,
281,
15598,
285,
6861,
2345,
616,
1386,
273,
10924,
1157,
954,
273,
253,
9943,
16566,
574,
644,
14049,
285,
5497,
2784,
598,
5871,
3407,
964,
380,
1390,
5780,
14397,
4328,
1078,
253,
14025,
263,
2284,
369,
444,
1247,
686,
84,
28188,
1157,
835,
253,
6692,
497,
17824,
272,
275,
37285,
964,
329,
5536,
31319,
285,
29923,
47710,
420,
43287,
253,
1899,
285,
6726,
731,
281,
9488,
253,
27563,
964,
733,
369,
9674,
13598,
407,
247,
2567,
273,
9943,
32468,
964,
15092,
247,
2159,
2180,
273,
673,
253,
11262,
249,
8669,
369,
9674,
5485,
1157,
5277,
253,
45373,
342,
253,
2097,
342,
534,
281,
3324,
598,
13191,
323,
253,
1735,
3924
] |
ian Special Air Service soldiers and senior officers from other military units. Smith and several government ministers also attended, including P K van der Byl, the co @-@ Minister of Foreign Affairs.
Dean John de Costa gave a sermon damning what he described as a " deafening silence " from overseas. " Nobody who holds sacred the dignity of human life can be anything but sickened at the events attending the Viscount, " he said. " But are we deafened with the voice of protest from nations who call themselves civilised? We are not! Like men in the story of the Good Samaritan, they pass by on the other side... The ghastliness of this ill @-@ fated flight from Kariba will be burnt upon our memories for years to come. For others, far from our borders, it is an intellectual matter, not one which affects them deeply. Here is the tragedy! "
= = = Smith – Nkomo talks halted = = =
The talks between Smith and the ZAPU leader that had been progressing so promisingly were immediately halted by Salisbury. Smith himself called Nkomo a " monster ". Cilliers comments that the ending of the Smith – Nkomo talks at this time was " potentially the most serious result of the Viscount massacre ", as the talks had been progressing well before the incident. He surmises that an agreement between the two " at this critical stage " might have helped the transitional Rhodesian government to secure international recognition.
On 10 September, the Prime Minister announced to the nation that certain areas of the country would be placed under a variation of martial law, which he said would be applied in particular regions as and when needed. He declared Rhodesia's intent to " liquidate the internal workings of those organisations associated with terrorism ", and warned neighbouring countries to prepare for " any defensive strikes we might undertake " against guerrilla bases in their respective territories. He claimed that the war had escalated because Britain and the United States were supporting the Patriotic Front. William Irvine, the co @-@ Minister of Transport, warned the guerrillas that Rhodesia " w [ ould ] not let these innocents go unavenged ".
= = Rhodesia strikes back = =
= = = Operation Snoopy ; Rhodesia hits New Chimoio = = =
Because ZAPU and ZIPRA were based in Zambia, many Rhodesians clamoured for a massive retaliatory strike against terrorist targets in that country, but the first external target hit by the security forces following the Viscount shootdown was the prominent cluster of ZANLA bases around Chimoio in Mozambique. The Rhodesian military had struck these bases extensively in November 1977 during Operation Dingo, destroying much of the ZANLA presence there, but the insurgents had since built a complex called " New Chimoio ", slightly to the east ; the new camps were distributed across a far larger area than the originals. In a combined airborne @-@ ground assault called Operation Snoopy, the Rhodesian Air Force, Rhodesian Light Infantry and Special Air Service wiped out much of New Chimoio on 20 September 1978. Mozambique sent armour to ZANLA's aid in the form of nine Soviet @-@ made T @-@ 54 tanks and four Russian BTR @-@ 152 armoured personnel carriers, but the former were routed and one of the latter destroyed by the Rhodesian security forces. According to Rhodesian figures, there were " several hundred " guerrillas killed, while the security forces lost only two soldiers, one of whom was accidentally killed by a friendly air strike.
= = = Operation Gatling ; the " Green Leader " raid = = =
Rhodesia then attacked ZIPRA's bases in Zambia, in what Group Captain Peter Petter @-@ Bowyer later described as " payback time " for Flight 825. Operation Gatling, launched on 19 October 1978, was another joint @-@ force operation between the Air Force and the Army, which contributed Special Air Service and Rhodesian Light Infantry paratroopers. Gatling's primary target, just 16 kilometres ( 10 miles ) north @-@ east of central Lusaka, was the formerly white @-@ owned Westlands Farm, which had been transformed into ZIPRA's main headquarters and training base under the name " Freedom Camp ". ZIPRA presumed that Rhodesia would never dare to attack a site so close to Lusaka. About 4 @,@ 000 guerrillas underwent training at Freedom Camp, with senior ZIPRA staff also on site. The Rhodesian operation's other targets were Chikumbi, 19 kilometres ( 12 miles ) north of Lusaka, and Mkushi Camp ; all three were to be attacked more or less simultaneously in a coordinated sweep across Zambia. Assaulting targets deep inside Zambia was a first for the Rhodesian forces ; previously only guerrillas near the border had been attacked.
Led by Squadron Leader Chris Dixon, who identified himself to Lusaka Airport tower as " Green Leader ", a Rhodesian Air Force group flew into Zambia at very low altitudes ( thereby avoiding Zambian radar ) and took control of the country's airspace for about a quarter of an hour during the initial assault on Westlands Farm, informing Lusaka tower that the attack was against " Rhodesian dissidents, and not against Zambia ", and that Rhodesian Hawker Hunters were circling the Zambian airfields under orders to shoot down any fighter that attempted to take off. The Zambians obeyed all of Green Leader's instructions, made no attempt to resist and temporarily halted civil air traffic. Using Rufunsa airstrip in eastern Zambia as a forward base, the Rhodesian military suffered only minor casualties during the three @-@ day operation, and afterwards claimed to have killed over 1 @,@ 500 ZIPRA personnel, as well as some Cuban instructors.
Historians Paul Moorcraft and Peter McLaughlin write that this exaggerated considerably the actual number of guerrillas killed, as most of Nkomo's army, then numbering about 10 @,@ 000 fighters, had not been touched. On the other hand, unarmed refugees often camped in or around insurgent positions, and hundreds of these had been killed in the Rhodesian raid. Moorcraft and McLaughlin comment that for the Rhodesian airmen, it would have been " impossible to distinguish innocent refugees from young ZIPRA recruits. " Sibanda describes Freedom Camp as " a refugee camp for boys ", and says " 351 boys and girls " were killed. He claims that the Red Cross and the UN Refugee Agency " confirmed ZAPU's claim that Smith's forces struck at defenseless, civilian trainees ".
= = Aftermath = =
The Rhodesian attacks on ZANLA and ZIPRA bases did much to restore white morale following the Viscount incident, though they had not actually made much impact on the respective guerrilla campaigns. Nkomo and the Zambian President Kenneth Kaunda all the same requested further military aid and better weapons from the Soviets and the British respectively. Martial law was quickly extended across Rhodesia's rural areas, and covered three @-@ quarters of the country by the end of 1978. Air Rhodesia, meanwhile, began developing anti @-@ Strela shielding for its Viscounts. Before this work was completed, ZIPRA shot down a second Viscount, Air Rhodesia Flight 827, on 12 February 1979. This time there were no survivors.
Following the second shootdown, Air Rhodesia created a system whereby the underside of the Viscounts would be coated with low @-@ radiation paint, with the exhaust pipes concurrently shrouded. According to tests conducted by the Air Force, a Viscount so treated could not be detected by the Strela's targeting system once it was over 2 @,@ 000 feet ( 610 m ). There were no further Viscount shootdowns in Rhodesia.
In the elections held the following year under the Internal Settlement terms, boycotted by ZANU and ZAPU, Muzorewa won a majority, and became the first Prime Minister of the reconstituted, majority @-@ ruled state of Zimbabwe Rhodesia on 1 June 1979. This new order failed to win international acceptance, however, and in December 1979 the Lancaster House Agreement was agreed in London by Zimbabwe Rhodesia, the UK government and the Patriotic Front, returning the country to its former colonial status. The UK government suspended the constitution and took direct control for an interim period. Fresh elections were won by Mugabe, who took power in April 1980, concurrently with the country's recognised independence as Zimbabwe.
= = Legacy and memorial = =
In modern Zimbabwe, it is not the Viscount shootdowns but rather the retributory Rhodesian strikes against nationalist guerrilla camps that endure predominantly in the cultural memory. State media in Zimbabwe, prominently the Herald newspaper, often claim that Rhodesian forces indiscriminately and deliberately slaughtered thousands of helpless refugees during such operations. ZIPRA's downing of civilian planes is meanwhile portrayed as a legitimate act of war on the grounds that the guerrillas might have believed them to have military personnel or equipment on board. The massacre of surviving Flight 825 passengers at the crash site is often omitted or attributed to forces other than ZIPRA ; in his 1984 memoirs Nkomo repeated his claim that ZIPRA fighters had helped the survivors, and wrote simply that " I truly have no idea how the ten died ".
A monument to those killed in the Rhodesian attack on | wikitext_103 | [
757,
10396,
6037,
6631,
9647,
285,
8474,
6251,
432,
643,
4668,
5085,
964,
6212,
285,
2067,
2208,
23885,
671,
11612,
1157,
1690,
367,
611,
3889,
1784,
378,
1190,
1157,
253,
820,
1214,
14,
33,
8308,
273,
15839,
17528,
964,
2490,
19172,
2516,
372,
26002,
3534,
247,
46040,
2687,
920,
752,
344,
2529,
347,
247,
346,
26057,
2980,
10837,
346,
432,
21344,
964,
346,
27138,
665,
6556,
20075,
253,
24027,
273,
1966,
1495,
476,
320,
2712,
533,
8334,
2348,
387,
253,
3394,
16362,
253,
657,
2865,
702,
1157,
346,
344,
753,
964,
346,
1292,
403,
359,
26057,
2348,
342,
253,
4318,
273,
8005,
432,
12390,
665,
1067,
3746,
5079,
1701,
3736,
844,
403,
417,
2195,
6975,
1821,
275,
253,
2926,
273,
253,
7088,
5769,
274,
10157,
1157,
597,
1509,
407,
327,
253,
643,
1930,
3346,
380,
32798,
505,
28399,
273,
436,
2853,
1214,
14,
33,
269,
456,
8630,
432,
12604,
33068,
588,
320,
31806,
2220,
776,
12959,
323,
1107,
281,
1705,
964,
1198,
2571,
1157,
2080,
432,
776,
18275,
1157,
352,
310,
271,
12720,
2647,
1157,
417,
581,
534,
11852,
731,
11617,
964,
3856,
310,
253,
22820,
2195,
346,
4928,
187,
426,
426,
426,
6212,
1108,
427,
76,
19216,
12088,
37350,
426,
426,
426,
4928,
187,
380,
12088,
875,
6212,
285,
253,
1503,
2088,
54,
6657,
326,
574,
644,
49163,
594,
12532,
314,
497,
4745,
37350,
407,
6470,
261,
12473,
964,
6212,
2994,
1925,
427,
76,
19216,
247,
346,
19827,
346,
964,
330,
3370,
398,
5701,
326,
253,
12365,
273,
253,
6212,
1108,
427,
76,
19216,
12088,
387,
436,
673,
369,
346,
7826,
253,
954,
4092,
906,
273,
253,
657,
2865,
702,
36103,
346,
1157,
347,
253,
12088,
574,
644,
49163,
973,
1078,
253,
7119,
964,
754,
919,
78,
3013,
326,
271,
4345,
875,
253,
767,
346,
387,
436,
4619,
3924,
346,
1537,
452,
6518,
253,
42933,
37606,
757,
2208,
281,
7895,
5213,
8981,
964,
2490,
1623,
884,
4397,
1157,
253,
12128,
8308,
6138,
281,
253,
5674,
326,
2176,
3672,
273,
253,
2586,
651,
320,
4845,
762,
247,
7629,
273,
29731,
1569,
1157,
534,
344,
753,
651,
320,
3732,
275,
1798,
4811,
347,
285,
672,
3058,
964,
754,
8884,
37606,
571,
686,
84,
6860,
281,
346,
5558,
366,
253,
4812,
789,
723,
273,
1110,
23617,
2330,
342,
19227,
346,
1157,
285,
14315,
33423,
4343,
281,
10347,
323,
346,
667,
14397,
18200,
359,
1537,
30618,
346,
1411,
47903,
6077,
14395,
275,
616,
9056,
26949,
964,
754,
7558,
326,
253,
2137,
574,
20092,
456,
984,
9643,
285,
253,
1986,
2077,
497,
8109,
253,
21740,
3875,
15808,
964,
7252,
7854,
29735,
1157,
253,
820,
1214,
14,
33,
8308,
273,
26396,
1157,
14315,
253,
47903,
28769,
326,
37606,
571,
346,
259,
544,
258,
29752,
5032,
417,
1339,
841,
11309,
592,
564,
440,
580,
1205,
264,
346,
964,
4928,
187,
426,
426,
37606,
571,
18200,
896,
426,
426,
4928,
19668,
426,
426,
426,
24636,
322,
2369,
1938,
3706,
37606,
571,
12830,
1457,
775,
17622,
900,
426,
426,
426,
4928,
187,
4923,
1503,
2088,
54,
285,
1503,
3123,
5214,
497,
1754,
275,
1503,
1369,
571,
1157,
1142,
37606,
2458,
35219,
9698,
323,
247,
7863,
851,
8952,
2473,
9974,
1411,
17150,
8571,
275,
326,
2586,
1157,
533,
253,
806,
6024,
2303,
4352,
407,
253,
3988,
5621,
1563,
253,
657,
2865,
702,
5310,
3487,
369,
253,
11906,
7368,
273,
1503,
1539,
5696,
14395,
1475,
775,
17622,
900,
275,
24872,
1369,
2271,
964,
380,
37606,
757,
4668,
574,
10903,
841,
14395,
18171,
275,
4596,
14960,
1309,
24636,
399,
25864,
1157,
25473,
1199,
273,
253,
1503,
1539,
5696,
3361,
627,
1157,
533,
253,
36246,
592,
574,
1580,
4270,
247,
2570,
1925,
346,
1457,
775,
17622,
900,
346,
1157,
5777,
281,
253,
9268,
3706,
253,
747,
19509,
497,
5939,
2439,
247,
2080,
4067,
2170,
685,
253,
6510,
932,
964,
496,
247,
5678,
42864,
1214,
14,
33,
3216,
9222,
1925,
24636,
322,
2369,
1938,
1157,
253,
37606,
757,
6037,
10627,
1157,
37606,
757,
10315,
33166,
285,
10396,
6037,
6631,
27150,
562,
1199,
273,
1457,
775,
17622,
900,
327,
1384,
4397,
14304,
964,
24872,
1369,
2271,
2197,
44878,
281,
1503,
1539,
5696,
686,
84,
8596,
275,
253,
830,
273,
7457,
12194,
1214,
14,
33,
1160,
308,
1214,
14,
33,
8255,
20470,
285,
1740,
7247,
378,
3125,
1214,
14,
33,
21786,
4430,
9698,
11570,
15495,
1157,
533,
253,
3438,
497,
50088,
285,
581,
273,
253,
6158,
11069,
407,
253,
37606,
757,
3988,
5621,
964,
4794,
281,
37606,
757,
8442,
1157,
627,
497,
346,
2067,
4289,
346,
47903,
28769,
5339,
1157,
1223,
253,
3988,
5621,
3663,
760,
767,
9647,
1157,
581,
273,
5207,
369,
26187,
5339,
407,
247,
11453,
2329,
9974,
964,
4928,
187,
426,
426,
426,
24636,
443,
255,
1981,
3706,
253,
346,
6115,
23387,
346,
25682,
426,
426,
426,
4928,
187,
37606,
571,
840,
13964,
1503,
3123,
5214,
686,
84,
14395,
275,
1503,
1369,
571,
1157,
275,
752,
5901,
11918,
7993,
8939,
350,
1214,
14,
33,
10427,
7885,
1996,
2529,
347,
346,
2075,
2135,
673,
346,
323,
29726,
854,
1099,
964,
24636,
443,
255,
1981,
1157,
10098,
327,
655,
4437,
14304,
1157,
369,
1529,
6036,
1214,
14,
33,
3490,
4254,
875,
253,
6037,
10627,
285,
253,
8663,
1157,
534,
9945,
10396,
6037,
6631,
285,
37606,
757,
10315,
33166,
1061,
35078,
412,
398,
964,
443,
255,
1981,
686,
84,
3625,
2303,
1157,
816,
1668,
39050,
313,
884,
6574,
2387,
6146,
1214,
14,
33,
9268,
273,
4275,
418,
316,
10573,
1157,
369,
253,
20975,
3168,
1214,
14,
33,
9633,
4255,
6056,
15162,
1157,
534,
574,
644,
13657,
715,
1503,
3123,
5214,
686,
84,
2022,
17929,
285,
3733,
2613,
762,
253,
1416,
346,
20574,
8647,
346,
964,
1503,
3123,
5214,
24874,
326,
37606,
571,
651,
1620,
20141,
281,
2983,
247,
2670,
594,
2810,
281,
418,
316,
10573,
964,
11376,
577,
1214,
13,
33,
20181,
47903,
28769,
13368,
3733,
387,
20574,
8647,
1157,
342,
8474,
1503,
3123,
5214,
4750,
671,
327,
2670,
964,
380,
37606,
757,
4254,
686,
84,
643,
8571,
497,
775,
1479,
3561,
74,
1157,
655,
39050,
313,
1249,
6574,
2387,
6146,
273,
418,
316,
10573,
1157,
285,
353,
76,
34485,
8647,
3706,
512,
1264,
497,
281,
320,
13964,
625,
390,
1679,
10486,
275,
247,
25899,
24516,
2439,
1503,
1369,
571,
964,
2903,
1923,
272,
8571,
3676,
3304,
1503,
1369,
571,
369,
247,
806,
323,
253,
37606,
757,
5621,
3706,
3786,
760,
47903,
28769,
2822,
253,
5680,
574,
644,
13964,
964,
2490,
33227,
407,
36365,
23387,
11007,
39736,
1157,
665,
3636,
2994,
281,
418,
316,
10573,
18328,
15469,
347,
346,
6115,
23387,
346,
1157,
247,
37606,
757,
6037,
10627,
1387,
18811,
715,
1503,
1369,
571,
387,
1077,
1698,
6945,
11434,
313,
7624,
17816,
1503,
1369,
757,
22013,
2387,
285,
2335,
1453,
273,
253,
2586,
686,
84,
2329,
5641,
323,
670,
247,
7150,
273,
271,
4964,
1309,
253,
3302,
9222,
327,
4255,
6056,
15162,
1157,
36689,
418,
316,
10573,
15469,
326,
253,
2983,
369,
1411,
346,
37606,
757,
5408,
9274,
1157,
285,
417,
1411,
1503,
1369,
571,
346,
1157,
285,
326,
37606,
757,
9221,
6426,
12048,
1336,
497,
5947,
36537,
253,
1503,
1369,
757,
2329,
15069,
762,
7367,
281,
5310,
1066,
667,
22161,
326,
9919,
281,
1379,
745,
964,
380,
1503,
1369,
2458,
20090,
264,
512,
273,
6115,
23387,
686,
84,
7997,
1157,
1160,
642,
3177,
281,
11623,
285,
20220,
37350,
5079,
2329,
7137,
964,
6915,
18268,
2337,
6678,
50239,
7417,
275,
14730,
1503,
1369,
571,
347,
247,
3579,
2613,
1157,
253,
37606,
757,
4668,
9606,
760,
5884,
32853,
1309,
253,
1264,
1214,
14,
33,
1388,
4254,
1157,
285,
16906,
7558,
281,
452,
5339,
689,
337,
1214,
13,
33,
6783,
1503,
3123,
5214,
11570,
1157,
347,
973,
347,
690,
33074,
46421,
964,
2490,
13314,
2458,
5171,
44887,
12517,
285,
7993,
29243,
44750,
3630,
326,
436,
36074,
15455,
253,
4588,
1180,
273,
47903,
28769,
5339,
1157,
347,
954,
273,
427,
76,
19216,
686,
84,
8544,
1157,
840,
1180,
272,
670,
884,
1214,
13,
33,
20181,
20998,
1157,
574,
417,
644,
14435,
964,
1623,
253,
643,
1133,
1157,
440,
21201,
19382,
2223,
2986,
264,
275,
390,
1475,
36246,
290,
6887,
1157,
285,
8307,
273,
841,
574,
644,
5339,
275,
253,
37606,
757,
25682,
964,
44887,
12517,
285,
29243,
44750,
4385,
326,
323,
253,
37606,
757,
2329,
3767,
1157,
352,
651,
452,
644,
346,
7479,
281,
12129,
15377,
19382,
432,
2872,
1503,
3123,
5214,
38136,
964,
346,
322,
487,
7447,
8631,
20574,
8647,
347,
346,
247,
29302,
2986,
323,
8290,
346,
1157,
285,
2296,
346,
35710,
8290,
285,
6838,
346,
497,
5339,
964,
754,
3916,
326,
253,
4410,
10547,
285,
253,
7379,
44438,
70,
13677,
346,
5783,
1503,
2088,
54,
686,
84,
1750,
326,
6212,
686,
84,
5621,
10903,
387,
809,
561,
6134,
1157,
21731,
49303,
346,
964,
4928,
187,
426,
426,
2732,
679,
426,
426,
4928,
187,
380,
37606,
757,
8104,
327,
1503,
1539,
5696,
285,
1503,
3123,
5214,
14395,
858,
1199,
281,
15042,
3168,
43812,
1563,
253,
657,
2865,
702,
7119,
1157,
2167,
597,
574,
417,
2686,
1160,
1199,
3486,
327,
253,
9056,
47903,
6077,
18120,
964,
427,
76,
19216,
285,
253,
1503,
1369,
757,
3918,
31270,
15366,
25581,
512,
253,
1072,
9521,
2007,
4668,
8596,
285,
1805,
8914,
432,
253,
10968,
46426,
285,
253,
4782,
2975,
964,
5794,
451,
1569,
369,
4541,
6508,
2439,
37606,
571,
686,
84,
11393,
3672,
1157,
285,
6107,
1264,
1214,
14,
33,
19902,
273,
253,
2586,
407,
253,
990,
273,
14304,
964,
6037,
37606,
571,
1157,
26614,
1157,
3407,
6684,
3270,
1214,
14,
33,
659,
1661,
66,
41435,
323,
697,
657,
2865,
702,
84,
964,
9613,
436,
789,
369,
6312,
1157,
1503,
3123,
5214,
5103,
1066,
247,
1273,
657,
2865,
702,
1157,
6037,
37606,
571,
29726,
854,
1630,
1157,
327,
1249,
5080,
13842,
964,
831,
673,
627,
497,
642,
19404,
964,
2490,
11977,
253,
1273,
5310,
3487,
1157,
6037,
37606,
571,
3562,
247,
985,
17580,
253,
17433,
504,
273,
253,
657,
2865,
702,
84,
651,
320,
19185,
342,
1698,
1214,
14,
33,
7742,
6848,
1157,
342,
253,
9286,
25886,
35046,
49943,
264,
964,
4794,
281,
5216,
5196,
407,
253,
6037,
10627,
1157,
247,
657,
2865,
702,
594,
4127,
812,
417,
320,
5189,
407,
253,
659,
1661,
66,
686,
84,
12262,
985,
2378,
352,
369,
689,
374,
1214,
13,
33,
20181,
4669,
313,
43385,
278,
2387,
964,
1707,
497,
642,
2007,
657,
2865,
702,
5310,
3487,
84,
275,
37606,
571,
964,
2490,
496,
253,
12337,
2918,
253,
1563,
807,
762,
253,
21074,
41573,
2426,
1157,
5006,
68,
7655,
407,
1503,
1539,
54,
285,
1503,
2088,
54,
1157,
353,
7958,
410,
8754,
1912,
247,
5020,
1157,
285,
3395,
253,
806,
12128,
8308,
273,
253,
8756,
23572,
1157,
5020,
1214,
14,
33,
12969,
1375,
273,
38581,
37606,
571,
327,
337,
3978,
13842,
964,
831,
747,
1340,
4242,
281,
3330,
5213,
14924,
1157,
2299,
1157,
285,
275,
4565,
13842,
253,
44945,
3995,
14297,
369,
5821,
275,
4693,
407,
38581,
37606,
571,
1157,
253,
5591,
2208,
285,
253,
21740,
3875,
15808,
1157,
10884,
253,
2586,
281,
697,
3438,
21441,
3708,
964,
380,
5591,
2208,
14116,
253,
7410,
285,
2335,
1480,
1453,
323,
271,
26964,
2180,
964,
30149,
12337,
497,
1912,
407,
44534,
12424,
1157,
665,
2335,
1612,
275,
4162,
9178,
1157,
35046,
342,
253,
2586,
686,
84,
25048,
14275,
347,
38581,
964,
4928,
187,
426,
426,
41091,
285,
27672,
426,
426,
4928,
187,
496,
4980,
38581,
1157,
352,
310,
417,
253,
657,
2865,
702,
5310,
3487,
84,
533,
2581,
253,
851,
1782,
590,
37606,
757,
18200,
1411,
38204,
47903,
6077,
19509,
326,
30565,
18705,
275,
253,
8928,
3541,
964,
2418,
3420,
275,
38581,
1157,
46454,
253,
31566,
11547,
1157,
2223,
1750,
326,
37606,
757,
5621,
801,
2865,
34673,
1523,
285,
21547,
1499,
4551,
2122,
6763,
273,
26952,
19382,
1309,
824,
5871,
964,
1503,
3123,
5214,
686,
84,
1066,
272,
273,
21731,
16340,
310,
26614,
30804,
347,
247,
14905,
769,
273,
2137,
327,
253,
9905,
326,
253,
47903,
28769,
1537,
452,
6566,
731,
281,
452,
4668,
11570,
390,
6500,
327,
4450,
964,
380,
36103,
273,
21548,
29726,
854,
1099,
16479,
387,
253,
13035,
2670,
310,
2223,
11035,
390,
12877,
281,
5621,
643,
685,
1503,
3123,
5214,
3706,
275,
521,
12459,
32390,
84,
427,
76,
19216,
6015,
521,
1750,
326,
1503,
3123,
5214,
20998,
574,
6518,
253,
19404,
1157,
285,
4159,
3365,
326,
346,
309,
7777,
452,
642,
2934,
849,
253,
3578,
4962,
346,
964,
2490,
329,
25754,
281,
1110,
5339,
275,
253,
37606,
757,
2983,
327
] |
his residence that said " Turner ". Matthews had pictures of Turner's residence developed ; these were later obtained by the Federal Bureau of Investigation ( FBI ) during an investigation of the Rajneesh commune, and verified after being shown to Turner.
Members of the group of conspirators watched Turner's office, home and car, and discussed methods to assassinate him, hoping that his death would hinder the efforts of the federal investigation into Rajneeshpuram. Their plan was to shoot Turner in the garage of the federal office building where he worked, in Portland, Oregon, but the conspirators also debated whether to murder Turner in downtown Portland or closer to his home. After spending multiple nights watching Turner's house, the conspirators decided on the parking garage because they felt it would be too risky to murder him on the drive to or from work, or in front of his home. Turner had a reserved parking spot in a federal garage underneath Terry Schrunk Plaza in Portland, Oregon. In an affidavit given to the FBI, conspirator Alma Peralta described how the perpetrators decided on the federal parking garage as the location : " Shanti Bhadra [ Catherine Jane Stork ] said this seems like a good place to bump this fellow off. "
The conspirators practiced different ways of murdering Turner. According to informant statements to law enforcement, one of the conspirators was to pretend there was car trouble, and the others would then approach Turner with their guns. Informants later told law enforcement officials that the conspirators intended to hide out at an international network of Rajneesh communes if the plan was successful. According to The Oregonian the assassinations were not carried out because Ma Anand Sheela became distracted by political power plays within the Rajneesh commune and other members of the organization who were trying to remove her from her position within the group.
= = Prosecutions = =
= = = Investigation = = =
On February 28, 1985, Congressman James H. Weaver gave a speech in the United States House of Representatives in which he asserted that the Rajneeshees were involved in the bioterror attack in Oregon. At a series of press conferences in September 1985, Rajneesh accused several of his recently departed lieutenants of involvement in this and other crimes, including the poisoning of Mike Sullivan, a Jefferson County district attorney, and asked state and federal authorities to investigate his allegations. The assassination plot was uncovered by federal law enforcement as a result of the ensuing investigation into activities at Rajneeshpuram. Turner was never physically harmed, and had retired by 1995.
The Oregonian was informed in October 1985 by federal law enforcement officials that Leslie L. Zaitz, an investigative journalist who had written a 20 @-@ part series on the Rajneesh movement in Oregon, was on a " hit list " which also included Turner and Oregon Attorney General David Frohnmayer. Assistant U.S. Attorney Robert Weaver prosecuted the case ; the charges were first detailed at an October 1985 bond hearing in North Carolina after Rajneesh and his followers were arrested at an airport in Charlotte. Weaver said in court that followers of Bhagwan Shree Rajneesh had plotted to assassinate Turner and Frohnmayer. He said these allegations were reasons why releasing Rajneesh and his followers from jail would be " a clear and present danger to public officials ". The guns purchased by the Rajneesh followers for the assassination plot had reportedly been dumped in a lake at Rancho Rajneesh ; the lake was searched by U.S. Navy divers. Scuba divers searched the lake for two days but did not find the guns.
Joseph Greene, a U.S. immigration agent, testified in court that FBI agents had learned of the assassination plot from a member of the organization who was in a witness protection program. Greene said that members involved in the assassination plot included Ma Anand Sheela, Dianne Yvonne Onang, and Alma Peralta. The assassination plot was investigated by the FBI and the Oregon State Police. Informants told law enforcement that Ma Anand Sheela hoped Turner's death would prevent an Immigration and Naturalization Service investigation which she thought could lead to Rajneesh's arrest and deportation from the United States. Weaver stated " These attempts to assassinate public officials were because they were presenting an immigration case that might result in imprisonment " of Rajneesh. " There were not simply plans, but at least one ( assassination ) attempt, " said Weaver at the hearing.
A grand jury investigation led by Turner brought charges of " widespread immigration fraud " against members of Rajneeshpuram. Wiretapping crimes were discovered after Ma Anand Sheela had fled the commune in September 1985. In December 1985, 21 followers of Rajneesh were indicted on wiretapping charges.
= = = Arrests and convictions = = =
Chief criminal assistant U.S. attorney Baron C. Sheldahl was assigned to prosecute the charges of federal wiretapping, and a special team from the United States Department of Justice Criminal Division was tasked with prosecuting the murder conspiracy charges. Four of the perpetrators were arrested in September 1990. Catherine Jane Stork and Richard Kevin Langford were arrested in West Germany, Ann Phyllis McCarthy was arrested in South Africa, and Susan Hagan was arrested in England. In September 1990, Alma Peralta pleaded guilty to conspiracy to commit murder. Peralta, who had served as Ma Anand Sheela's bodyguard and confidante, agreed to testify against the other defendants in the murder conspiracy. Under the terms of Peralta's plea agreement she received a sentence of two years in federal prison. Carol Matthews was arrested in Baden @-@ Baden, Germany in October 1990 on charges of wiretapping and conspiracy to murder Turner, where she was held along with three other Rajneeshees. At the time of her arrest, Matthews was found in possession of a false British passport, and had been traveling under the fake name of " Daphene Fosberry ". Indictments were brought against Ma Anand Sheela and six other co @-@ conspirators by a federal grand jury in November 1990.
In April 1991, Carol Matthews and Richard Kevin Langford ( Swami Anugiten ) were extradited from Germany to the United States in order to appear in federal court in Portland, Oregon. Law enforcement officials from the United States Marshals Service traveled to Frankfurt, Germany and took custody of the Matthews and Langford at Rhine Main Airport. On April 15, 1991, Matthews and Langford appeared in federal court in Oregon, and both pleaded innocent to charges of conspiracy to commit murder and carrying out wiretapping. On April 25, 1991, Richard Kevin Langford pleaded guilty in federal court to participating in the murder conspiracy plot against Turner, and in exchange he received a sentence of five years in federal prison and the dismissal of other charges against him relating to firearms and wiretapping. Langford agreed to testify against the other members of the murder conspiracy. Langford wrote on his plea agreement form : " In 1985, meetings were held at the Rancho Rajneesh... at which time the possible killing of the United States Attorney for Oregon was discussed. I participated in a number of these meetings and agreed with others to work toward that object. " Prosecutor Timothy J. Reardon III stated that Langford had been a member of the Rajneesh commune in Oregon since it began in 1981, and that the government was able to prove he joined the murder conspiracy at a point in time after May 25, 1985. Reardon said that Langford was a member of a group called the " Circle of 38 ", which was the personal security force that guarded Bhagwan Shree Rajneesh, and that he had served as a weapons instructor and policeman at the commune. Langford told U.S. District Judge Malcom F. Marsh that he had suggested that guns for the murder conspiracy could be bought in Texas, instructed the conspiractors about silencers, took responsibility for the weapons while they were in the commune, and disposed of them when members of the murder conspiracy decided to flee the U.S. for Europe. In July 1991, Carol Matthews entered a guilty plea and was convicted in federal court, she was sentenced to five years in prison.
Catherine Jane Stork was convicted of the attempted murder of Rajneesh's physician Dr. George Meredith ( Swami Devaraj ) in 1986, and served almost three years in jail. After her release, agents from the FBI uncovered the plot to assassinate Turner, but Stork had already fled to Germany. She was indicted by a federal grand jury in 1990. In 1991, the German government refused to extradite Stork back to the United States. In June 1991, U.S. prosecutors filed affidavits in the murder conspiracy case with the Higher Regional Court in Karlsruhe, Germany, as part of an attempt to extradite Catherin Jane Stork from Germany to the U.S. The affidavits stated that all of the members in the murder conspiracy plot also belonged to a group of Rajneesh followers at the Oregon commune known as " the 38 ", and were trained in " commando tactics using Uzi semiautomatic rifles and handguns ". David Berry Knapp ( known to Rajneesh followers as Swami Krishna Deva ) stated in an FBI affidavit that the murder conspiracy was motivated by Ma Anand Sheela's " tremendous anger " towards Turner.
Ma Anand Sheela served 29 months in a minimum security federal prison for charges related to assault, attempted murder, arson, wiretapping and the 1984 bioterror attack in The Dalles, and moved to Switzerland after her release from prison in 1988. The assassination conspiracy was discovered after Sheela had left the United States, and as of 1999 she was still wanted by federal law | wikitext_103 | [
521,
12913,
326,
753,
346,
20757,
346,
964,
34313,
574,
7968,
273,
20757,
686,
84,
12913,
3715,
3706,
841,
497,
1996,
2797,
407,
253,
7671,
15904,
273,
32907,
313,
12578,
2387,
1309,
271,
5839,
273,
253,
17549,
570,
15897,
40757,
1157,
285,
16058,
846,
1146,
2011,
281,
20757,
964,
2490,
20530,
273,
253,
1387,
273,
11882,
2392,
9047,
20757,
686,
84,
3906,
1157,
1728,
285,
1113,
1157,
285,
5469,
3082,
281,
18111,
4024,
779,
1157,
11525,
326,
521,
2471,
651,
35007,
253,
6031,
273,
253,
4400,
5839,
715,
17549,
570,
15897,
13182,
312,
964,
7160,
2098,
369,
281,
5310,
20757,
275,
253,
19476,
273,
253,
4400,
3906,
3652,
835,
344,
4307,
1157,
275,
20956,
1157,
15427,
1157,
533,
253,
11882,
2392,
671,
37730,
1880,
281,
7701,
20757,
275,
17207,
20956,
390,
8003,
281,
521,
1728,
964,
2732,
9100,
2709,
15513,
7487,
20757,
686,
84,
2419,
1157,
253,
11882,
2392,
4425,
327,
253,
12102,
19476,
984,
597,
3543,
352,
651,
320,
1512,
29198,
281,
7701,
779,
327,
253,
4446,
281,
390,
432,
789,
1157,
390,
275,
2914,
273,
521,
1728,
964,
20757,
574,
247,
10827,
12102,
6308,
275,
247,
4400,
19476,
21281,
21638,
32164,
3938,
33427,
275,
20956,
1157,
15427,
964,
496,
271,
18360,
1677,
281,
253,
12578,
1157,
11882,
1080,
1219,
785,
367,
1560,
893,
2529,
849,
253,
14549,
38844,
4425,
327,
253,
4400,
12102,
19476,
347,
253,
4328,
1163,
346,
1608,
11924,
378,
10178,
376,
544,
23425,
14884,
659,
1064,
5032,
753,
436,
3133,
751,
247,
1175,
1659,
281,
19496,
436,
7715,
745,
964,
346,
2490,
380,
11882,
2392,
26193,
1027,
4088,
273,
7701,
272,
20757,
964,
4794,
281,
37065,
7234,
281,
1569,
10473,
1157,
581,
273,
253,
11882,
2392,
369,
281,
22830,
627,
369,
1113,
7596,
1157,
285,
253,
2571,
651,
840,
2746,
20757,
342,
616,
11942,
964,
496,
630,
1103,
1996,
2183,
1569,
10473,
6338,
326,
253,
11882,
2392,
6034,
281,
10507,
562,
387,
271,
5213,
2990,
273,
17549,
570,
15897,
1681,
265,
604,
253,
2098,
369,
5547,
964,
4794,
281,
380,
15427,
757,
253,
18111,
7097,
497,
417,
4824,
562,
984,
7057,
743,
395,
1500,
7896,
3395,
31564,
407,
3569,
1612,
7120,
1561,
253,
17549,
570,
15897,
40757,
285,
643,
2758,
273,
253,
6003,
665,
497,
2820,
281,
5386,
617,
432,
617,
1899,
1561,
253,
1387,
964,
4928,
187,
426,
426,
38027,
3360,
426,
426,
4928,
19668,
426,
426,
426,
32907,
426,
426,
426,
4928,
187,
1623,
5080,
3349,
1157,
12210,
1157,
50048,
5490,
388,
15,
45226,
3534,
247,
6519,
275,
253,
1986,
2077,
3995,
273,
25574,
275,
534,
344,
16402,
326,
253,
17549,
570,
265,
248,
265,
497,
3206,
275,
253,
1794,
302,
3775,
2983,
275,
15427,
964,
2058,
247,
2962,
273,
2315,
27691,
275,
4397,
12210,
1157,
17549,
570,
15897,
10145,
2067,
273,
521,
4102,
29115,
7027,
10284,
1103,
273,
10171,
275,
436,
285,
643,
12137,
1157,
1690,
253,
33254,
273,
10035,
26211,
1157,
247,
19759,
3928,
3286,
6834,
1157,
285,
2546,
1375,
285,
4400,
9061,
281,
7409,
521,
11307,
964,
380,
34024,
7484,
369,
27819,
407,
4400,
1569,
10473,
347,
247,
906,
273,
253,
40409,
5839,
715,
4712,
387,
17549,
570,
15897,
13182,
312,
964,
20757,
369,
1620,
13318,
44137,
1157,
285,
574,
14373,
407,
8878,
964,
2490,
380,
15427,
757,
369,
8191,
275,
4437,
12210,
407,
4400,
1569,
10473,
6338,
326,
35657,
418,
15,
1503,
1942,
91,
1157,
271,
35070,
17264,
665,
574,
3542,
247,
1384,
1214,
14,
33,
629,
2962,
327,
253,
17549,
570,
15897,
4866,
275,
15427,
1157,
369,
327,
247,
346,
4352,
1618,
346,
534,
671,
2908,
20757,
285,
15427,
10158,
4214,
5119,
25847,
73,
10602,
4071,
964,
17762,
530,
15,
52,
15,
10158,
6911,
45226,
39459,
253,
1083,
3706,
253,
7260,
497,
806,
7000,
387,
271,
4437,
12210,
5533,
4854,
275,
3729,
9756,
846,
17549,
570,
15897,
285,
521,
18409,
497,
9833,
387,
271,
13952,
275,
21438,
964,
45226,
753,
275,
1302,
326,
18409,
273,
26165,
356,
10320,
1608,
658,
17549,
570,
15897,
574,
17944,
281,
18111,
4024,
20757,
285,
25847,
73,
10602,
4071,
964,
754,
753,
841,
11307,
497,
4606,
2139,
20437,
17549,
570,
15897,
285,
521,
18409,
432,
12907,
651,
320,
346,
247,
2590,
285,
1246,
5434,
281,
1345,
6338,
346,
964,
380,
11942,
9716,
407,
253,
17549,
570,
15897,
18409,
323,
253,
34024,
7484,
574,
17324,
644,
35611,
275,
247,
14593,
387,
35607,
80,
17549,
570,
15897,
3706,
253,
14593,
369,
16113,
407,
530,
15,
52,
15,
13669,
7940,
964,
1810,
25642,
7940,
16113,
253,
14593,
323,
767,
1897,
533,
858,
417,
1089,
253,
11942,
964,
2490,
10092,
35038,
1157,
247,
530,
15,
52,
15,
13163,
5570,
1157,
7859,
275,
1302,
326,
12578,
6083,
574,
6311,
273,
253,
34024,
7484,
432,
247,
3558,
273,
253,
6003,
665,
369,
275,
247,
5517,
6055,
2086,
964,
35038,
753,
326,
2758,
3206,
275,
253,
34024,
7484,
2908,
7057,
743,
395,
1500,
7896,
1157,
399,
757,
570,
714,
29997,
570,
1623,
606,
1157,
285,
1219,
785,
367,
1560,
893,
964,
380,
34024,
7484,
369,
6949,
407,
253,
12578,
285,
253,
15427,
2418,
9651,
964,
496,
630,
1103,
2183,
1569,
10473,
326,
7057,
743,
395,
1500,
7896,
13937,
20757,
686,
84,
2471,
651,
3657,
271,
28866,
285,
14673,
1320,
6631,
5839,
534,
703,
1869,
812,
1421,
281,
17549,
570,
15897,
686,
84,
5263,
285,
36759,
432,
253,
1986,
2077,
964,
45226,
4767,
346,
2053,
9437,
281,
18111,
4024,
1345,
6338,
497,
984,
597,
497,
15250,
271,
13163,
1083,
326,
1537,
906,
275,
19841,
346,
273,
17549,
570,
15897,
964,
346,
1707,
497,
417,
3365,
5827,
1157,
533,
387,
1878,
581,
313,
34024,
2387,
3177,
1157,
346,
753,
45226,
387,
253,
4854,
964,
2490,
329,
4936,
4984,
5839,
3977,
407,
20757,
3982,
7260,
273,
346,
14414,
13163,
9116,
346,
1411,
2758,
273,
17549,
570,
15897,
13182,
312,
964,
22338,
893,
2784,
12137,
497,
6888,
846,
7057,
743,
395,
1500,
7896,
574,
18436,
253,
40757,
275,
4397,
12210,
964,
496,
4565,
12210,
1157,
3127,
18409,
273,
17549,
570,
15897,
497,
38455,
327,
6371,
893,
2784,
7260,
964,
4928,
187,
426,
426,
426,
1780,
1120,
84,
285,
19130,
426,
426,
426,
4928,
187,
9060,
6424,
13372,
530,
15,
52,
15,
6834,
26192,
330,
15,
1500,
392,
16758,
369,
7922,
281,
40832,
253,
7260,
273,
4400,
6371,
893,
2784,
1157,
285,
247,
2714,
2285,
432,
253,
1986,
2077,
4487,
273,
8293,
20526,
9333,
369,
42603,
342,
6751,
9634,
253,
7701,
13445,
7260,
964,
7874,
273,
253,
14549,
38844,
497,
9833,
275,
4397,
7901,
964,
23425,
14884,
659,
1064,
285,
7727,
15273,
18232,
4379,
497,
9833,
275,
4255,
6176,
1157,
7359,
1777,
21767,
261,
32101,
369,
9833,
275,
3684,
7531,
1157,
285,
20222,
388,
12043,
369,
9833,
275,
5854,
964,
496,
4397,
7901,
1157,
1219,
785,
367,
1560,
893,
23383,
8106,
281,
13445,
281,
4514,
7701,
964,
367,
1560,
893,
1157,
665,
574,
5608,
347,
7057,
743,
395,
1500,
7896,
686,
84,
2133,
18625,
285,
1461,
301,
7961,
1157,
5821,
281,
18954,
1411,
253,
643,
7159,
275,
253,
7701,
13445,
964,
6166,
253,
2426,
273,
367,
1560,
893,
686,
84,
12678,
4345,
703,
2959,
247,
6197,
273,
767,
1107,
275,
4400,
5754,
964,
7618,
34313,
369,
9833,
275,
378,
12670,
1214,
14,
33,
378,
12670,
1157,
6176,
275,
4437,
7901,
327,
7260,
273,
6371,
893,
2784,
285,
13445,
281,
7701,
20757,
1157,
835,
703,
369,
2918,
2112,
342,
1264,
643,
17549,
570,
265,
248,
265,
964,
2058,
253,
673,
273,
617,
5263,
1157,
34313,
369,
1119,
275,
10023,
273,
247,
3221,
4782,
31195,
1157,
285,
574,
644,
15153,
762,
253,
15223,
1416,
273,
346,
399,
522,
17866,
401,
375,
12840,
346,
964,
2102,
882,
942,
497,
3982,
1411,
7057,
743,
395,
1500,
7896,
285,
2800,
643,
820,
1214,
14,
33,
11882,
2392,
407,
247,
4400,
4936,
4984,
275,
4596,
7901,
964,
2490,
496,
4162,
10226,
1157,
7618,
34313,
285,
7727,
15273,
18232,
4379,
313,
4235,
7588,
743,
814,
26217,
2387,
497,
43258,
959,
432,
6176,
281,
253,
1986,
2077,
275,
1340,
281,
3176,
275,
4400,
1302,
275,
20956,
1157,
15427,
964,
5405,
10473,
6338,
432,
253,
1986,
2077,
15463,
932,
6631,
19624,
281,
42471,
1157,
6176,
285,
2335,
13555,
273,
253,
34313,
285,
18232,
4379,
387,
11537,
460,
11505,
18328,
964,
1623,
4162,
1458,
1157,
10226,
1157,
34313,
285,
18232,
4379,
5420,
275,
4400,
1302,
275,
15427,
1157,
285,
1097,
23383,
15377,
281,
7260,
273,
13445,
281,
4514,
7701,
285,
8785,
562,
6371,
893,
2784,
964,
1623,
4162,
2030,
1157,
10226,
1157,
7727,
15273,
18232,
4379,
23383,
8106,
275,
4400,
1302,
281,
15299,
275,
253,
7701,
13445,
7484,
1411,
20757,
1157,
285,
275,
6431,
344,
2959,
247,
6197,
273,
2620,
1107,
275,
4400,
5754,
285,
253,
16852,
273,
643,
7260,
1411,
779,
12600,
281,
27050,
285,
6371,
893,
2784,
964,
18232,
4379,
5821,
281,
18954,
1411,
253,
643,
2758,
273,
253,
7701,
13445,
964,
18232,
4379,
4159,
327,
521,
12678,
4345,
830,
1163,
346,
496,
12210,
1157,
12225,
497,
2918,
387,
253,
35607,
80,
17549,
570,
15897,
3346,
387,
534,
673,
253,
1896,
9811,
273,
253,
1986,
2077,
10158,
323,
15427,
369,
5469,
964,
309,
13640,
275,
247,
1180,
273,
841,
12225,
285,
5821,
342,
2571,
281,
789,
2584,
326,
1789,
964,
346,
38027,
6854,
32905,
500,
15,
1720,
22628,
6490,
4767,
326,
18232,
4379,
574,
644,
247,
3558,
273,
253,
17549,
570,
15897,
40757,
275,
15427,
1580,
352,
3407,
275,
13402,
1157,
285,
326,
253,
2208,
369,
2104,
281,
5276,
344,
7416,
253,
7701,
13445,
387,
247,
1127,
275,
673,
846,
2552,
2030,
1157,
12210,
964,
1720,
22628,
753,
326,
18232,
4379,
369,
247,
3558,
273,
247,
1387,
1925,
253,
346,
29572,
273,
6480,
346,
1157,
534,
369,
253,
3367,
3988,
3490,
326,
39824,
26165,
356,
10320,
1608,
658,
17549,
570,
15897,
1157,
285,
326,
344,
574,
5608,
347,
247,
8914,
30498,
285,
40677,
387,
253,
40757,
964,
18232,
4379,
2183,
530,
15,
52,
15,
4412,
6798,
5979,
681,
401,
15,
15463,
326,
344,
574,
5125,
326,
11942,
323,
253,
7701,
13445,
812,
320,
8686,
275,
6112,
1157,
17189,
253,
11882,
46435,
670,
2830,
2083,
398,
1157,
2335,
8294,
323,
253,
8914,
1223,
597,
497,
275,
253,
40757,
1157,
285,
15432,
273,
731,
672,
2758,
273,
253,
7701,
13445,
4425,
281,
32645,
253,
530,
15,
52,
15,
323,
3060,
964,
496,
4163,
10226,
1157,
7618,
34313,
5966,
247,
8106,
12678,
285,
369,
13084,
275,
4400,
1302,
1157,
703,
369,
16290,
281,
2620,
1107,
275,
5754,
964,
2490,
23425,
14884,
659,
1064,
369,
13084,
273,
253,
9919,
7701,
273,
17549,
570,
15897,
686,
84,
12878,
3196,
15,
6086,
353,
46929,
313,
4235,
7588,
8397,
274,
1432,
2387,
275,
12140,
1157,
285,
5608,
2761,
1264,
1107,
275,
12907,
964,
2732,
617,
3727,
1157,
6083,
432,
253,
12578,
27819,
253,
7484,
281,
18111,
4024,
20757,
1157,
533,
659,
1064,
574,
2168,
18436,
281,
6176,
964,
1500,
369,
38455,
407,
247,
4400,
4936,
4984,
275,
7901,
964,
496,
10226,
1157,
253,
5685,
2208,
9284,
281,
43258,
614,
659,
1064,
896,
281,
253,
1986,
2077,
964,
496,
3978,
10226,
1157,
530,
15,
52,
15,
27355,
4724,
34278,
275,
253,
7701,
13445,
1083,
342,
253,
23230,
19804,
2111,
275,
12604,
5200,
579,
248,
1157,
6176,
1157,
347,
629,
273,
271,
3177,
281,
43258,
614,
330,
1226,
249,
14884,
659,
1064,
432,
6176,
281,
253,
530,
15,
52,
15,
380,
34278,
4767,
326,
512,
273,
253,
2758,
275,
253,
7701,
13445,
7484,
671,
20651,
281,
247,
1387,
273,
17549,
570,
15897,
18409,
387,
253,
15427,
40757,
1929,
347,
346,
253,
6480,
346,
1157,
285,
497,
10166,
275,
346,
3923,
80,
21041,
970,
530,
9877,
3300,
571,
307,
8977,
36064,
285,
1133,
44186,
346,
964,
5119,
30014,
10381,
1212,
313,
1929,
281,
17549,
570,
15897,
18409,
347,
4235,
7588,
41918,
2072,
8397,
66,
2387,
4767,
275,
271,
12578,
18360,
326,
253,
7701,
13445,
369,
17194,
407,
7057,
743,
395,
1500,
7896,
686,
84,
346,
19999,
12700,
346,
4404,
20757,
964,
2490,
7057,
743,
395,
1500,
7896,
5608,
3285,
2607,
275,
247,
5927,
3988,
4400,
5754,
323,
7260,
2905,
281,
9222,
1157,
9919,
7701,
1157,
549,
1665,
1157,
6371,
893,
2784,
285,
253,
12459,
1794,
302,
3775,
2983,
275,
380,
399,
455,
265,
1157,
285,
4395,
281,
18908,
846,
617,
3727,
432,
5754,
275,
11513,
964,
380,
34024,
13445,
369,
6888,
846,
1500,
7896,
574,
1669,
253,
1986,
2077,
1157,
285,
347,
273,
7544,
703,
369,
1335,
3078,
407,
4400,
1569
] |
= Tikal =
Tikal ( / tiˈkäl / ) ( Tik ’ al in modern Mayan orthography ) is the ruins of an ancient city found in a rainforest in Guatemala. Ambrosio Tut, a gum @-@ sapper, reported the ruins to La Gaceta, a Guatemalan newspaper, which named the site Tikal. After the Berlin Academy of Sciences'magazine republished the report in 1853, archeologists and treasure hunters began visiting the forest. Today tourism to the site may help protect the rainforest. It is one of the largest archaeological sites and urban centers of the pre @-@ Columbian Maya civilization. It is located in the archaeological region of the Petén Basin in what is now northern Guatemala. Situated in the department of El Petén, the site is part of Guatemala's Tikal National Park and in 1979 it was declared a UNESCO World Heritage Site.
Tikal was the capital of a conquest state that became one of the most powerful kingdoms of the ancient Maya. Though monumental architecture at the site dates back as far as the 4th century BC, Tikal reached its apogee during the Classic Period, c. 200 to 900 AD. During this time, the city dominated much of the Maya region politically, economically, and militarily, while interacting with areas throughout Mesoamerica such as the great metropolis of Teotihuacan in the distant Valley of Mexico. There is evidence that Tikal was conquered by Teotihuacan in the 4th century AD. Following the end of the Late Classic Period, no new major monuments were built at Tikal and there is evidence that elite palaces were burned. These events were coupled with a gradual population decline, culminating with the site ’ s abandonment by the end of the 10th century.
Tikal is the best understood of any of the large lowland Maya cities, with a long dynastic ruler list, the discovery of the tombs of many of the rulers on this list and the investigation of their monuments, temples and palaces.
= = Etymology = =
The name Tikal may be derived from ti ak 'al in the Yucatec Maya language ; it is said to be a relatively modern name meaning " at the waterhole ". The name was apparently applied to one of the site's ancient reservoirs by hunters and travelers in the region. It has alternatively been interpreted as meaning " the place of the voices " in the Itza Maya language. Tikal, however, is not the ancient name for the site but rather the name adopted shortly after its discovery in the 1840s. Hieroglyphic inscriptions at the ruins refer to the ancient city as Yax Mutal or Yax Mutul, meaning " First Mutal ". Tikal may have come to have been called this because Dos Pilas also came to use the same emblem glyph ; the rulers of the city presumably wanted to distinguish themselves as the first city to bear the name. The kingdom as a whole was simply called Mutul, which is the reading of the " hair bundle " emblem glyph seen in the accompanying photo. Its precise meaning remains obscure.
= = Location = =
The closest large modern settlements are Flores and Santa Elena, approximately 64 kilometres ( 40 mi ) by road to the southwest. Tikal is approximately 303 kilometres ( 188 mi ) north of Guatemala City. It is 19 kilometres ( 12 mi ) south of the contemporary Maya city of Uaxactun and 30 kilometres ( 19 mi ) northwest of Yaxha. The city was located 100 kilometres ( 62 mi ) southeast of its great Classic Period rival, Calakmul, and 85 kilometres ( 53 mi ) northwest of Calakmul's ally Caracol, now in Belize.
The city has been completely mapped and covered an area greater than 16 square kilometres ( 6 @.@ 2 sq mi ) that included about 3 @,@ 000 structures. The topography of the site consists of a series of parallel limestone ridges rising above swampy lowlands. The major architecture of the site is clustered upon areas of higher ground and linked by raised causeways spanning the swamps. The area around Tikal has been declared as the Tikal National Park and the preserved area covers 570 square kilometres ( 220 sq mi ).
The ruins lie among the tropical rainforests of northern Guatemala that formed the cradle of lowland Maya civilization. The city itself was located among abundant fertile upland soils, and may have dominated a natural east – west trade route across the Yucatan Peninsula. Conspicuous trees at the Tikal park include gigantic kapok ( Ceiba pentandra ) the sacred tree of the Maya ; tropical cedar ( Cedrela odorata ), and Honduras mahogany ( Swietenia macrophylla ). Regarding the fauna, agouti, white @-@ nosed coatis, gray foxes, Geoffroy's spider monkeys, howler monkeys, harpy eagles, falcons, ocellated turkeys, guans, toucans, green parrots and leafcutter ants can be seen there regularly. Jaguars, jaguarundis, and cougars are also said to roam in the park. For centuries this city was completely covered under jungle. The average annual rainfall at Tikal is 1 @,@ 945 millimetres ( 76 @.@ 6 in ).
One of the largest of the Classic Maya cities, Tikal had no water other than what was collected from rainwater and stored in ten reservoirs. Archaeologists working in Tikal during the 20th century refurbished one of these ancient reservoirs to store water for their own use.
The Tikal National Park covers an area of 575 @.@ 83 square kilometres ( 222 @.@ 33 sq mi ). It was created on 26 May 1955 under the auspices of the Instituto de Antropología e Historia and was the first protected area in Guatemala.
= = Population = =
Population estimates for Tikal vary from 10 @,@ 000 to as high as 90 @,@ 000 inhabitants, with the most likely figure being at the upper end of this range.
The population of Tikal began a continuous curve of growth starting in the Preclassic Period ( approximately 2000 BC – AD 200 ), with a peak in the Late Classic with the population growing rapidly from AD 700 through to 830, followed by a sharp decline. For the 120 square kilometres ( 46 sq mi ) area falling within the earthwork defenses of the hinterland, the peak population is estimated at 517 per square kilometer ( 1340 per square mile ). In an area within a 12 kilometres ( 7 @.@ 5 mi ) radius of the site core, peak population is estimated at 120 @,@ 000 ; population density is estimated at 265 per square kilometer ( 689 per square mile ). In a region within a 25 kilometres ( 16 mi ) radius of the site core and including some satellite sites, peak population is estimated at 425 @,@ 000 with a density of 216 per square kilometer ( 515 per square mile ). These population figures are even more impressive because of the extensive swamplands that were unsuitable for habitation or agriculture. However, some archaeologists, such as David Webster, believe these figures to be far too high.
= = Rulers = =
The dynastic line of Tikal, founded as early as the 1st century AD, spanned 800 years and included at least 33 rulers.
= = History = =
= = = Preclassic = = =
There are traces of early agriculture at the site dating as far back as 1000 BC, in the Middle Preclassic. A cache of Mamon ceramics dating from about 700 @-@ 400 BC were found in a sealed chultun, a subterranean bottle @-@ shaped chamber.
Major construction at Tikal was already taking place in the Late Preclassic period, first appearing around 400 – 300 BC, including the building of major pyramids and platforms, although the city was still dwarfed by sites further north such as El Mirador and Nakbe. At this time, Tikal participated in the widespread Chikanel culture that dominated the Central and Northern Maya areas at this time – a region that included the entire Yucatan Peninsula including northern and eastern Guatemala and all of Belize.
Two temples dating to Late Chikanel times had masonry @-@ walled superstructures that may have been corbel @-@ vaulted, although this has not been proven. One of these had elaborate paintings on the outer walls showing human figures against a scrollwork background, painted in yellow, black, pink and red.
In the 1st century AD rich burials first appeared and Tikal underwent a political and cultural florescence as its giant northern neighbors declined. At the end of the Late Preclassic, the Izapan style art and architecture from the Pacific Coast began to influence Tikal, as demonstrated by a broken sculpture from the acropolis and early murals at the city.
= = = Early Classic = = =
Dynastic rulership among the lowland Maya is most deeply rooted at Tikal. According to later hieroglyphic records, the dynasty was founded by Yax @-@ Moch @-@ Xoc, perhaps in the 3rd century AD. At the beginning of the Early Classic, power in the Maya region was concentrated at Tikal and Calakmul, in the core of the Maya heartland.
Tikal may have benefited from the collapse of the large Preclassic states such as El Mirador. In the Early Classic T | wikitext_103 | [
426,
308,
1479,
267,
426,
4928,
187,
308,
1479,
267,
313,
1227,
16816,
135,
219,
76,
17366,
1227,
2387,
313,
308,
1479,
15956,
355,
275,
4980,
2552,
266,
9373,
3756,
2387,
310,
253,
28478,
273,
271,
9129,
2846,
1119,
275,
247,
9313,
38250,
275,
46560,
964,
15889,
2921,
900,
50016,
1157,
247,
30961,
1214,
14,
33,
618,
3803,
1157,
2361,
253,
28478,
281,
3905,
443,
317,
1464,
1157,
247,
40346,
30637,
11547,
1157,
534,
4907,
253,
2670,
308,
1479,
267,
964,
2732,
253,
12911,
11417,
273,
13416,
686,
11338,
1234,
11229,
253,
1304,
275,
1283,
3357,
1157,
36703,
11644,
285,
21764,
35041,
3407,
13975,
253,
9741,
964,
11056,
26742,
281,
253,
2670,
778,
1361,
4017,
253,
9313,
38250,
964,
733,
310,
581,
273,
253,
6253,
39327,
4375,
285,
10106,
12127,
273,
253,
638,
1214,
14,
33,
10255,
757,
41151,
23749,
964,
733,
310,
4441,
275,
253,
39327,
2919,
273,
253,
8939,
9390,
41467,
275,
752,
310,
1024,
11186,
46560,
964,
27817,
11634,
275,
253,
7811,
273,
3599,
8939,
9390,
1157,
253,
2670,
310,
629,
273,
46560,
686,
84,
308,
1479,
267,
3313,
4913,
285,
275,
13842,
352,
369,
8884,
247,
7379,
1410,
5915,
3645,
26254,
17855,
964,
2490,
308,
1479,
267,
369,
253,
5347,
273,
247,
35224,
1375,
326,
3395,
581,
273,
253,
954,
6422,
6963,
41635,
273,
253,
9129,
41151,
964,
11474,
25754,
267,
10336,
387,
253,
2670,
12282,
896,
347,
2080,
347,
253,
577,
394,
5331,
12895,
1157,
308,
1479,
267,
4925,
697,
1049,
462,
1796,
1309,
253,
27015,
25792,
1157,
260,
964,
1052,
281,
22908,
5446,
964,
6408,
436,
673,
1157,
253,
2846,
14691,
1199,
273,
253,
41151,
2919,
23075,
1157,
29187,
1157,
285,
14269,
3441,
1157,
1223,
18745,
342,
3672,
4768,
19926,
80,
13429,
3737,
824,
347,
253,
1270,
1313,
37489,
273,
2745,
302,
6356,
86,
317,
266,
275,
253,
13392,
10947,
273,
8987,
964,
1707,
310,
1941,
326,
308,
1479,
267,
369,
41549,
407,
2745,
302,
6356,
86,
317,
266,
275,
253,
577,
394,
5331,
5446,
964,
11977,
253,
990,
273,
253,
26502,
27015,
25792,
1157,
642,
747,
2201,
41650,
497,
4270,
387,
308,
1479,
267,
285,
627,
310,
1941,
326,
17832,
5796,
1951,
497,
15676,
964,
2053,
3394,
497,
9904,
342,
247,
26830,
3072,
10343,
1157,
27798,
839,
342,
253,
2670,
15956,
256,
43289,
407,
253,
990,
273,
253,
884,
394,
5331,
964,
2490,
308,
1479,
267,
310,
253,
1682,
7192,
273,
667,
273,
253,
1781,
1698,
1373,
41151,
8238,
1157,
342,
247,
1048,
24187,
3258,
29658,
1618,
1157,
253,
8900,
273,
253,
7275,
1768,
273,
1142,
273,
253,
36491,
327,
436,
1618,
285,
253,
5839,
273,
616,
41650,
1157,
33013,
285,
5796,
1951,
964,
4928,
187,
426,
426,
444,
555,
44548,
426,
426,
4928,
187,
380,
1416,
308,
1479,
267,
778,
320,
6012,
432,
16816,
29507,
686,
267,
275,
253,
714,
1028,
366,
68,
41151,
3448,
3706,
352,
310,
753,
281,
320,
247,
4942,
4980,
1416,
4495,
346,
387,
253,
1824,
13928,
346,
964,
380,
1416,
369,
8505,
3732,
281,
581,
273,
253,
2670,
686,
84,
9129,
45009,
407,
35041,
285,
31754,
275,
253,
2919,
964,
733,
556,
31506,
644,
12814,
347,
4495,
346,
253,
1659,
273,
253,
15547,
346,
275,
253,
733,
4019,
41151,
3448,
964,
308,
1479,
267,
1157,
2299,
1157,
310,
417,
253,
9129,
1416,
323,
253,
2670,
533,
2581,
253,
1416,
8671,
13515,
846,
697,
8900,
275,
253,
46537,
84,
964,
39452,
19644,
545,
280,
275,
28132,
387,
253,
28478,
3730,
281,
253,
9129,
2846,
347,
714,
991,
15601,
267,
390,
714,
991,
15601,
335,
1157,
4495,
346,
3973,
15601,
267,
346,
964,
308,
1479,
267,
778,
452,
1705,
281,
452,
644,
1925,
436,
984,
399,
375,
21263,
284,
671,
2210,
281,
897,
253,
1072,
802,
12404,
33981,
3706,
253,
36491,
273,
253,
2846,
18289,
3078,
281,
12129,
3746,
347,
253,
806,
2846,
281,
8800,
253,
1416,
964,
380,
18794,
347,
247,
2644,
369,
3365,
1925,
15601,
335,
1157,
534,
310,
253,
4361,
273,
253,
346,
4707,
13204,
346,
802,
12404,
33981,
2326,
275,
253,
17909,
7512,
964,
7850,
10799,
4495,
4558,
26591,
964,
4928,
187,
426,
426,
27036,
426,
426,
4928,
187,
380,
8642,
1781,
4980,
27885,
403,
46644,
285,
12126,
44846,
1157,
5512,
6705,
39050,
313,
3387,
3641,
2387,
407,
3971,
281,
253,
31438,
964,
308,
1479,
267,
310,
5512,
29980,
39050,
313,
25305,
3641,
2387,
6146,
273,
46560,
3228,
964,
733,
310,
655,
39050,
313,
1249,
3641,
2387,
6420,
273,
253,
13399,
41151,
2846,
273,
530,
991,
514,
328,
285,
1884,
39050,
313,
655,
3641,
2387,
29979,
273,
714,
991,
3227,
964,
380,
2846,
369,
4441,
2233,
39050,
313,
9743,
3641,
2387,
32253,
273,
697,
1270,
27015,
25792,
16136,
1157,
2263,
518,
31601,
1157,
285,
9330,
39050,
313,
8676,
3641,
2387,
29979,
273,
2263,
518,
31601,
686,
84,
25550,
2639,
317,
311,
1157,
1024,
275,
6512,
907,
964,
2490,
380,
2846,
556,
644,
4336,
18301,
285,
6107,
271,
2170,
3687,
685,
1668,
6278,
39050,
313,
721,
1214,
15,
33,
374,
34703,
3641,
2387,
326,
2908,
670,
495,
1214,
13,
33,
20181,
5289,
964,
380,
48865,
273,
253,
2670,
8414,
273,
247,
2962,
273,
7529,
48475,
8314,
2510,
11002,
1840,
44195,
90,
1698,
6056,
964,
380,
2201,
10336,
273,
253,
2670,
310,
29102,
2220,
3672,
273,
2169,
3216,
285,
7939,
407,
5439,
2847,
1576,
28369,
253,
1863,
11441,
964,
380,
2170,
1475,
308,
1479,
267,
556,
644,
8884,
347,
253,
308,
1479,
267,
3313,
4913,
285,
253,
15296,
2170,
10949,
39615,
6278,
39050,
313,
18881,
34703,
3641,
2387,
964,
2490,
380,
28478,
7027,
2190,
253,
20856,
9313,
922,
7752,
273,
11186,
46560,
326,
4447,
253,
40517,
282,
273,
1698,
1373,
41151,
23749,
964,
380,
2846,
3139,
369,
4441,
2190,
17829,
38681,
27165,
395,
31344,
1157,
285,
778,
452,
14691,
247,
3626,
9268,
1108,
8935,
5454,
7622,
2439,
253,
714,
1028,
37628,
33489,
964,
4563,
14985,
3472,
7139,
387,
253,
308,
1479,
267,
5603,
2486,
41490,
42844,
536,
313,
16357,
33068,
15482,
17244,
2387,
253,
20075,
5202,
273,
253,
41151,
3706,
20856,
260,
31679,
313,
330,
264,
1661,
66,
26883,
682,
2387,
1157,
285,
44509,
27356,
35926,
462,
1279,
313,
4235,
2880,
23364,
12533,
90,
14797,
2387,
964,
30696,
253,
4195,
9821,
1157,
639,
483,
74,
1157,
3168,
1214,
14,
33,
295,
1700,
11959,
261,
1157,
11978,
30013,
265,
1157,
33418,
4926,
686,
84,
32850,
30552,
1157,
849,
2146,
30552,
1157,
4230,
4789,
299,
23044,
1157,
18512,
5040,
1157,
258,
3992,
456,
10709,
12305,
1157,
1149,
507,
1157,
3912,
40786,
1157,
4759,
1061,
30353,
285,
10617,
7317,
350,
39912,
476,
320,
2326,
627,
11719,
964,
46174,
1032,
1157,
16361,
37502,
1504,
261,
1157,
285,
260,
529,
1032,
403,
671,
753,
281,
687,
312,
275,
253,
5603,
964,
1198,
14020,
436,
2846,
369,
4336,
6107,
762,
31500,
964,
380,
3388,
7970,
33621,
387,
308,
1479,
267,
310,
337,
1214,
13,
33,
898,
1857,
5499,
33256,
373,
313,
10909,
1214,
15,
33,
721,
275,
2387,
964,
2490,
2596,
273,
253,
6253,
273,
253,
27015,
41151,
8238,
1157,
308,
1479,
267,
574,
642,
1824,
643,
685,
752,
369,
5728,
432,
9313,
7779,
285,
7141,
275,
3578,
45009,
964,
40012,
11644,
2444,
275,
308,
1479,
267,
1309,
253,
1384,
394,
5331,
1275,
4063,
1428,
581,
273,
841,
9129,
45009,
281,
4657,
1824,
323,
616,
1211,
897,
964,
2490,
380,
308,
1479,
267,
3313,
4913,
10949,
271,
2170,
273,
45916,
1214,
15,
33,
11439,
6278,
39050,
313,
25653,
1214,
15,
33,
5922,
34703,
3641,
2387,
964,
733,
369,
3562,
327,
3436,
2552,
23438,
762,
253,
247,
14147,
1271,
273,
253,
19244,
14345,
372,
9422,
1658,
862,
6336,
299,
13314,
571,
285,
369,
253,
806,
6885,
2170,
275,
46560,
964,
4928,
187,
426,
426,
30657,
426,
426,
4928,
187,
30657,
8197,
323,
308,
1479,
267,
6889,
432,
884,
1214,
13,
33,
20181,
281,
347,
1029,
347,
5091,
1214,
13,
33,
20181,
21251,
1157,
342,
253,
954,
2779,
4677,
1146,
387,
253,
5170,
990,
273,
436,
2491,
964,
2490,
380,
3072,
273,
308,
1479,
267,
3407,
247,
5415,
6970,
273,
3116,
4983,
275,
253,
5729,
2437,
280,
25792,
313,
5512,
5307,
12895,
1108,
5446,
1052,
2387,
1157,
342,
247,
5241,
275,
253,
26502,
27015,
342,
253,
3072,
5675,
9086,
432,
5446,
18450,
949,
281,
854,
1229,
1157,
3560,
407,
247,
9479,
10343,
964,
1198,
253,
7346,
6278,
39050,
313,
7904,
34703,
3641,
2387,
2170,
10805,
1561,
253,
6149,
1601,
25774,
273,
253,
288,
2388,
1373,
1157,
253,
5241,
3072,
310,
5998,
387,
41495,
591,
6278,
11895,
11955,
313,
2145,
1449,
591,
6278,
13915,
2387,
964,
496,
271,
2170,
1561,
247,
1249,
39050,
313,
818,
1214,
15,
33,
608,
3641,
2387,
9941,
273,
253,
2670,
5161,
1157,
5241,
3072,
310,
5998,
387,
7346,
1214,
13,
33,
20181,
3706,
3072,
4038,
310,
5998,
387,
25905,
591,
6278,
11895,
11955,
313,
721,
2511,
591,
6278,
13915,
2387,
964,
496,
247,
2919,
1561,
247,
2030,
39050,
313,
1668,
3641,
2387,
9941,
273,
253,
2670,
5161,
285,
1690,
690,
15109,
4375,
1157,
5241,
3072,
310,
5998,
387,
33314,
1214,
13,
33,
20181,
342,
247,
4038,
273,
24521,
591,
6278,
11895,
11955,
313,
39748,
591,
6278,
13915,
2387,
964,
2053,
3072,
8442,
403,
1014,
625,
13943,
984,
273,
253,
9470,
1863,
33282,
2287,
326,
497,
49590,
323,
4776,
3535,
390,
21047,
964,
1723,
1157,
690,
21101,
11644,
1157,
824,
347,
5119,
35470,
1157,
2868,
841,
8442,
281,
320,
2080,
1512,
1029,
964,
4928,
187,
426,
426,
416,
335,
398,
426,
426,
4928,
187,
380,
24187,
3258,
1386,
273,
308,
1479,
267,
1157,
11420,
347,
2393,
347,
253,
337,
296,
5331,
5446,
1157,
40423,
14212,
1107,
285,
2908,
387,
1878,
5922,
36491,
964,
4928,
187,
426,
426,
9541,
426,
426,
4928,
19668,
426,
426,
426,
5729,
2437,
280,
426,
426,
426,
4928,
187,
1707,
403,
20274,
273,
2393,
21047,
387,
253,
2670,
13597,
347,
2080,
896,
347,
9098,
12895,
1157,
275,
253,
10515,
5729,
2437,
280,
964,
329,
11556,
273,
353,
19451,
15733,
47775,
13597,
432,
670,
18450,
1214,
14,
33,
9166,
12895,
497,
1119,
275,
247,
18495,
448,
503,
328,
1157,
247,
749,
350,
83,
18313,
11996,
1214,
14,
33,
16745,
9320,
964,
2490,
11432,
5140,
387,
308,
1479,
267,
369,
2168,
3192,
1659,
275,
253,
26502,
5729,
2437,
280,
2180,
1157,
806,
15602,
1475,
9166,
1108,
7469,
12895,
1157,
1690,
253,
3652,
273,
2201,
25874,
2352,
285,
13498,
1157,
3738,
253,
2846,
369,
1335,
18691,
22210,
407,
4375,
2007,
6146,
824,
347,
3599,
11777,
9325,
285,
27280,
1257,
964,
2058,
436,
673,
1157,
308,
1479,
267,
13640,
275,
253,
14414,
775,
38522,
293,
4466,
326,
14691,
253,
8170,
285,
11442,
41151,
3672,
387,
436,
673,
1108,
247,
2919,
326,
2908,
253,
2862,
714,
1028,
37628,
33489,
1690,
11186,
285,
14730,
46560,
285,
512,
273,
6512,
907,
964,
2490,
5761,
33013,
13597,
281,
26502,
775,
38522,
293,
2069,
574,
278,
1187,
610,
1214,
14,
33,
3402,
264,
2221,
45345,
326,
778,
452,
644,
944,
8382,
1214,
14,
33,
28395,
264,
1157,
3738,
436,
556,
417,
644,
11464,
964,
2596,
273,
841,
574,
21184,
20858,
327,
253,
8346,
8099,
4645,
1966,
8442,
1411,
247,
14084,
1601,
4114,
1157,
16264,
275,
8862,
1157,
2806,
1157,
14863,
285,
2502,
964,
2490,
496,
253,
337,
296,
5331,
5446,
6793,
3600,
8075,
806,
5420,
285,
308,
1479,
267,
13368,
247,
3569,
285,
8928,
892,
18394,
347,
697,
10864,
11186,
15833,
13072,
964,
2058,
253,
990,
273,
253,
26502,
5729,
2437,
280,
1157,
253,
37418,
3682,
3740,
1445,
285,
10336,
432,
253,
11553,
13153,
3407,
281,
4833,
308,
1479,
267,
1157,
347,
5183,
407,
247,
7154,
34486,
432,
253,
913,
37489,
285,
2393,
4682,
932,
387,
253,
2846,
964,
4928,
187,
426,
426,
426,
15643,
27015,
426,
426,
426,
4928,
187,
32746,
3258,
5885,
4249,
2190,
253,
1698,
1373,
41151,
310,
954,
11617,
26415,
387,
308,
1479,
267,
964,
4794,
281,
1996,
10549,
19644,
545,
280,
5861,
1157,
253,
34526,
369,
11420,
407,
714,
991,
1214,
14,
33,
353,
3770,
1214,
14,
33,
1594,
406,
1157,
4931,
275,
253,
495,
5784,
5331,
5446,
964,
2058,
253,
5068,
273,
253,
15643,
27015,
1157,
1612,
275,
253,
41151,
2919,
369,
16761,
387,
308,
1479,
267,
285,
2263,
518,
31601,
1157,
275,
253,
5161,
273,
253,
41151,
2798,
1373,
964,
2490,
308,
1479,
267,
778,
452,
37081,
432,
253,
13551,
273,
253,
1781,
5729,
2437,
280,
3054,
824,
347,
3599,
11777,
9325,
964,
496,
253,
15643,
27015,
308
] |
= J. C. W. Beckham =
John Crepps Wickliffe Beckham ( August 5, 1869 – January 9, 1940 ) was the 35th Governor of Kentucky and a United States Senator from Kentucky. He was the state's first popularly elected senator following passage of the Seventeenth Amendment.
Descended from a prominent political family, Beckham was chosen as Democrat William Goebel's running mate in the gubernatorial election of 1899 despite the fact that he was not yet of legal age to serve as governor if called to do so. Goebel lost the election to Republican William S. Taylor, but the Kentucky General Assembly disputed the election results. During the political wrangling that followed, an unknown assassin shot Goebel. A day later the General Assembly invalidated enough votes to give the election to Goebel, who was sworn into office on his deathbed. Taylor claimed the election had been stolen by the Democratic majority in the General Assembly and a legal fight ensued between him and Beckham over the governorship. Beckham ultimately prevailed and Taylor fled the state.
Following his term as governor, Beckham made a bid to become a U.S. Senator. His stance in favor of prohibition cost him the votes of four legislators in his own party and the seat went to Republican William O. Bradley. Six years later Beckham secured the seat by popular election, but he lost his re @-@ election bid largely because of his pro @-@ temperance views and his opposition to women's suffrage. Though he continued to play an active role in state politics for another two decades, he never returned to elected office, failing in his gubernatorial bid in 1927 and his senatorial campaign in 1936. He died in Louisville on January 9, 1940.
= = Early life = =
J. C. W. Beckham was born at Wickland, near Bardstown in Nelson County, Kentucky, son of William Netherton and Julia Tevis ( Wickliffe ) Beckham. His maternal grandfather, Charles A. Wickliffe, was governor of Kentucky from 1839 to 1840 and served as postmaster general in the administration of John Tyler. His uncle, Robert C. Wickliffe, served as governor of Louisiana.
Beckham obtained his early education at Roseland Academy in Bardstown. In 1881 he served as a page in the Kentucky House of Representatives at the age of 12. Later, he enrolled at Central University ( now Eastern Kentucky University ) in Richmond, Kentucky but was forced to quit school at the age of 17 to support his widowed mother. Two years later, he became principal of Bardstown public schools, serving from 1888 to 1893. Concurrently, he studied law at the University of Kentucky, where he earned his law degree in 1889. He was admitted to the bar, and commenced practice in Bardstown in 1893. He also served as president of the Young Democrats'Club of Nelson County.
= = Political career = =
Beckham's political career began in 1894 when he was elected without opposition to the Kentucky House of Representatives. He served four consecutive terms and was Speaker of the House in 1898, his final year in the House. He also served as a delegate to every Democratic National Convention from 1900 to 1920.
= = = Governor of Kentucky = = =
Democrat William Goebel chose Beckham as his running mate in the Kentucky gubernatorial election of 1899. Goebel was hesitant about the selection because he wanted someone who could deliver the vote of his home county in the general election, and Beckham's native Nelson County was already committed to a rival candidate. But friends of Goebel assured him that Beckham would be loyal to Goebel's reform agenda, whereas the two other men Goebel was considering as running mates would " stack the Senate committees against him. " Beckham was not yet 30, the minimum age to serve as governor, at the time of his selection.
Goebel lost a close election to Republican William S. Taylor. When the General Assembly's session opened on January 2, 1900, the election results were immediately challenged. With Democrats in control of both houses of the Assembly, the results seemed sure to be reversed. The Assembly was still deliberating on January 30, 1900, when Goebel was shot by an unknown assailant as he entered the state capitol building. The following day, as Goebel was being treated for his wounds at a local hotel, the General Assembly invalidated enough votes to give him the election. He was sworn into office from his bed the same day. Three days later Goebel died, never having risen from the bed.
Legislative chaos ensued as Taylor refused to acknowledge the Assembly's decision and vacate the governorship. The Republicans in the legislature obeyed Taylor's orders, while the Democrats ignored Taylor and followed the orders of their leadership. Finally, on February 21, 1900, Taylor and Beckham agreed to let the courts settle the matter. The case first went before the Louisville Circuit Court, which found in favor of Beckham. Republicans appealed to the Kentucky Court of Appeals, at that time the court of last resort in the state. On April 6, 1900, the Court of Appeals upheld the ruling of the lower court. Taylor appealed to the Supreme Court of the United States, which declined to hear the case on May 21, 1900. Taylor's only supporter on the court was Kentuckian John Marshall Harlan.
Following the Supreme Court ruling, Taylor fled to Indianapolis, Indiana, fearing he would be implicated in Goebel's assassination. Beckham became acting governor, but because of the unusual circumstances surrounding the election, a special election was held November 6, 1900, to determine who would complete Goebel's unexpired term. Beckham ( now of age ) won the election over Republican John W. Yerkes by fewer than 4 @,@ 000 votes. Shortly following the special election, Beckham married Jean Raphael Fuqua of Owensboro. The couple had two sons.
As governor Beckham sought to unite his party and the state. As part of this effort he supported changes to the blatantly partisan Goebel Election Law, authored by his late running mate while the latter was a member of the General Assembly. He stressed non @-@ controversial issues such as improvements to roads and the state's educational system. He recommended passage of a law to set uniform school textbook prices, a reform both he and Goebel had advocated during the gubernatorial campaign. However, his passive leadership ensured that the General Assembly did little to address his agenda. The only major pieces of legislation passed during Beckham's term were a tax increase that added a half million dollars to the state's revenue and a child labor law that forbade children under 14 to work without their parents'consent.
= = = Second term = = =
Although the Kentucky Constitution prohibited governors from serving consecutive terms, Beckham announced he would seek a full term as governor in 1903. His candidacy was challenged in court, but the court ruled Beckham had not served a full first term and was eligible to run. Due to his record of reconciliation and supporting non @-@ controversial reforms, he had no significant opposition in winning his party's nomination. His record also deprived his Republican opponent, Morris B. Belknap, of any significant campaign issue in the general election. Beckham defeated Belknap and three minor candidates.
In his message to the legislature in 1904, Beckham again raised the issue of a uniform school textbook law, which had not passed during his first term. The law was one of few significant reforms that passed during the 1904 session. During the session funds were approved for building a new capitol building and a memorial to the late Governor Goebel.
In March 1904, Beckham signed the Day Law mandating racial segregation of all schools in Kentucky. Berea College, a private college in eastern Kentucky that had been integrated since the 1850s, immediately filed suit to challenge the law. The substance of the law was upheld in the circuit court and the Kentucky Court of Appeals. Berea appealed to the Supreme Court, and in 1908 the court handed down an 8 – 1 decision against the college. Only John Marshall Harlan dissented.
Near the close of the 1904 session, legislators approved the creation of Beckham County from parts of Carter, Elliott, and Lewis counties. Olive Hill was made the county seat. Soon the county's existence was challenged in court on grounds that it fell short of the 400 square miles ( 1 @,@ 000 km2 ) required by the state constitution and that it reduced the counties it was carved from to less than 400 square miles ( 1 @,@ 000 km2 ). Carter County joined the lawsuit, claiming the border of Beckham County passed too close to Grayson, the seat of Carter County, and Vanceburg, the seat of Lewis County. The state constitution forbade county borders to pass within 10 miles ( 16 km ) of a county seat. On April 29, 1904, the Kentucky Court of Appeals found in favor of the plaintiffs and dissolved Beckham County.
During the 1906 legislative session, Beckham urged investigation and prosecution of corrupt insurance companies, following the lead of New York attorney Charles Evans Hughes. In particular, he recommended reducing the practice of deferred dividends, which allowed the insurance companies to keep large stores of cash on @-@ hand for illegal purposes. He further advocated that insurance companies doing business in the state be required to invest a certain percentage of their earnings in Kentucky, bolstering the its economy and providing policyholders some protection against fraud.
Beckham refused to send troops into the western part of the state to quell the ongoing Black Patch Tobacco Wars. He cited constitutional reasons for his refusal, but more probably his reasons were political – the Democrats were dominant in this region and he didn 't want | wikitext_103 | [
426,
500,
15,
330,
15,
411,
15,
17600,
3964,
426,
4928,
187,
2516,
13501,
44361,
47172,
6458,
453,
17600,
3964,
313,
4223,
608,
1157,
1283,
2090,
1108,
4247,
898,
1157,
16952,
2387,
369,
253,
4791,
394,
15636,
273,
18370,
285,
247,
1986,
2077,
18718,
432,
18370,
964,
754,
369,
253,
1375,
686,
84,
806,
4633,
314,
10544,
27445,
1563,
10056,
273,
253,
38297,
14860,
10737,
964,
2490,
3666,
68,
1834,
432,
247,
11906,
3569,
2021,
1157,
17600,
3964,
369,
6777,
347,
20736,
7252,
3617,
2275,
293,
686,
84,
3515,
20187,
275,
253,
305,
23351,
25922,
6132,
273,
42791,
5747,
253,
958,
326,
344,
369,
417,
2568,
273,
4320,
2363,
281,
5752,
347,
14176,
604,
1925,
281,
513,
594,
964,
3617,
2275,
293,
3663,
253,
6132,
281,
8786,
7252,
322,
15,
11276,
1157,
533,
253,
18370,
4214,
14184,
25147,
253,
6132,
1543,
964,
6408,
253,
3569,
1488,
36874,
326,
3560,
1157,
271,
7202,
46127,
5103,
3617,
2275,
293,
964,
329,
1388,
1996,
253,
4214,
14184,
12078,
456,
2217,
13008,
281,
1918,
253,
6132,
281,
3617,
2275,
293,
1157,
665,
369,
29773,
715,
3906,
327,
521,
2471,
3026,
964,
11276,
7558,
253,
6132,
574,
644,
15661,
407,
253,
9922,
5020,
275,
253,
4214,
14184,
285,
247,
4320,
3819,
49984,
875,
779,
285,
17600,
3964,
689,
253,
1809,
15306,
964,
17600,
3964,
9142,
40766,
285,
11276,
18436,
253,
1375,
964,
2490,
11977,
521,
1307,
347,
14176,
1157,
17600,
3964,
1160,
247,
12246,
281,
2489,
247,
530,
15,
52,
15,
18718,
964,
3032,
22567,
275,
3718,
273,
30034,
2105,
779,
253,
13008,
273,
1740,
37244,
275,
521,
1211,
3128,
285,
253,
7319,
2427,
281,
8786,
7252,
473,
15,
27991,
964,
11067,
1107,
1996,
17600,
3964,
14049,
253,
7319,
407,
4633,
6132,
1157,
533,
344,
3663,
521,
294,
1214,
14,
33,
6132,
12246,
8127,
984,
273,
521,
354,
1214,
14,
33,
2660,
593,
6849,
285,
521,
10266,
281,
2255,
686,
84,
6237,
14372,
964,
11474,
344,
4821,
281,
1132,
271,
3939,
2554,
275,
1375,
8672,
323,
1529,
767,
8007,
1157,
344,
1620,
4895,
281,
10544,
3906,
1157,
11741,
275,
521,
305,
23351,
25922,
12246,
275,
31687,
285,
521,
5303,
25922,
4544,
275,
27386,
964,
754,
4962,
275,
39492,
327,
4247,
898,
1157,
16952,
964,
4928,
187,
426,
426,
15643,
1495,
426,
426,
4928,
187,
500,
15,
330,
15,
411,
15,
17600,
3964,
369,
5686,
387,
47172,
1373,
1157,
2822,
44523,
39225,
275,
19027,
3928,
1157,
18370,
1157,
3347,
273,
7252,
15696,
1299,
285,
27261,
308,
1173,
261,
313,
47172,
6458,
453,
2387,
17600,
3964,
964,
3032,
14834,
21507,
1157,
8444,
329,
15,
47172,
6458,
453,
1157,
369,
14176,
273,
18370,
432,
1283,
1867,
281,
46537,
285,
5608,
347,
1501,
11717,
2087,
275,
253,
5286,
273,
2516,
26953,
964,
3032,
18796,
1157,
6911,
330,
15,
47172,
6458,
453,
1157,
5608,
347,
14176,
273,
17753,
964,
2490,
17600,
3964,
2797,
521,
2393,
4730,
387,
11957,
15235,
11417,
275,
44523,
39225,
964,
496,
49120,
344,
5608,
347,
247,
3239,
275,
253,
18370,
3995,
273,
25574,
387,
253,
2363,
273,
1249,
964,
14772,
1157,
344,
17692,
387,
8170,
2499,
313,
1024,
11867,
18370,
2499,
2387,
275,
25380,
1157,
18370,
533,
369,
6726,
281,
15856,
2143,
387,
253,
2363,
273,
1722,
281,
1329,
521,
5261,
12997,
3101,
964,
5761,
1107,
1996,
1157,
344,
3395,
8624,
273,
44523,
39225,
1345,
6629,
1157,
9417,
432,
44728,
281,
45987,
964,
1716,
47590,
1157,
344,
5421,
1569,
387,
253,
2499,
273,
18370,
1157,
835,
344,
12431,
521,
1569,
4248,
275,
45272,
964,
754,
369,
8176,
281,
253,
2534,
1157,
285,
24488,
3946,
275,
44523,
39225,
275,
45987,
964,
754,
671,
5608,
347,
4007,
273,
253,
10231,
10823,
686,
9585,
273,
19027,
3928,
964,
4928,
187,
426,
426,
23132,
5249,
426,
426,
4928,
187,
17600,
3964,
686,
84,
3569,
5249,
3407,
275,
46470,
672,
344,
369,
10544,
1293,
10266,
281,
253,
18370,
3995,
273,
25574,
964,
754,
5608,
1740,
12640,
2426,
285,
369,
26587,
273,
253,
3995,
275,
42122,
1157,
521,
2457,
807,
275,
253,
3995,
964,
754,
671,
5608,
347,
247,
24565,
281,
1046,
9922,
3313,
15757,
432,
24810,
281,
18471,
964,
4928,
187,
426,
426,
426,
15636,
273,
18370,
426,
426,
426,
4928,
187,
20736,
7252,
3617,
2275,
293,
9703,
17600,
3964,
347,
521,
3515,
20187,
275,
253,
18370,
305,
23351,
25922,
6132,
273,
42791,
964,
3617,
2275,
293,
369,
16063,
386,
670,
253,
5438,
984,
344,
3078,
3095,
665,
812,
7257,
253,
6273,
273,
521,
1728,
9635,
275,
253,
2087,
6132,
1157,
285,
17600,
3964,
686,
84,
7925,
19027,
3928,
369,
2168,
7730,
281,
247,
16136,
7431,
964,
1292,
3858,
273,
3617,
2275,
293,
17839,
779,
326,
17600,
3964,
651,
320,
14211,
281,
3617,
2275,
293,
686,
84,
8460,
15990,
1157,
5727,
253,
767,
643,
1821,
3617,
2275,
293,
369,
7296,
347,
3515,
41730,
651,
346,
8031,
253,
8907,
29123,
1411,
779,
964,
346,
17600,
3964,
369,
417,
2568,
1884,
1157,
253,
5927,
2363,
281,
5752,
347,
14176,
1157,
387,
253,
673,
273,
521,
5438,
964,
2490,
3617,
2275,
293,
3663,
247,
2810,
6132,
281,
8786,
7252,
322,
15,
11276,
964,
2091,
253,
4214,
14184,
686,
84,
6874,
5485,
327,
4247,
374,
1157,
24810,
1157,
253,
6132,
1543,
497,
4745,
14870,
964,
2726,
10823,
275,
1453,
273,
1097,
9910,
273,
253,
14184,
1157,
253,
1543,
4455,
2119,
281,
320,
13891,
964,
380,
14184,
369,
1335,
12465,
839,
327,
4247,
1884,
1157,
24810,
1157,
672,
3617,
2275,
293,
369,
5103,
407,
271,
7202,
49198,
386,
347,
344,
5966,
253,
1375,
1729,
16180,
3652,
964,
380,
1563,
1388,
1157,
347,
3617,
2275,
293,
369,
1146,
4127,
323,
521,
19952,
387,
247,
1980,
8614,
1157,
253,
4214,
14184,
12078,
456,
2217,
13008,
281,
1918,
779,
253,
6132,
964,
754,
369,
29773,
715,
3906,
432,
521,
3722,
253,
1072,
1388,
964,
9064,
1897,
1996,
3617,
2275,
293,
4962,
1157,
1620,
1907,
28987,
432,
253,
3722,
964,
2490,
37558,
20142,
49984,
347,
11276,
9284,
281,
14409,
253,
14184,
686,
84,
3061,
285,
33085,
253,
1809,
15306,
964,
380,
11885,
275,
253,
18818,
20090,
264,
11276,
686,
84,
7367,
1157,
1223,
253,
10823,
12841,
11276,
285,
3560,
253,
7367,
273,
616,
9550,
964,
6610,
1157,
327,
5080,
3127,
1157,
24810,
1157,
11276,
285,
17600,
3964,
5821,
281,
1339,
253,
7829,
16359,
253,
2647,
964,
380,
1083,
806,
2427,
1078,
253,
39492,
6817,
2111,
1157,
534,
1119,
275,
3718,
273,
17600,
3964,
964,
11885,
20652,
281,
253,
18370,
2111,
273,
9892,
1157,
387,
326,
673,
253,
1302,
273,
1390,
17942,
275,
253,
1375,
964,
1623,
4162,
721,
1157,
24810,
1157,
253,
2111,
273,
9892,
30620,
253,
10362,
273,
253,
2406,
1302,
964,
11276,
20652,
281,
253,
6413,
2111,
273,
253,
1986,
2077,
1157,
534,
13072,
281,
4089,
253,
1083,
327,
2552,
3127,
1157,
24810,
964,
11276,
686,
84,
760,
31409,
327,
253,
1302,
369,
12808,
1807,
757,
2516,
19629,
3972,
13409,
964,
2490,
11977,
253,
6413,
2111,
10362,
1157,
11276,
18436,
281,
33070,
1157,
14614,
1157,
4709,
272,
344,
651,
320,
19588,
275,
3617,
2275,
293,
686,
84,
34024,
964,
17600,
3964,
3395,
8534,
14176,
1157,
533,
984,
273,
253,
11555,
5989,
8704,
253,
6132,
1157,
247,
2714,
6132,
369,
2918,
4596,
721,
1157,
24810,
1157,
281,
3653,
665,
651,
3426,
3617,
2275,
293,
686,
84,
440,
4347,
1250,
1307,
964,
17600,
3964,
313,
1024,
273,
2363,
2387,
1912,
253,
6132,
689,
8786,
2516,
411,
15,
714,
254,
8583,
407,
11184,
685,
577,
1214,
13,
33,
20181,
13008,
964,
35775,
1563,
253,
2714,
6132,
1157,
17600,
3964,
7028,
13089,
17314,
49707,
23257,
46385,
273,
44248,
32485,
964,
380,
4564,
574,
767,
15196,
964,
2490,
1284,
14176,
17600,
3964,
7799,
281,
41697,
521,
3128,
285,
253,
1375,
964,
1284,
629,
273,
436,
3434,
344,
4516,
2544,
281,
253,
40458,
5954,
37492,
3617,
2275,
293,
29686,
5405,
1157,
47895,
407,
521,
3563,
3515,
20187,
1223,
253,
6158,
369,
247,
3558,
273,
253,
4214,
14184,
964,
754,
21198,
1327,
1214,
14,
33,
15620,
3374,
824,
347,
11701,
281,
13939,
285,
253,
1375,
686,
84,
11331,
985,
964,
754,
8521,
10056,
273,
247,
1569,
281,
873,
6447,
2143,
40554,
7911,
1157,
247,
8460,
1097,
344,
285,
3617,
2275,
293,
574,
36431,
1309,
253,
305,
23351,
25922,
4544,
964,
1723,
1157,
521,
16864,
9550,
33075,
326,
253,
4214,
14184,
858,
1652,
281,
2953,
521,
15990,
964,
380,
760,
2201,
7437,
273,
10843,
4817,
1309,
17600,
3964,
686,
84,
1307,
497,
247,
2891,
2572,
326,
2879,
247,
2716,
3041,
8918,
281,
253,
1375,
686,
84,
11784,
285,
247,
1429,
5299,
1569,
326,
17163,
796,
2151,
762,
1638,
281,
789,
1293,
616,
4651,
686,
7578,
964,
4928,
187,
426,
426,
426,
6347,
1307,
426,
426,
426,
4928,
187,
4129,
253,
18370,
10350,
19772,
45513,
432,
9417,
12640,
2426,
1157,
17600,
3964,
6138,
344,
651,
7703,
247,
2120,
1307,
347,
14176,
275,
40937,
964,
3032,
4613,
1974,
369,
14870,
275,
1302,
1157,
533,
253,
1302,
12969,
17600,
3964,
574,
417,
5608,
247,
2120,
806,
1307,
285,
369,
13410,
281,
1408,
964,
12571,
281,
521,
1924,
273,
40746,
285,
8109,
1327,
1214,
14,
33,
15620,
23809,
1157,
344,
574,
642,
1534,
10266,
275,
9880,
521,
3128,
686,
84,
23726,
964,
3032,
1924,
671,
25979,
521,
8786,
16871,
1157,
17771,
378,
15,
6512,
3696,
522,
1157,
273,
667,
1534,
4544,
2523,
275,
253,
2087,
6132,
964,
17600,
3964,
16473,
6512,
3696,
522,
285,
1264,
5884,
9183,
964,
2490,
496,
521,
3935,
281,
253,
18818,
275,
40253,
1157,
17600,
3964,
969,
5439,
253,
2523,
273,
247,
6447,
2143,
40554,
1569,
1157,
534,
574,
417,
4817,
1309,
521,
806,
1307,
964,
380,
1569,
369,
581,
273,
1643,
1534,
23809,
326,
4817,
1309,
253,
40253,
6874,
964,
6408,
253,
6874,
8064,
497,
7012,
323,
3652,
247,
747,
1729,
16180,
3652,
285,
247,
27672,
281,
253,
3563,
15636,
3617,
2275,
293,
964,
2490,
496,
3919,
40253,
1157,
17600,
3964,
6704,
253,
6258,
5405,
7649,
839,
15066,
29604,
273,
512,
6629,
275,
18370,
964,
2325,
15593,
6822,
1157,
247,
3055,
6831,
275,
14730,
18370,
326,
574,
644,
8527,
1580,
253,
38367,
84,
1157,
4745,
4724,
4176,
281,
5691,
253,
1569,
964,
380,
10359,
273,
253,
1569,
369,
30620,
275,
253,
5049,
1302,
285,
253,
18370,
2111,
273,
9892,
964,
2325,
15593,
20652,
281,
253,
6413,
2111,
1157,
285,
275,
36754,
253,
1302,
14048,
1066,
271,
854,
1108,
337,
3061,
1411,
253,
6831,
964,
7214,
2516,
19629,
3972,
13409,
5408,
8006,
964,
2490,
27922,
253,
2810,
273,
253,
40253,
6874,
1157,
37244,
7012,
253,
8869,
273,
17600,
3964,
3928,
432,
4243,
273,
16863,
1157,
34694,
1157,
285,
13054,
21813,
964,
40193,
7061,
369,
1160,
253,
9635,
7319,
964,
21965,
253,
9635,
686,
84,
6242,
369,
14870,
275,
1302,
327,
9905,
326,
352,
6497,
2159,
273,
253,
9166,
6278,
6574,
313,
337,
1214,
13,
33,
20181,
10771,
19,
2387,
2424,
407,
253,
1375,
7410,
285,
326,
352,
3777,
253,
21813,
352,
369,
27251,
432,
281,
1679,
685,
9166,
6278,
6574,
313,
337,
1214,
13,
33,
20181,
10771,
19,
2387,
964,
16863,
3928,
7416,
253,
15091,
1157,
15081,
253,
5680,
273,
17600,
3964,
3928,
4817,
1512,
2810,
281,
1997,
45487,
1157,
253,
7319,
273,
16863,
3928,
1157,
285,
657,
593,
6121,
1157,
253,
7319,
273,
13054,
3928,
964,
380,
1375,
7410,
17163,
796,
9635,
18275,
281,
1509,
1561,
884,
6574,
313,
1668,
10771,
2387,
273,
247,
9635,
7319,
964,
1623,
4162,
3285,
1157,
40253,
1157,
253,
18370,
2111,
273,
9892,
1119,
275,
3718,
273,
253,
8341,
285,
18224,
17600,
3964,
3928,
964,
2490,
6408,
253,
38701,
14112,
6874,
1157,
17600,
3964,
18343,
5839,
285,
14079,
273,
17715,
6503,
4413,
1157,
1563,
253,
1421,
273,
1457,
2816,
6834,
8444,
19872,
24008,
964,
496,
1798,
1157,
344,
8521,
8493,
253,
3946,
273,
36334,
43503,
1157,
534,
4136,
253,
6503,
4413,
281,
1978,
1781,
10111,
273,
7942,
327,
1214,
14,
33,
1133,
323,
9676,
6378,
964,
754,
2007,
36431,
326,
6503,
4413,
2509,
2136,
275,
253,
1375,
320,
2424,
281,
1718,
247,
2176,
7155,
273,
616,
20375,
275,
18370,
1157,
16049,
296,
2158,
253,
697,
6982,
285,
5277,
3646,
12975,
690,
6055,
1411,
9116,
964,
2490,
17600,
3964,
9284,
281,
5007,
10824,
715,
253,
10439,
629,
273,
253,
1375,
281,
572,
437,
253,
10800,
5418,
45491,
47786,
14848,
964,
754,
11106,
10281,
4606,
323,
521,
19963,
1157,
533,
625,
3164,
521,
4606,
497,
3569,
1108,
253,
10823,
497,
11360,
275,
436,
2919,
285,
344,
1904,
686,
85,
971
] |
= Military history of Australia =
The military history of Australia spans the nation's 220 @-@ year modern history, from the early Australian frontier wars between Aboriginals and Europeans to the ongoing conflicts in Iraq and Afghanistan in the early 21st century. Although this history is short when compared to that of many other nations, Australia has been involved in numerous conflicts and wars, and war and military service have been significant influences on Australian society and national identity, including the Anzac spirit. The relationship between war and Australian society has also been shaped by the enduring themes of Australian strategic culture and its unique security dilemma.
As British offshoots, the Australian colonies participated in Britain's small wars of the 19th century, while later as a federated dominion, and then an independent nation, Australia fought in the First World War and Second World War, as well as in the wars in Korea, Malaya, Borneo and Vietnam during the Cold War. In the Post @-@ Vietnam era Australian forces have been involved in numerous international peacekeeping missions, through the United Nations and other agencies, including in the Sinai, Persian Gulf, Rwanda, Somalia, East Timor and the Solomon Islands, while more recently they have also fought as part of multi @-@ lateral forces in Iraq and Afghanistan. In total, nearly 103 @,@ 000 Australians died during the course of these conflicts.
= = War and Australian society = =
For most of the last century military service has been one of the single greatest shared experiences of white Australian males, and although this is now changing due to the professionalisation of the military and the absence of major wars during the second half of the 20th century, it continues to influence Australian society to this day. War and military service have been defining influences in Australian history, while a major part of the national identity has been built on an idealised conception of the Australian experience of war and of soldiering, known as the Anzac spirit. These ideals include notions of endurance, courage, ingenuity, humour, larrikinism, egalitarianism and mateship ; traits which, according to popular thought, defined the behaviour of Australian soldiers fighting at Gallipoli during the First World War. The Gallipoli campaign was one of the first international events that saw Australians taking part as Australians and has been seen as a key event in forging a sense of national identity.
The relationship between war and Australian society has been shaped by two of the more enduring themes of Australian strategic culture : bandwagoning with a powerful ally and expeditionary warfare. Indeed, Australian defence policy was closely linked to Britain until the Japanese crisis of 1942, while since then an alliance with the United States has underwritten its security. Arguably, this pattern of bandwagoning — both for cultural reasons such as shared values and beliefs, as well as for more pragmatic security concerns — has ensured that Australian strategic policy has often been defined by relations with its allies. Regardless, a tendency towards strategic complacency has also been evident, with Australians often reluctant to think about defence issues or to allocate resources until a crisis arises ; a trait which has historically resulted in unpreparedness for major military challenges.
Reflecting both the realist and liberal paradigms of international relations and the conception of national interests, a number of other important themes in Australian strategic culture are also obvious. Such themes include : an acceptance of the state as the key actor in international politics, the centrality of notions of Westphalian sovereignty, a belief in the enduring relevance and legitimacy of armed force as a guarantor of security, and the proposition that the status quo in international affairs should only be changed peacefully. Likewise, multilateralism, collective security and defence self @-@ reliance have also been important themes. Change has been more evolutionary than revolutionary and these strategic behaviours have persisted throughout its history, being the product of Australian society's democratic political tradition and Judaeo @-@ Christian Anglo @-@ European heritage, as well its associated values, beliefs and economic, political and religious ideology. These behaviours are also reflective of its unique security dilemma as a largely European island on the edge of the Asia @-@ Pacific, and the geopolitical circumstances of a middle power physically removed from the centres of world power. To be sure, during threats to the core Australia has often found itself defending the periphery and perhaps as a result, it has frequently become involved in foreign wars. Throughout these conflicts Australian soldiers — known colloquially as Diggers — have often been noted, somewhat paradoxically, for both their fighting abilities and their humanitarian qualities.
= = Colonial era = =
= = = British Forces in Australia, 1788 – 1870 = = =
From 1788 until 1870 the defence of the Australian colonies was mostly provided by British Army regular forces. Originally Marines protected the early settlements at Sydney Cove and Norfolk Island, however they were relieved of these duties in 1790 by a British Army unit specifically recruited for colonial service, known as the New South Wales Corps. The New South Wales Corps subsequently was involved in putting down a rebellion of Irish convicts at Castle Hill in 1804. Soon however shortcomings in the corps convinced the War Office of the need for a more reliable garrison in New South Wales and Van Diemen's Land. Chief of these shortcomings was the Rum Rebellion, a coup mounted by its officers in 1808. As a result, in January 1810 the 73rd ( Perthshire ) Regiment of Foot arrived in Australia. By 1870, 25 British infantry regiments had served in Australia, as had a small number of artillery and engineer units.
Although the primary role of the British Army was to protect the colonies against external attack, no actual threat ever materialised. The British Army was instead used in policing, guarding convicts at penal institutions, combating bushranging, putting down convict rebellions — as occurred at Bathurst in 1830 — and to suppress Aboriginal resistance to the extension of European settlement. Notably British soldiers were involved in the battle at the Eureka Stockade in 1854 on the Victorian goldfields. Members of British regiments stationed in Australia also saw action in India, Afghanistan, New Zealand and the Sudan.
During the early years of settlement the naval defence of Australia was provided by detached Royal Navy units of the East Indies Station, based in Sydney. However, in 1859 Australia was established as a separate squadron under the command of a commodore, marking the first occasion that Royal Navy ships had been permanently stationed in Australia. The Royal Navy remained the primary naval force in Australian waters until 1913, when the Australia Station ceased and responsibility handed over to the Royal Australian Navy ; the Royal Navy's depots, dockyards and structures were given to the Australian people.
= = = Frontier warfare, 1788 – 1934 = = =
The reactions of the native Aboriginal inhabitants to the sudden arrival of British settlers in Australia were varied, but were inevitably hostile when the settler's presence led to competition over resources, and to the occupation of the indigenous inhabitants'lands. European diseases decimated Aboriginal populations, and the occupation or destruction of lands and food resources sometimes led to starvation. By and large neither the British nor the Aborigines approached the conflict in an organised sense and conflict occurred between groups of settlers and individual tribes rather than systematic warfare. At times, however, the frontier wars did see the involvement of British soldiers and later mounted police units. Not all Aboriginal groups resisted white encroachment on their lands, while many Aborigines served in mounted police units and were involved in attacks on other tribes.
Fighting between Aborigines and Europeans was localised as the Aborigines did not form confederations capable of sustained resistance. As a result, there was not a single war, but rather a series of violent engagements and massacres across the continent. Organised or disorganised however, a pattern of frontier warfare emerged with Aboriginal resistance beginning in the 18th century and continuing into the early 20th century. This warfare contradicts the popular and at times academic " myth " of peaceful settlement in Australia. Faced with Aboriginal resistance settlers often reacted with violence, resulting in a number of indiscriminate massacres. Among the most famous is the Battle of Pinjarra in Western Australia in 1834. Such incidents were not officially sanctioned however, and after the Myall Creek massacre in New South Wales in 1838 seven Europeans were hanged for their part in the killings. However, in Tasmania the so @-@ called Black War was fought between 1828 and 1832, and aimed at driving most of the island's native inhabitants onto a number of isolated peninsulas. Although it began in failure for the British, it ultimately resulted in considerable casualties amongst the native population.
It may be inaccurate though to depict the conflict as one sided and mainly perpetrated by Europeans on Aborigines. Although many more Aborigines died than British, this may have had more to do with the technological and logistic advantages enjoyed by the Europeans. Aboriginal tactics varied, but were mainly based on pre @-@ existing hunting and fighting practices — using spears, clubs and other primitive weapons. Unlike the indigenous peoples of New Zealand and North America, on the main Aborigines failed to adapt to meet the challenge of the Europeans. Although there were some instances of individuals and groups acquiring and using firearms, this was not widespread. The Aborigines were never a serious military threat to European settlers, regardless of how much the settlers may have feared them. On occasions large groups of Aborigines attacked the settlers in open terrain and a conventional battle ensued, during which the Aborigines would attempt to use superior numbers to their advantage. This could sometimes be effective, with reports of them advancing in crescent formation in an attempt to outflank and surround their opponents, waiting out the first volley of shots and then hurling their spears while the settlers reloaded. However, such open | wikitext_103 | [
426,
20884,
2892,
273,
6976,
426,
4928,
187,
380,
4668,
2892,
273,
6976,
35742,
253,
5674,
686,
84,
18881,
1214,
14,
33,
807,
4980,
2892,
1157,
432,
253,
2393,
9943,
34642,
16860,
875,
38463,
304,
10529,
285,
33671,
281,
253,
10800,
15272,
275,
9256,
285,
16111,
275,
253,
2393,
3127,
296,
5331,
964,
4129,
436,
2892,
310,
2159,
672,
2429,
281,
326,
273,
1142,
643,
12390,
1157,
6976,
556,
644,
3206,
275,
7418,
15272,
285,
16860,
1157,
285,
2137,
285,
4668,
2579,
452,
644,
1534,
16178,
327,
9943,
5948,
285,
3872,
6489,
1157,
1690,
253,
743,
91,
317,
5968,
964,
380,
2954,
875,
2137,
285,
9943,
5948,
556,
671,
644,
16745,
407,
253,
36543,
16876,
273,
9943,
15285,
4466,
285,
697,
4451,
3988,
34390,
964,
2490,
1284,
4782,
745,
40719,
84,
1157,
253,
9943,
19665,
13640,
275,
9643,
686,
84,
1355,
16860,
273,
253,
655,
394,
5331,
1157,
1223,
1996,
347,
247,
10208,
12072,
7630,
279,
1157,
285,
840,
271,
3907,
5674,
1157,
6976,
13465,
275,
253,
3973,
3645,
3660,
285,
6347,
3645,
3660,
1157,
347,
973,
347,
275,
253,
16860,
275,
9733,
1157,
5979,
12451,
1157,
378,
9584,
80,
285,
15732,
1309,
253,
20754,
3660,
964,
496,
253,
5779,
1214,
14,
33,
15732,
8685,
9943,
5621,
452,
644,
3206,
275,
7418,
5213,
6330,
23492,
21468,
1157,
949,
253,
1986,
14726,
285,
643,
11009,
1157,
1690,
275,
253,
322,
45194,
1157,
31534,
18351,
1157,
416,
88,
7447,
1157,
46699,
1157,
5791,
8969,
263,
285,
253,
31049,
18708,
1157,
1223,
625,
4102,
597,
452,
671,
13465,
347,
629,
273,
4471,
1214,
14,
33,
11884,
5621,
275,
9256,
285,
16111,
964,
496,
2264,
1157,
4829,
13062,
1214,
13,
33,
20181,
45373,
4962,
1309,
253,
2282,
273,
841,
15272,
964,
4928,
187,
426,
426,
3660,
285,
9943,
5948,
426,
426,
4928,
187,
1198,
954,
273,
253,
1390,
5331,
4668,
2579,
556,
644,
581,
273,
253,
2014,
6459,
6096,
8450,
273,
3168,
9943,
10798,
1157,
285,
3738,
436,
310,
1024,
6890,
1955,
281,
253,
5702,
5837,
273,
253,
4668,
285,
253,
5928,
273,
2201,
16860,
1309,
253,
1273,
2716,
273,
253,
1384,
394,
5331,
1157,
352,
7788,
281,
4833,
9943,
5948,
281,
436,
1388,
964,
3660,
285,
4668,
2579,
452,
644,
13947,
16178,
275,
9943,
2892,
1157,
1223,
247,
2201,
629,
273,
253,
3872,
6489,
556,
644,
4270,
327,
271,
7445,
1701,
22086,
273,
253,
9943,
2793,
273,
2137,
285,
273,
15796,
272,
1157,
1929,
347,
253,
743,
91,
317,
5968,
964,
2053,
26784,
2486,
27367,
273,
33272,
1157,
15838,
1157,
6446,
8309,
414,
1157,
38452,
1157,
1236,
363,
5914,
1204,
1157,
299,
9896,
14621,
1204,
285,
41730,
1456,
3706,
13795,
534,
1157,
2556,
281,
4633,
1869,
1157,
2931,
253,
8770,
273,
9943,
9647,
8615,
387,
11414,
532,
10424,
1309,
253,
3973,
3645,
3660,
964,
380,
11414,
532,
10424,
4544,
369,
581,
273,
253,
806,
5213,
3394,
326,
3047,
45373,
3192,
629,
347,
45373,
285,
556,
644,
2326,
347,
247,
2234,
2362,
275,
323,
3390,
247,
3282,
273,
3872,
6489,
964,
2490,
380,
2954,
875,
2137,
285,
9943,
5948,
556,
644,
16745,
407,
767,
273,
253,
625,
36543,
16876,
273,
9943,
15285,
4466,
1163,
3961,
88,
5154,
272,
342,
247,
6422,
25550,
285,
26018,
552,
27205,
964,
8079,
1157,
9943,
17147,
3646,
369,
8244,
7939,
281,
9643,
1919,
253,
6692,
8891,
273,
22420,
1157,
1223,
1580,
840,
271,
23158,
342,
253,
1986,
2077,
556,
762,
15720,
697,
3988,
964,
1780,
4297,
1598,
1157,
436,
3102,
273,
3961,
88,
5154,
272,
1905,
1097,
323,
8928,
4606,
824,
347,
6096,
2193,
285,
13379,
1157,
347,
973,
347,
323,
625,
41585,
3988,
7350,
1905,
556,
33075,
326,
9943,
15285,
3646,
556,
2223,
644,
2931,
407,
2493,
342,
697,
17760,
964,
31565,
1157,
247,
14955,
4404,
15285,
3137,
43850,
556,
671,
644,
8943,
1157,
342,
45373,
2223,
27821,
281,
1158,
670,
17147,
3374,
390,
281,
29211,
5300,
1919,
247,
8891,
15877,
3706,
247,
18177,
534,
556,
24842,
7369,
275,
440,
35711,
1255,
323,
2201,
4668,
7881,
964,
2490,
7567,
732,
272,
1097,
253,
1524,
382,
285,
12773,
11951,
304,
983,
273,
5213,
2493,
285,
253,
22086,
273,
3872,
6284,
1157,
247,
1180,
273,
643,
1774,
16876,
275,
9943,
15285,
4466,
403,
671,
4755,
964,
6102,
16876,
2486,
1163,
271,
14924,
273,
253,
1375,
347,
253,
2234,
12353,
275,
5213,
8672,
1157,
253,
26297,
1319,
273,
27367,
273,
4255,
545,
6770,
30993,
1157,
247,
9927,
275,
253,
36543,
17200,
285,
37978,
273,
12360,
3490,
347,
247,
7264,
263,
273,
3988,
1157,
285,
253,
13989,
326,
253,
3708,
29817,
275,
5213,
13909,
943,
760,
320,
4391,
6330,
2920,
964,
22300,
1157,
1554,
17656,
1204,
1157,
12786,
3988,
285,
17147,
1881,
1214,
14,
33,
22095,
452,
671,
644,
1774,
16876,
964,
15836,
556,
644,
625,
16483,
685,
22564,
285,
841,
15285,
32536,
452,
32178,
4768,
697,
2892,
1157,
1146,
253,
1885,
273,
9943,
5948,
686,
84,
18545,
3569,
4062,
285,
4268,
3348,
80,
1214,
14,
33,
6416,
33252,
1214,
14,
33,
5284,
21904,
1157,
347,
973,
697,
2330,
2193,
1157,
13379,
285,
5054,
1157,
3569,
285,
7231,
25680,
964,
2053,
32536,
403,
671,
29210,
273,
697,
4451,
3988,
34390,
347,
247,
8127,
5284,
8930,
327,
253,
5024,
273,
253,
10497,
1214,
14,
33,
11553,
1157,
285,
253,
3471,
15762,
19424,
5989,
273,
247,
4766,
1612,
13318,
5176,
432,
253,
23221,
273,
1533,
1612,
964,
1916,
320,
2119,
1157,
1309,
14207,
281,
253,
5161,
6976,
556,
2223,
1119,
3139,
21449,
253,
29615,
285,
4931,
347,
247,
906,
1157,
352,
556,
7208,
2489,
3206,
275,
5639,
16860,
964,
28786,
841,
15272,
9943,
9647,
1905,
1929,
50014,
1365,
347,
11568,
7276,
1905,
452,
2223,
644,
4879,
1157,
8489,
25286,
1037,
1157,
323,
1097,
616,
8615,
15277,
285,
616,
30122,
18701,
964,
4928,
187,
426,
426,
44435,
8685,
426,
426,
4928,
19668,
426,
426,
426,
4782,
24495,
275,
6976,
1157,
1722,
2055,
1108,
35828,
426,
426,
426,
4928,
187,
4325,
1722,
2055,
1919,
35828,
253,
17147,
273,
253,
9943,
19665,
369,
6571,
2530,
407,
4782,
8663,
3963,
5621,
964,
37405,
34913,
6885,
253,
2393,
27885,
387,
17361,
330,
710,
285,
37252,
8451,
1157,
2299,
597,
497,
24192,
273,
841,
12803,
275,
1722,
2270,
407,
247,
4782,
8663,
3943,
5742,
17875,
323,
21441,
2579,
1157,
1929,
347,
253,
1457,
3684,
15420,
17729,
964,
380,
1457,
3684,
15420,
17729,
9674,
369,
3206,
275,
8133,
1066,
247,
32480,
273,
11596,
35171,
84,
387,
18732,
7061,
275,
1283,
2125,
964,
21965,
2299,
35387,
275,
253,
23493,
13762,
253,
3660,
7454,
273,
253,
878,
323,
247,
625,
9630,
49564,
275,
1457,
3684,
15420,
285,
10049,
6129,
14745,
686,
84,
8565,
964,
9060,
273,
841,
35387,
369,
253,
35290,
1720,
10910,
279,
1157,
247,
17625,
10877,
407,
697,
6251,
275,
1283,
2904,
964,
1284,
247,
906,
1157,
275,
4247,
1283,
740,
253,
11087,
5784,
313,
44937,
19299,
2387,
30068,
273,
12867,
7244,
275,
6976,
964,
2896,
35828,
1157,
2030,
4782,
32468,
810,
3825,
574,
5608,
275,
6976,
1157,
347,
574,
247,
1355,
1180,
273,
29923,
285,
16518,
5085,
964,
2490,
4129,
253,
3625,
2554,
273,
253,
4782,
8663,
369,
281,
4017,
253,
19665,
1411,
6024,
2983,
1157,
642,
4588,
4322,
2455,
2144,
1701,
964,
380,
4782,
8663,
369,
3185,
908,
275,
48638,
1157,
7496,
272,
35171,
84,
387,
29697,
10003,
1157,
2049,
839,
1685,
6285,
5610,
1157,
8133,
1066,
35171,
25789,
621,
1905,
347,
5866,
387,
28317,
321,
296,
275,
46215,
1905,
285,
281,
10476,
42053,
5052,
281,
253,
6880,
273,
5284,
10858,
964,
28776,
4782,
9647,
497,
3206,
275,
253,
6680,
387,
253,
444,
459,
4530,
15725,
796,
275,
1283,
3439,
327,
253,
27794,
5328,
15069,
964,
20530,
273,
4782,
810,
3825,
38712,
275,
6976,
671,
3047,
2250,
275,
5427,
1157,
16111,
1157,
1457,
12123,
285,
253,
27325,
964,
2490,
6408,
253,
2393,
1107,
273,
10858,
253,
25186,
17147,
273,
6976,
369,
2530,
407,
31418,
10043,
13669,
5085,
273,
253,
5791,
44744,
14628,
1157,
1754,
275,
17361,
964,
1723,
1157,
275,
1283,
3046,
6976,
369,
4232,
347,
247,
4858,
40294,
762,
253,
3923,
273,
247,
20315,
410,
1157,
26099,
253,
806,
8120,
326,
10043,
13669,
11811,
574,
644,
21311,
38712,
275,
6976,
964,
380,
10043,
13669,
6376,
253,
3625,
25186,
3490,
275,
9943,
12685,
1919,
33920,
1157,
672,
253,
6976,
14628,
25368,
285,
8294,
14048,
689,
281,
253,
10043,
9943,
13669,
3706,
253,
10043,
13669,
686,
84,
1305,
1502,
1157,
17463,
38828,
285,
5289,
497,
1677,
281,
253,
9943,
952,
964,
4928,
187,
426,
426,
426,
48688,
27205,
1157,
1722,
2055,
1108,
28507,
426,
426,
426,
4928,
187,
380,
9969,
273,
253,
7925,
42053,
21251,
281,
253,
5982,
13024,
273,
4782,
34684,
275,
6976,
497,
12848,
1157,
533,
497,
24473,
21668,
672,
253,
3414,
2146,
686,
84,
3361,
3977,
281,
7324,
689,
5300,
1157,
285,
281,
253,
17238,
273,
253,
24984,
21251,
686,
13446,
964,
5284,
6578,
1086,
18280,
42053,
7625,
1157,
285,
253,
17238,
390,
12536,
273,
13446,
285,
2739,
5300,
4536,
3977,
281,
35351,
964,
2896,
285,
1781,
6747,
253,
4782,
4543,
253,
38463,
304,
1100,
13781,
253,
7344,
275,
271,
29070,
3282,
285,
7344,
5866,
875,
2390,
273,
34684,
285,
2060,
23206,
2581,
685,
12082,
27205,
964,
2058,
2069,
1157,
2299,
1157,
253,
34642,
16860,
858,
923,
253,
10171,
273,
4782,
9647,
285,
1996,
10877,
3513,
5085,
964,
3105,
512,
42053,
2390,
36968,
3168,
2349,
287,
8941,
327,
616,
13446,
1157,
1223,
1142,
38463,
304,
1100,
5608,
275,
10877,
3513,
5085,
285,
497,
3206,
275,
8104,
327,
643,
23206,
964,
2490,
45349,
875,
38463,
304,
1100,
285,
33671,
369,
1980,
1701,
347,
253,
38463,
304,
1100,
858,
417,
830,
1461,
16478,
569,
7032,
273,
12321,
5052,
964,
1284,
247,
906,
1157,
627,
369,
417,
247,
2014,
2137,
1157,
533,
2581,
247,
2962,
273,
12338,
2209,
356,
3658,
285,
2280,
317,
373,
2439,
253,
25294,
964,
10164,
1701,
390,
557,
7397,
1701,
2299,
1157,
247,
3102,
273,
34642,
27205,
13082,
342,
42053,
5052,
5068,
275,
253,
1283,
394,
5331,
285,
11440,
715,
253,
2393,
1384,
394,
5331,
964,
831,
27205,
40878,
253,
4633,
285,
387,
2069,
11073,
346,
13296,
346,
273,
19951,
10858,
275,
6976,
964,
401,
2575,
342,
42053,
5052,
34684,
2223,
29771,
342,
7217,
1157,
4795,
275,
247,
1180,
273,
801,
2865,
3428,
4024,
2280,
317,
373,
964,
9658,
253,
954,
8530,
310,
253,
15764,
273,
23466,
12987,
376,
275,
6359,
6976,
275,
1283,
1706,
964,
6102,
18048,
497,
417,
15335,
49215,
2299,
1157,
285,
846,
253,
2752,
455,
16611,
36103,
275,
1457,
3684,
15420,
275,
1283,
1839,
5093,
33671,
497,
288,
4626,
323,
616,
629,
275,
253,
40139,
964,
1723,
1157,
275,
35203,
32009,
253,
594,
1214,
14,
33,
1925,
5418,
3660,
369,
13465,
875,
1283,
1619,
285,
1283,
1237,
1157,
285,
11205,
387,
6276,
954,
273,
253,
8930,
686,
84,
7925,
21251,
4830,
247,
1180,
273,
7011,
4331,
968,
37961,
964,
4129,
352,
3407,
275,
4433,
323,
253,
4782,
1157,
352,
9142,
7369,
275,
10665,
32853,
15995,
253,
7925,
3072,
964,
2490,
733,
778,
320,
31215,
2167,
281,
17154,
253,
7344,
347,
581,
256,
1356,
285,
7194,
14549,
14092,
407,
33671,
327,
38463,
304,
1100,
964,
4129,
1142,
625,
38463,
304,
1100,
4962,
685,
4782,
1157,
436,
778,
452,
574,
625,
281,
513,
342,
253,
20417,
285,
21535,
11361,
11346,
407,
253,
33671,
964,
42053,
21041,
12848,
1157,
533,
497,
7194,
1754,
327,
638,
1214,
14,
33,
5368,
16121,
285,
8615,
8333,
1905,
970,
705,
1032,
1157,
15202,
285,
643,
20523,
8914,
964,
16513,
253,
24984,
22132,
273,
1457,
12123,
285,
3729,
3968,
1157,
327,
253,
2022,
38463,
304,
1100,
4242,
281,
5223,
281,
2525,
253,
5691,
273,
253,
33671,
964,
4129,
627,
497,
690,
10872,
273,
4292,
285,
2390,
28635,
285,
970,
27050,
1157,
436,
369,
417,
14414,
964,
380,
38463,
304,
1100,
497,
1620,
247,
4092,
4668,
4322,
281,
5284,
34684,
1157,
10159,
273,
849,
1199,
253,
34684,
778,
452,
21490,
731,
964,
1623,
15530,
1781,
2390,
273,
38463,
304,
1100,
13964,
253,
34684,
275,
1527,
25061,
285,
247,
6041,
6680,
49984,
1157,
1309,
534,
253,
38463,
304,
1100,
651,
3177,
281,
897,
8936,
3904,
281,
616,
5750,
964,
831,
812,
4536,
320,
3576,
1157,
342,
5012,
273,
731,
26441,
275,
36098,
1154,
4702,
275,
271,
3177,
281,
562,
1258,
1164,
285,
5665,
616,
18062,
1157,
6179,
562,
253,
806,
39767,
273,
13768,
285,
840,
7929,
1981,
616,
705,
1032,
1223,
253,
34684,
31018,
264,
964,
1723,
1157,
824,
1527
] |
warfare usually proved more costly for the Aborigines than the Europeans.
Central to the success of the Europeans was the use of firearms. However, the advantages afforded by firearms have often been overstated. Prior to the late 19th century, firearms were often cumbersome muzzle @-@ loading, smooth @-@ bore, single shot muskets with flint @-@ lock mechanisms. Such weapons produced a low rate of fire, while suffering from a high rate of failure and were only accurate within 50 metres ( 160 ft ). These deficiencies may have initially given the Aborigines an advantage, allowing them to move in close and engage with spears or clubs. Yet by 1850 significant advances in firearms gave the Europeans a distinct advantage, with the six @-@ shot Colt revolver, the Snider single shot breech @-@ loading rifle and later the Martini @-@ Henry rifle, as well as rapid @-@ fire rifles such as the Winchester rifle, becoming available. These weapons, when used on open ground and combined with the superior mobility provided by horses to surround and engage groups of Aborigines, often proved successful. The Europeans also had to adapt their tactics to fight their fast @-@ moving, often hidden enemies. Tactics employed included night @-@ time surprise attacks, and positioning forces to drive the natives off cliffs or force them to retreat into rivers while attacking from both banks.
The conflict lasted for over 150 years and followed the pattern of British settlement in Australia. Beginning in New South Wales with the arrival of the first Europeans in May 1788, it continued in Sydney and its surrounds until the 1820s. As the frontier moved west so did the conflict, pushing into outback New South Wales in the 1840s. In Tasmania, fighting can be traced from 1804 to the 1830s, while in Victoria and the southern parts of South Australia, the majority of the violence occurred during the 1830s and 1840s. The south @-@ west of Western Australia experienced warfare from 1829 to 1850. The war in Queensland began in the area around Brisbane in the 1840s and continued until 1860, moving to central Queensland in the 1850s and 1860s, and then to northern Queensland from the 1860s to 1900. In Western Australia, the violence moved north with European settlement, reaching the Kimberley region by 1880, with violent clashes continuing until the 1920s. In the Northern Territory conflict lasted even later still, especially in central Australia, continuing from the 1880s to the 1930s. One estimate of casualties places European deaths at 2 @,@ 500, while at least 20 @,@ 000 Aborigines are believed to have perished. Far more devastating though was the effect of disease which significantly reduced the Aboriginal population by the beginning of the 20th century ; a fact which may also have limited their ability to resist.
= = = New Zealand Wars, 1861 – 64 = = =
= = = = Taranaki War = = = =
In 1861, the Victorian ship HMCSS Victoria was dispatched to help the New Zealand colonial government in its war against Māori in Taranaki. Victoria was subsequently used for patrol duties and logistic support, although a number of personnel were involved in actions against Māori fortifications. One sailor died from an accidental gunshot wound during the deployment.
= = = = Invasion of the Waikato = = = =
In late 1863, the New Zealand government requested troops to assist in the invasion of the Waikato province against the Māori. Promised settlement on confiscated land, more than 2 @,@ 500 Australians ( over half of whom were from Victoria ) were recruited to form four Waikato Regiments. Other Australians became scouts in the Company of Forest Rangers. Despite experiencing arduous conditions the Australians were not heavily involved in battle, and were primarily used for patrolling and garrison duties. Australians were involved in actions at Matarikoriko, Pukekohe East, Titi Hill, Ōrākau and Te Ranga. Fewer than 20 were believed to have been killed in action. The conflict was over by 1864, and the Waikato Regiments disbanded in 1867. However, many of the soldiers who had chosen to claim farmland at the cessation of hostilities had drifted to the towns and cities by the end of the decade, while many others had returned to Australia.
= = = Colonial military forces, 1870 – 1901 = = =
From 1870 until 1901, each of the six colonial governments was responsible for their own defence. The colonies had gained responsible government between 1855 and 1890, and while the Colonial Office in London retained control of some affairs, the Governor of the each colony was required to raise their own colonial militia. To do this, they were granted the authority from the British crown to raise military and naval forces. Initially these were militias in support of British regulars, but when military support for the colonies ended in 1870, the colonies assumed their own defence responsibilities. The colonial military forces included unpaid volunteer militia, paid citizen soldiers, and a small permanent component. They were mainly infantry, cavalry and mounted infantry, and were neither housed in barracks nor subject to full military discipline. Even after significant reforms in the 1870s — including the expansion of the permanent forces to include engineer and artillery units — they remained too small and unbalanced to be considered armies in the modern sense. By 1885, the forces numbered 21 @,@ 000 men. Although they could not be compelled to serve overseas many volunteers subsequently did see action in a number conflicts of the British Empire during the 19th century, with the colonies raising contingents to serve in Sudan, South Africa and China.
Despite a reputation of colonial inferiority, many of the locally raised units were highly organised, disciplined, professional, and well trained. During this period, defences in Australia mainly revolved around static defence by combined infantry and artillery, based on garrisoned coastal forts. However, by the 1890s, improved railway communications between the mainland eastern colonies led Major General James Edwards — who had recently completed a survey of colonial military forces — to the belief that the colonies could be defended by the rapid mobilisation of brigades of infantry. As a consequence he called for a restructure of defences, and defensive agreements to be made between the colonies. Edwards argued for the colonial forces to be federated and for professional units — obliged to serve anywhere in the South Pacific — to replace the volunteer forces. These views found support in the influential New South Wales Commandant, Major General Edward Hutton, however suspicions held by the smaller colonies towards New South Wales and Victoria stifled the proposal. These reforms remaining unresolved however, and defence issues were generally given little attention in the debate on the political federation of the colonies.
With the exception of Western Australia, the colonies also operated their own navies. In 1856, Victoria received its own naval vessel, HMCSS Victoria, and its deployment to New Zealand in 1860 during the First Taranaki War marked the first occasion that an Australian warship had been deployed overseas. The colonial navies were expanded greatly in the mid @-@ 1880s and consisted of a number of gunboats and torpedo @-@ boats for the defence of harbours and rivers, as well as naval brigades to man vessels and forts. Victoria became the most powerful of all the colonial navies, with the ironclad HMVS Cerberus in service from 1870, as well as the steam @-@ sail warship HMS Nelson on loan from the Royal Navy, three small gunboats and five torpedo @-@ boats. New South Wales formed a Naval Brigade in 1863 and by the start of the 20th century had two small torpedo @-@ boats and a corvette. The Queensland Maritime Defence Force was established in 1885, while South Australia operated a single ship, HMCS Protector. Tasmania had also a small Torpedo Corps, while Western Australia's only naval defences included the Fremantle Naval Artillery. Naval personnel from New South Wales and Victoria took part in the suppression of the Boxer Rebellion in China in 1900, while HMCS Protector was sent by South Australia but saw no action. The separate colonies maintained control over their military and naval forces until Federation in 1901, when they were amalgamated and placed under the control of the new Commonwealth of Australia.
= = = Sudan, 1885 = = =
During the early years of the 1880s, an Egyptian regime in the Sudan, backed by the British, came under threat from rebellion under the leadership of native Muhammad Ahmad ( or Ahmed ), known as Mahdi to his followers. In 1883, as part of the Mahdist War, the Egyptians sent an army to deal with the revolt, but they were defeated and faced a difficult campaign of extracting their forces. The British instructed the Egyptians to abandon the Sudan, and sent General Charles Gordon to co @-@ ordinate the evacuation, but he was killed in January 1885. When news of his death arrived in New South Wales in February 1885, the government offered to send forces and meet the contingent's expenses. The New South Wales Contingent consisted of an infantry battalion of 522 men and 24 officers, and an artillery battery of 212 men and sailed from Sydney on 3 March 1885.
The contingent arrived in Suakin on 29 March and were attached to a brigade that consisted of Scots, Grenadier and Coldstream Guards. They subsequently marched for Tamai in a large " square " formation made up of 10 @,@ 000 men. Reaching the village, they burned huts and returned to Suakin : three Australians were wounded in minor fighting. Most of the contingent was then sent to work on a railway line that was being laid across the desert towards Berber, on the Nile. The Australians were then assigned to guard duties, but soon a camel corps was raised | wikitext_103 | [
27205,
3798,
8058,
625,
19983,
323,
253,
38463,
304,
1100,
685,
253,
33671,
964,
2490,
8170,
281,
253,
2323,
273,
253,
33671,
369,
253,
897,
273,
27050,
964,
1723,
1157,
253,
11361,
26299,
407,
27050,
452,
2223,
644,
689,
33834,
964,
13036,
281,
253,
3563,
655,
394,
5331,
1157,
27050,
497,
2223,
41049,
12910,
12610,
1214,
14,
33,
10935,
1157,
6032,
1214,
14,
33,
17564,
1157,
2014,
5103,
1948,
43846,
342,
892,
565,
1214,
14,
33,
5569,
6297,
964,
6102,
8914,
4197,
247,
1698,
2281,
273,
3289,
1157,
1223,
9958,
432,
247,
1029,
2281,
273,
4433,
285,
497,
760,
7899,
1561,
2456,
26156,
313,
12036,
23899,
2387,
964,
2053,
30218,
778,
452,
8523,
1677,
253,
38463,
304,
1100,
271,
5750,
1157,
6941,
731,
281,
2118,
275,
2810,
285,
11377,
342,
705,
1032,
390,
15202,
964,
9110,
407,
38367,
1534,
16424,
275,
27050,
3534,
253,
33671,
247,
5799,
5750,
1157,
342,
253,
2800,
1214,
14,
33,
5103,
2065,
85,
3585,
14930,
1157,
253,
11982,
1334,
2014,
5103,
20831,
348,
1214,
14,
33,
10935,
20260,
285,
1996,
253,
5794,
5391,
1214,
14,
33,
8966,
20260,
1157,
347,
973,
347,
5233,
1214,
14,
33,
3289,
36064,
824,
347,
253,
411,
47724,
2971,
20260,
1157,
7552,
2130,
964,
2053,
8914,
1157,
672,
908,
327,
1527,
3216,
285,
5678,
342,
253,
8936,
16239,
2530,
407,
12074,
281,
5665,
285,
11377,
2390,
273,
38463,
304,
1100,
1157,
2223,
8058,
5547,
964,
380,
33671,
671,
574,
281,
5223,
616,
21041,
281,
3819,
616,
3809,
1214,
14,
33,
4886,
1157,
2223,
8763,
13948,
964,
308,
514,
982,
7091,
2908,
2360,
1214,
14,
33,
673,
9326,
8104,
1157,
285,
19274,
5621,
281,
4446,
253,
38646,
745,
44122,
390,
3490,
731,
281,
19015,
715,
21646,
1223,
20362,
432,
1097,
10907,
964,
2490,
380,
7344,
20578,
323,
689,
7783,
1107,
285,
3560,
253,
3102,
273,
4782,
10858,
275,
6976,
964,
43312,
275,
1457,
3684,
15420,
342,
253,
13024,
273,
253,
806,
33671,
275,
2552,
1722,
2055,
1157,
352,
4821,
275,
17361,
285,
697,
46168,
1919,
253,
1283,
938,
84,
964,
1284,
253,
34642,
4395,
8935,
594,
858,
253,
7344,
1157,
13383,
715,
562,
2135,
1457,
3684,
15420,
275,
253,
46537,
84,
964,
496,
35203,
32009,
1157,
8615,
476,
320,
26098,
432,
1283,
2125,
281,
253,
46215,
84,
1157,
1223,
275,
16225,
285,
253,
11053,
4243,
273,
3684,
6976,
1157,
253,
5020,
273,
253,
7217,
5866,
1309,
253,
46215,
84,
285,
46537,
84,
964,
380,
6420,
1214,
14,
33,
8935,
273,
6359,
6976,
7407,
27205,
432,
1283,
1717,
281,
38367,
964,
380,
2137,
275,
28748,
3407,
275,
253,
2170,
1475,
40767,
275,
253,
46537,
84,
285,
4821,
1919,
36525,
1157,
4886,
281,
4275,
28748,
275,
253,
38367,
84,
285,
36525,
84,
1157,
285,
840,
281,
11186,
28748,
432,
253,
36525,
84,
281,
24810,
964,
496,
6359,
6976,
1157,
253,
7217,
4395,
6146,
342,
5284,
10858,
1157,
10922,
253,
46907,
2205,
2919,
407,
32626,
1157,
342,
12338,
45880,
11440,
1919,
253,
18471,
84,
964,
496,
253,
11442,
36943,
7344,
20578,
1014,
1996,
1335,
1157,
3340,
275,
4275,
6976,
1157,
11440,
432,
253,
32626,
84,
281,
253,
17437,
84,
964,
2596,
6642,
273,
32853,
5053,
5284,
8923,
387,
374,
1214,
13,
33,
6783,
1157,
1223,
387,
1878,
1384,
1214,
13,
33,
20181,
38463,
304,
1100,
403,
6566,
281,
452,
591,
1428,
964,
10351,
625,
25205,
2167,
369,
253,
1055,
273,
2728,
534,
3012,
3777,
253,
42053,
3072,
407,
253,
5068,
273,
253,
1384,
394,
5331,
3706,
247,
958,
534,
778,
671,
452,
3710,
616,
3745,
281,
11623,
964,
4928,
187,
426,
426,
426,
1457,
12123,
14848,
1157,
42129,
1108,
6705,
426,
426,
426,
4928,
19668,
426,
426,
426,
426,
20081,
266,
11938,
3660,
426,
426,
426,
426,
4928,
187,
496,
42129,
1157,
253,
27794,
6215,
388,
7722,
3528,
16225,
369,
39752,
281,
1361,
253,
1457,
12123,
21441,
2208,
275,
697,
2137,
1411,
353,
5617,
8885,
275,
20081,
266,
11938,
964,
16225,
369,
9674,
908,
323,
21820,
12803,
285,
21535,
1329,
1157,
3738,
247,
1180,
273,
11570,
497,
3206,
275,
5231,
1411,
353,
5617,
8885,
7574,
6787,
964,
2596,
45758,
4962,
432,
271,
31120,
5654,
11860,
10785,
1309,
253,
19007,
964,
4928,
187,
426,
426,
426,
426,
17595,
4930,
273,
253,
23224,
1479,
4611,
426,
426,
426,
426,
4928,
187,
496,
3563,
43450,
1157,
253,
1457,
12123,
2208,
9521,
10824,
281,
10073,
275,
253,
11492,
273,
253,
23224,
1479,
4611,
14254,
1411,
253,
353,
5617,
8885,
964,
13798,
1701,
10858,
327,
38509,
456,
2659,
1157,
625,
685,
374,
1214,
13,
33,
6783,
45373,
313,
689,
2716,
273,
5207,
497,
432,
16225,
2387,
497,
17875,
281,
830,
1740,
23224,
1479,
4611,
3667,
3825,
964,
5131,
45373,
3395,
660,
8349,
275,
253,
6487,
273,
16015,
29629,
964,
9937,
18492,
549,
563,
528,
2515,
253,
45373,
497,
417,
11306,
3206,
275,
6680,
1157,
285,
497,
8558,
908,
323,
869,
19891,
285,
49564,
12803,
964,
45373,
497,
3206,
275,
5231,
387,
6397,
274,
1479,
263,
20592,
1157,
14902,
413,
7381,
248,
5791,
1157,
308,
15208,
7061,
1157,
6078,
223,
83,
5617,
76,
1952,
285,
2745,
416,
28874,
964,
29578,
254,
685,
1384,
497,
6566,
281,
452,
644,
5339,
275,
2250,
964,
380,
7344,
369,
689,
407,
44956,
1157,
285,
253,
23224,
1479,
4611,
3667,
3825,
557,
4152,
264,
275,
50220,
964,
1723,
1157,
1142,
273,
253,
9647,
665,
574,
6777,
281,
1750,
6389,
1373,
387,
253,
32822,
273,
3167,
3191,
574,
39147,
281,
253,
15918,
285,
8238,
407,
253,
990,
273,
253,
9976,
1157,
1223,
1142,
2571,
574,
4895,
281,
6976,
964,
4928,
187,
426,
426,
426,
44435,
4668,
5621,
1157,
35828,
1108,
40488,
426,
426,
426,
4928,
187,
4325,
35828,
1919,
40488,
1157,
1016,
273,
253,
2800,
21441,
13001,
369,
5506,
323,
616,
1211,
17147,
964,
380,
19665,
574,
12103,
5506,
2208,
875,
1283,
2417,
285,
32789,
1157,
285,
1223,
253,
44435,
7454,
275,
4693,
14667,
1453,
273,
690,
13909,
1157,
253,
15636,
273,
253,
1016,
17562,
369,
2424,
281,
7164,
616,
1211,
21441,
39260,
964,
1916,
513,
436,
1157,
597,
497,
7169,
253,
6265,
432,
253,
4782,
16834,
281,
7164,
4668,
285,
25186,
5621,
964,
32312,
841,
497,
14269,
6358,
275,
1329,
273,
4782,
3963,
84,
1157,
533,
672,
4668,
1329,
323,
253,
19665,
7402,
275,
35828,
1157,
253,
19665,
8025,
616,
1211,
17147,
19715,
964,
380,
21441,
4668,
5621,
2908,
35778,
20848,
39260,
1157,
5087,
15245,
9647,
1157,
285,
247,
1355,
9928,
4445,
964,
1583,
497,
7194,
32468,
1157,
36248,
285,
10877,
32468,
1157,
285,
497,
6747,
24981,
275,
38700,
7305,
4543,
2256,
281,
2120,
4668,
17518,
964,
4952,
846,
1534,
23809,
275,
253,
35828,
84,
1905,
1690,
253,
7466,
273,
253,
9928,
5621,
281,
2486,
16518,
285,
29923,
5085,
1905,
597,
6376,
1512,
1355,
285,
440,
30063,
281,
320,
2783,
29894,
275,
253,
4980,
3282,
964,
2896,
46416,
1157,
253,
5621,
31050,
3127,
1214,
13,
33,
20181,
1821,
964,
4129,
597,
812,
417,
320,
25042,
281,
5752,
21344,
1142,
15986,
9674,
858,
923,
2250,
275,
247,
1180,
15272,
273,
253,
4782,
13958,
1309,
253,
655,
394,
5331,
1157,
342,
253,
19665,
12976,
21745,
592,
281,
5752,
275,
27325,
1157,
3684,
7531,
285,
4135,
964,
2490,
9937,
247,
12681,
273,
21441,
18134,
414,
1157,
1142,
273,
253,
12171,
5439,
5085,
497,
4122,
29070,
1157,
48310,
1157,
5702,
1157,
285,
973,
10166,
964,
6408,
436,
2180,
1157,
809,
2979,
275,
6976,
7194,
3585,
5336,
1475,
4228,
17147,
407,
5678,
32468,
285,
29923,
1157,
1754,
327,
49564,
264,
22431,
46805,
964,
1723,
1157,
407,
253,
32789,
84,
1157,
5520,
18217,
10924,
875,
253,
31584,
14730,
19665,
3977,
11432,
4214,
5490,
24006,
1905,
665,
574,
4102,
6312,
247,
6630,
273,
21441,
4668,
5621,
1905,
281,
253,
9927,
326,
253,
19665,
812,
320,
25860,
407,
253,
5233,
31551,
5837,
273,
28097,
3355,
273,
32468,
964,
1284,
247,
9936,
344,
1925,
323,
247,
1551,
7818,
273,
809,
2979,
1157,
285,
14397,
15486,
281,
320,
1160,
875,
253,
19665,
964,
24006,
9125,
323,
253,
21441,
5621,
281,
320,
10208,
12072,
285,
323,
5702,
5085,
1905,
26337,
281,
5752,
9825,
275,
253,
3684,
11553,
1905,
281,
8171,
253,
20848,
5621,
964,
2053,
6849,
1119,
1329,
275,
253,
20803,
1457,
3684,
15420,
15755,
386,
1157,
11432,
4214,
12824,
388,
28738,
1157,
2299,
44873,
2918,
407,
253,
4577,
19665,
4404,
1457,
3684,
15420,
285,
16225,
331,
338,
1070,
253,
10419,
964,
2053,
23809,
5780,
39394,
2299,
1157,
285,
17147,
3374,
497,
3839,
1677,
1652,
4116,
275,
253,
8881,
327,
253,
3569,
10208,
3328,
273,
253,
19665,
964,
2490,
2726,
253,
6517,
273,
6359,
6976,
1157,
253,
19665,
671,
11658,
616,
1211,
6563,
447,
964,
496,
1283,
3208,
1157,
16225,
2959,
697,
1211,
25186,
11179,
1157,
388,
7722,
3528,
16225,
1157,
285,
697,
19007,
281,
1457,
12123,
275,
36525,
1309,
253,
3973,
20081,
266,
11938,
3660,
7101,
253,
806,
8120,
326,
271,
9943,
16860,
1456,
574,
644,
18329,
21344,
964,
380,
21441,
6563,
447,
497,
11848,
10260,
275,
253,
4260,
1214,
14,
33,
32626,
84,
285,
14278,
273,
247,
1180,
273,
5654,
45686,
285,
41007,
80,
1214,
14,
33,
19750,
323,
253,
17147,
273,
37050,
2108,
285,
21646,
1157,
347,
973,
347,
25186,
28097,
3355,
281,
637,
12671,
285,
46805,
964,
16225,
3395,
253,
954,
6422,
273,
512,
253,
21441,
6563,
447,
1157,
342,
253,
6871,
498,
324,
20307,
28259,
28608,
589,
316,
275,
2579,
432,
35828,
1157,
347,
973,
347,
253,
15401,
1214,
14,
33,
15901,
16860,
1456,
388,
3338,
19027,
327,
10119,
432,
253,
10043,
13669,
1157,
1264,
1355,
5654,
45686,
285,
2620,
41007,
80,
1214,
14,
33,
19750,
964,
1457,
3684,
15420,
4447,
247,
29066,
34412,
275,
43450,
285,
407,
253,
1265,
273,
253,
1384,
394,
5331,
574,
767,
1355,
41007,
80,
1214,
14,
33,
19750,
285,
247,
944,
48359,
964,
380,
28748,
2398,
25832,
32831,
10627,
369,
4232,
275,
46416,
1157,
1223,
3684,
6976,
11658,
247,
2014,
6215,
1157,
20307,
5166,
8694,
1870,
964,
35203,
32009,
574,
671,
247,
1355,
7608,
9357,
80,
17729,
1157,
1223,
6359,
6976,
686,
84,
760,
25186,
809,
2979,
2908,
253,
401,
2013,
386,
282,
29066,
3975,
21347,
964,
29066,
11570,
432,
1457,
3684,
15420,
285,
16225,
2335,
629,
275,
253,
14523,
273,
253,
14423,
254,
1720,
10910,
279,
275,
4135,
275,
24810,
1157,
1223,
20307,
5166,
8694,
1870,
369,
2197,
407,
3684,
6976,
533,
3047,
642,
2250,
964,
380,
4858,
19665,
8838,
1453,
689,
616,
4668,
285,
25186,
5621,
1919,
20369,
275,
40488,
1157,
672,
597,
497,
47780,
312,
456,
285,
4845,
762,
253,
1453,
273,
253,
747,
16342,
273,
6976,
964,
4928,
187,
426,
426,
426,
27325,
1157,
46416,
426,
426,
426,
4928,
187,
6408,
253,
2393,
1107,
273,
253,
32626,
84,
1157,
271,
22437,
9459,
275,
253,
27325,
1157,
17245,
407,
253,
4782,
1157,
2210,
762,
4322,
432,
32480,
762,
253,
9550,
273,
7925,
28453,
39505,
313,
390,
32787,
2387,
1157,
1929,
347,
12828,
5168,
281,
521,
18409,
964,
496,
1283,
3245,
1157,
347,
629,
273,
253,
12828,
8155,
3660,
1157,
253,
10253,
2458,
2197,
271,
8544,
281,
2968,
342,
253,
36733,
1157,
533,
597,
497,
16473,
285,
11372,
247,
2834,
4544,
273,
34705,
616,
5621,
964,
380,
4782,
17189,
253,
10253,
2458,
281,
9488,
253,
27325,
1157,
285,
2197,
4214,
8444,
17419,
281,
820,
1214,
14,
33,
4036,
4024,
253,
39774,
1157,
533,
344,
369,
5339,
275,
4247,
46416,
964,
2091,
3668,
273,
521,
2471,
7244,
275,
1457,
3684,
15420,
275,
5080,
46416,
1157,
253,
2208,
5907,
281,
5007,
5621,
285,
2525,
253,
32391,
686,
84,
12222,
964,
380,
1457,
3684,
15420,
3267,
272,
290,
14278,
273,
271,
32468,
40716,
273,
39603,
1821,
285,
2164,
6251,
1157,
285,
271,
29923,
9378,
273,
21990,
1821,
285,
33497,
432,
17361,
327,
495,
3919,
46416,
964,
2490,
380,
32391,
7244,
275,
4137,
28709,
327,
3285,
3919,
285,
497,
7660,
281,
247,
43594,
326,
14278,
273,
45690,
1157,
34450,
47176,
285,
20754,
4963,
43649,
964,
1583,
9674,
31653,
323,
16219,
2284,
275,
247,
1781,
346,
6278,
346,
4702,
1160,
598,
273,
884,
1214,
13,
33,
20181,
1821,
964,
1720,
5250,
253,
7773,
1157,
597,
15676,
288,
14298,
285,
4895,
281,
4137,
28709,
1163,
1264,
45373,
497,
16545,
275,
5884,
8615,
964,
5595,
273,
253,
32391,
369,
840,
2197,
281,
789,
327,
247,
18217,
1386,
326,
369,
1146,
10090,
2439,
253,
13438,
4404,
6193,
589,
1157,
327,
253,
43093,
964,
380,
45373,
497,
840,
7922,
281,
7496,
12803,
1157,
533,
3517,
247,
46493,
23493,
369,
5439
] |
who was accused of corruption in the 1299 document and was later called ‘ dominus de Papay ’. ( The story of his unfortunate daughter is referred to above. ) The remains of Duke Hakon's thirteenth @-@ century house are still visible near Housa Voe.
= = = Scots rule and fishing = = =
In 1469 Shetland came under nominal Scottish control, although the Norse'Lairds of Norway'kept their Papa Stour estates until the 17th century. In the 16th century merchants from Bremen and Hamburg were operating a summer trading booth to buy fish from the local fleet. By the 18th century, two Scottish lairds, Thomas Gifford of Busta, and Arthur Nicolson of Lerwick, owned the island. They maintained a prosperous Haaf ( Old Norse :'deep sea') fishing industry, undertaken in the summer months using six @-@ oared boats known as sixareens.
In addition to the leper colony on Brei Holm there may have been another at Hilla Fielle overlooking Hamna Voe. A recent archaeological survey was inconclusive but suggests the site may be much older than the supposed 18th century colony.
The island church, which overlooks Kirk Sand in the bay of Fore Wick, was founded in 1806. 300 metres from the present church there may be an older chapel site of Sneeans or Snøyans on the headland between the west end of Kirk Sand and the bay of Tusselby. It is called the'ald kirk'by locals and referred to by the Ordnance Survey as " the site of a Romish chapel belonging to about the twelfth century ". There is a tradition that the work there was interfered with by supernatural powers and that each day's work on the building was destroyed during the night. Eventually the cornerstones were moved overnight by these unearthly agencies to the present site of the church and work was re @-@ commenced there successfully. Excavations in 2004 found little besides large blocks of rhyolite and a piece of whalebone rib, suggesting that the oral tradition may have some truth to it.
In the 19th century the Crabbaberry fishing station in West Voe was opened and the island had a population of 360 people or more. However, fuel shortages and a decline in fishing due to the introduction of steam drifters saw a fall in population from the 1870s on. At this time another duel entered the history of Papa Stour. Edwin Lindsay, an Indian army officer and the son of the 6th Earl of Balcarres, was declared insane and sent to the island in disgrace after refusing to fight in one. He spent 26 years as a prisoner before the Quaker preacher Catherine Watson arranged for his release in 1835. Lindsay's Well is a spring at the south of the island where he was allowed to bathe.
There are good examples of horizontal water mills, also known as Norse or Clack Mills, around Dutch Loch. Originally these were two story buildings with turf roofs, built into banks to give access to the upper floor where the mill @-@ stone was sited. Inside the building there was a fixed lower millstone, and a rotating upper millstone driven by the water falling onto the paddles below. Some were still in use on Papa Stour in the early years of the 20th century, and there is still a working example of one of these mills on the Burn of Clumlie, at Troswick in the south Mainland of Shetland.
= = = 20th and 21st centuries = = =
In common with many small Scottish islands, Papa Stour's population peaked in the 19th century and has experienced a significant decline since then ( see e.g. Mingulay ). By 1970 the island school had closed and the population had declined to sixteen'fairly elderly'residents, but an advertisement in Exchange and Mart reversed the decline. A croft and five sheep were offered free of charge to incomers which brought a flood of applicants. By 1981 the census recorded a population of 33. However, by 2005 the population had fallen to 20 after serious discord between islanders led to several court cases. A number of people left the island and the school closed. By early 2008 the population had dropped to just nine after a family of seven left. The 2011 census recorded a usually resident population of 15 - during the decade 2011 @-@ 11 Scottish island populations as a whole grew by 4 % to 103 @,@ 702.
Overview of population trends
= = = Shipwrecks = = =
The coasts around Papa Stour have claimed numerous wrecks. In Hamnavoe, Tiptans Skerry alone has sunk Dutch, French, German and Norwegian ships.
The Aberdeen trawler Ben Doran A178, foundered on the Ve Skerries 3 miles northwest of Papa Stour, on the evening of 28 March 1930 while on her way to the village of Scalloway to land her catch. When she grounded weather conditions were fairly good but it was not until the following day that a passing trawler saw, and reported the wreck. By the time that various rescue attempts were launched by the coastguard and local volunteers ( there being no lifeboat in Shetland at that time ), weather conditions had deteriorated to the point where it was impossible to approach the skerries. A request had been made for the Stromness lifeboat from Orkney, only 120 miles away, to launch, but the request was made too late to be of help. All 9 crew perished in the wreck. Only 3 bodies were recovered, that of James Mitchell, which was returned to Aberdeen, and the bodies of J. Cormack and J.R. Insh, which were buried in Scalloway.
The cargo ship SS Highcliffe ran aground in fog on Forewick Holm in February 1940. On this occasion the conditions were clement and only the ship and cargo were lost. In 1967 the Aberdeen trawler Juniper ran aground in Lyra Sound at the bottom of the 60 metres ( 200 feet ) cliffs. The 12 man crew were rescued by the Aith lifeboat, the coxswain being awarded the RNLI silver medal for this rescue.
Papa Stour's most recent shipwreck occurred on 9 December 1977 when the Aberdeen trawler Elinor Viking A278, skipper Alec Flett, foundered on the Ve Skerries. The Aith Lifeboat came to the scene but was unable to get near enough to rescue the crew because of the sea conditions. At the request of Alec Webster, Coastguard Station Officer, Lerwick, a volunteer crew in a British Airways Sikorsky S61N helicopter from Sumburgh Airport was scrambled. They managed to winch all the boat's crew to safety within hours of the grounding, despite the storm force winds. The helicopter crew later received a number of awards for bravery. There was no loss of life, but this incident prompted the building of a lighthouse on the skerries in 1979, and may also have been the example required for the formation of the present Search and Rescue helicopter unit, based at Sumburgh Airport.
= = Economy & Transport = =
Crofting is the mainstay of island life. Sheep form the backbone of the agricultural economy but a diversity livestock are kept, including cattle, pigs, goats, chickens, ducks and geese. Vegetable are grown too, often in the shelter of circular walls, such plots being known as'plantie scrubs '. Fishing is still conducted but on a relatively small scale. There is a post office at the pier, but no shop. Mains electricity only came to the island at the close of the twentieth century. The Papa Stour Project is a Christian supported housing service offering accommodation to men with drug and alcohol issues. Ferries now sail across the Sound of Papa to West Burrafirth on the Shetland Mainland. The crossing takes 45 minutes, and although the Snolda carries cars, there is only one short road on the island.For visiting yachts the four main voes provide good shelter, but the strong tides in both the Sound of Papa and to the north west require considerable care.
= = = Airstrip = = =
There is an airstrip which caters for regular flights from Tingwall.
= = Culture and the arts = =
The Papa Stour sword dance may be of Norse origin and bears similarities to the long sword dance of the north east of England. A description of the dance appears in The Pirate by Sir Walter Scott.
The writer and journalist John Sands lived on Papa Stour and Foula for a while during the late nineteenth century. The writer, folklorist and musician, George P. S. Peterson was brought up on Papa Stour.
It is also the'Papa'of Vagaland's poem Da Sang o da Papa men, now adopted as part of the folksong tradition, as set to music by T.M.Y. Manson. The insistent chorus chant,'Rowin Foula Doon! ', is particularly striking.
" Oot bewast da Horn o Papa,
Rowin Foula doon!
Owir a hidden piece o water,
Rowin Foula doon!
Roond da boat da tide @-@ lumps makkin,
Sunlicht trowe da cloods is brakkin ;
We maan geng whaar fish is takkin,
Rowin Foula doon! "
" Rowin Foula doon | wikitext_103 | [
665,
369,
10145,
273,
16933,
275,
253,
1249,
1525,
3389,
285,
369,
1996,
1925,
2802,
7630,
316,
372,
17206,
333,
15956,
964,
313,
380,
2926,
273,
521,
23293,
6122,
310,
6289,
281,
1840,
964,
2387,
380,
4558,
273,
14913,
388,
518,
251,
686,
84,
20960,
16565,
1214,
14,
33,
5331,
2419,
403,
1335,
7985,
2822,
388,
528,
66,
657,
3703,
964,
4928,
187,
426,
426,
426,
45690,
4086,
285,
15133,
426,
426,
426,
4928,
187,
496,
1638,
2090,
1500,
85,
1373,
2210,
762,
25662,
17960,
1453,
1157,
3738,
253,
7087,
339,
686,
418,
1094,
1397,
273,
20341,
686,
4934,
616,
40208,
659,
454,
42183,
1919,
253,
1722,
394,
5331,
964,
496,
253,
1668,
394,
5331,
30380,
432,
378,
2013,
257,
285,
38343,
497,
6498,
247,
5768,
11947,
32405,
281,
4489,
6773,
432,
253,
1980,
18500,
964,
2896,
253,
1283,
394,
5331,
1157,
767,
17960,
826,
14950,
1157,
7195,
443,
1648,
636,
273,
378,
38334,
1157,
285,
15948,
12951,
42304,
273,
41664,
15989,
1157,
9633,
253,
8930,
964,
1583,
8838,
247,
47058,
10664,
2320,
313,
8937,
7087,
339,
1163,
686,
3676,
6150,
686,
2387,
15133,
4491,
1157,
20023,
275,
253,
5768,
2607,
970,
2800,
1214,
14,
33,
258,
1096,
19750,
1929,
347,
2800,
609,
561,
964,
2490,
496,
1635,
281,
253,
458,
468,
17562,
327,
7528,
74,
4716,
78,
627,
778,
452,
644,
1529,
387,
388,
6077,
401,
43808,
37159,
5516,
2072,
657,
3703,
964,
329,
3332,
39327,
6630,
369,
16656,
7426,
533,
5936,
253,
2670,
778,
320,
1199,
5662,
685,
253,
6326,
1283,
394,
5331,
17562,
964,
2490,
380,
8930,
6105,
1157,
534,
20621,
84,
22579,
7889,
275,
253,
17699,
273,
7995,
47172,
1157,
369,
11420,
275,
1283,
3071,
964,
7469,
26156,
432,
253,
1246,
6105,
627,
778,
320,
271,
5662,
34086,
2670,
273,
322,
31066,
507,
390,
11982,
7256,
90,
507,
327,
253,
1481,
1373,
875,
253,
8935,
990,
273,
22579,
7889,
285,
253,
17699,
273,
308,
1316,
293,
1615,
964,
733,
310,
1925,
253,
686,
50171,
465,
11131,
686,
407,
25108,
285,
6289,
281,
407,
253,
2207,
17915,
593,
17136,
347,
346,
253,
2670,
273,
247,
9916,
763,
34086,
15823,
281,
670,
253,
2500,
44453,
5331,
346,
964,
1707,
310,
247,
4062,
326,
253,
789,
627,
369,
734,
3850,
342,
407,
34612,
9136,
285,
326,
1016,
1388,
686,
84,
789,
327,
253,
3652,
369,
11069,
1309,
253,
2360,
964,
25010,
253,
7145,
35695,
497,
4395,
13463,
407,
841,
440,
29500,
314,
11009,
281,
253,
1246,
2670,
273,
253,
6105,
285,
789,
369,
294,
1214,
14,
33,
24488,
627,
8379,
964,
1889,
43205,
569,
275,
6157,
1119,
1652,
16280,
1781,
8336,
273,
391,
1994,
46431,
285,
247,
5313,
273,
35105,
15801,
9412,
1157,
7738,
326,
253,
7946,
4062,
778,
452,
690,
5083,
281,
352,
964,
2490,
496,
253,
655,
394,
5331,
253,
7306,
8902,
357,
9587,
15133,
4660,
275,
4255,
657,
3703,
369,
5485,
285,
253,
8930,
574,
247,
3072,
273,
16951,
952,
390,
625,
964,
1723,
1157,
7236,
46163,
285,
247,
10343,
275,
15133,
1955,
281,
253,
10199,
273,
15401,
1837,
338,
1336,
3047,
247,
2965,
275,
3072,
432,
253,
35828,
84,
327,
964,
2058,
436,
673,
1529,
3443,
293,
5966,
253,
2892,
273,
40208,
659,
454,
964,
42266,
44056,
1157,
271,
5396,
8544,
5908,
285,
253,
3347,
273,
253,
721,
394,
22992,
273,
11960,
5546,
373,
1157,
369,
8884,
24812,
285,
2197,
281,
253,
8930,
275,
40655,
846,
21455,
281,
3819,
275,
581,
964,
754,
5262,
3436,
1107,
347,
247,
18897,
1078,
253,
3277,
4584,
50146,
23425,
21571,
10912,
323,
521,
3727,
275,
1283,
1671,
964,
44056,
686,
84,
6089,
310,
247,
7203,
387,
253,
6420,
273,
253,
8930,
835,
344,
369,
4136,
281,
270,
4349,
964,
2490,
1707,
403,
1175,
6667,
273,
11593,
1824,
47452,
1157,
671,
1929,
347,
7087,
339,
390,
1639,
471,
28750,
1157,
1475,
13986,
418,
3770,
964,
37405,
841,
497,
767,
2926,
9195,
342,
44409,
45784,
1157,
4270,
715,
10907,
281,
1918,
2289,
281,
253,
5170,
5254,
835,
253,
5499,
1214,
14,
33,
8805,
369,
256,
959,
964,
25081,
253,
3652,
627,
369,
247,
4229,
2406,
5499,
10228,
1157,
285,
247,
17387,
5170,
5499,
10228,
8877,
407,
253,
1824,
10805,
4830,
253,
41243,
868,
2708,
964,
3808,
497,
1335,
275,
897,
327,
40208,
659,
454,
275,
253,
2393,
1107,
273,
253,
1384,
394,
5331,
1157,
285,
627,
310,
1335,
247,
2444,
1650,
273,
581,
273,
841,
47452,
327,
253,
19941,
273,
1639,
360,
9114,
1157,
387,
17798,
39127,
275,
253,
6420,
11505,
1373,
273,
1500,
85,
1373,
964,
4928,
187,
426,
426,
426,
1384,
394,
285,
3127,
296,
14020,
426,
426,
426,
4928,
187,
496,
1846,
342,
1142,
1355,
17960,
17546,
1157,
40208,
659,
454,
686,
84,
3072,
33404,
275,
253,
655,
394,
5331,
285,
556,
7407,
247,
1534,
10343,
1580,
840,
313,
923,
299,
15,
72,
15,
46095,
335,
333,
2387,
964,
2896,
10333,
253,
8930,
2143,
574,
4581,
285,
253,
3072,
574,
13072,
281,
25279,
686,
9648,
13988,
686,
8811,
1157,
533,
271,
28064,
275,
18517,
285,
5794,
13891,
253,
10343,
964,
329,
9187,
649,
285,
2620,
16396,
497,
5907,
1959,
273,
4179,
281,
275,
681,
398,
534,
3982,
247,
10802,
273,
26828,
964,
2896,
13402,
253,
20740,
5950,
247,
3072,
273,
5922,
964,
1723,
1157,
407,
5826,
253,
3072,
574,
13547,
281,
1384,
846,
4092,
37600,
875,
8930,
398,
3977,
281,
2067,
1302,
2219,
964,
329,
1180,
273,
952,
1669,
253,
8930,
285,
253,
2143,
4581,
964,
2896,
2393,
4695,
253,
3072,
574,
8231,
281,
816,
7457,
846,
247,
2021,
273,
5093,
1669,
964,
380,
4332,
20740,
5950,
247,
3798,
14544,
3072,
273,
1458,
428,
1309,
253,
9976,
4332,
1214,
14,
33,
1903,
17960,
8930,
7625,
347,
247,
2644,
8899,
407,
577,
2462,
281,
13062,
1214,
13,
33,
42444,
964,
2490,
42372,
273,
3072,
13554,
4928,
187,
426,
426,
426,
30196,
88,
2845,
661,
426,
426,
426,
4928,
187,
380,
8852,
84,
1475,
40208,
659,
454,
452,
7558,
7418,
259,
2845,
661,
964,
496,
5516,
8002,
3703,
1157,
308,
9155,
507,
322,
6426,
610,
3815,
556,
37023,
13986,
1157,
5112,
1157,
5685,
285,
25771,
11811,
964,
2490,
380,
29677,
48737,
1140,
88,
2146,
6029,
14040,
266,
329,
20070,
1157,
1119,
2122,
327,
253,
19716,
322,
6426,
2246,
495,
6574,
29979,
273,
40208,
659,
454,
1157,
327,
253,
7237,
273,
3349,
3919,
17437,
1223,
327,
617,
1039,
281,
253,
7773,
273,
1810,
8912,
333,
281,
2659,
617,
5834,
964,
2091,
703,
28462,
8588,
2515,
497,
9648,
1175,
533,
352,
369,
417,
1919,
253,
1563,
1388,
326,
247,
8136,
1140,
88,
2146,
3047,
1157,
285,
2361,
253,
24028,
964,
2896,
253,
673,
326,
2710,
14471,
9437,
497,
10098,
407,
253,
8852,
18625,
285,
1980,
15986,
313,
627,
1146,
642,
1495,
27431,
275,
1500,
85,
1373,
387,
326,
673,
2387,
1157,
8588,
2515,
574,
46244,
281,
253,
1127,
835,
352,
369,
7479,
281,
2746,
253,
1629,
254,
2246,
964,
329,
2748,
574,
644,
1160,
323,
253,
659,
409,
1255,
1495,
27431,
432,
2207,
76,
2191,
1157,
760,
7346,
6574,
1977,
1157,
281,
8027,
1157,
533,
253,
2748,
369,
1160,
1512,
3563,
281,
320,
273,
1361,
964,
1876,
898,
10402,
591,
1428,
275,
253,
24028,
964,
7214,
495,
8248,
497,
12372,
1157,
326,
273,
5490,
19980,
1157,
534,
369,
4895,
281,
29677,
48737,
1157,
285,
253,
8248,
273,
500,
15,
330,
526,
471,
285,
500,
15,
51,
15,
496,
1200,
1157,
534,
497,
14205,
275,
1810,
8912,
333,
964,
2490,
380,
18826,
6215,
13575,
4855,
45024,
6337,
639,
4650,
275,
23010,
327,
7995,
15989,
4716,
78,
275,
5080,
16952,
964,
1623,
436,
8120,
253,
2515,
497,
260,
1338,
285,
760,
253,
6215,
285,
18826,
497,
3663,
964,
496,
17342,
253,
29677,
48737,
1140,
88,
2146,
12576,
24277,
6337,
639,
4650,
275,
12829,
376,
18874,
387,
253,
5004,
273,
253,
3925,
26156,
313,
1052,
4669,
2387,
44122,
964,
380,
1249,
637,
10402,
497,
28187,
407,
253,
329,
334,
1495,
27431,
1157,
253,
820,
89,
2140,
404,
1146,
11941,
253,
27840,
18206,
9711,
19358,
323,
436,
14471,
964,
2490,
40208,
659,
454,
686,
84,
954,
3332,
6215,
88,
17456,
5866,
327,
898,
4565,
14960,
672,
253,
29677,
48737,
1140,
88,
2146,
3599,
249,
263,
44567,
329,
24803,
1157,
21114,
3803,
16660,
68,
401,
17655,
1157,
1119,
2122,
327,
253,
19716,
322,
6426,
2246,
964,
380,
329,
334,
7813,
27431,
2210,
281,
253,
6200,
533,
369,
7591,
281,
755,
2822,
2217,
281,
14471,
253,
10402,
984,
273,
253,
6150,
2515,
964,
2058,
253,
2748,
273,
16660,
68,
35470,
1157,
13153,
18625,
14628,
12743,
1157,
41664,
15989,
1157,
247,
20848,
10402,
275,
247,
4782,
6037,
1576,
322,
1479,
641,
4742,
322,
3832,
47,
25816,
432,
322,
3561,
3922,
73,
18328,
369,
36369,
964,
1583,
7303,
281,
3330,
348,
512,
253,
9735,
686,
84,
10402,
281,
5252,
1561,
3038,
273,
253,
3216,
272,
1157,
5747,
253,
9902,
3490,
19362,
964,
380,
25816,
10402,
1996,
2959,
247,
1180,
273,
16620,
323,
6513,
635,
964,
1707,
369,
642,
2957,
273,
1495,
1157,
533,
436,
7119,
20588,
253,
3652,
273,
247,
1708,
5967,
327,
253,
1629,
254,
2246,
275,
13842,
1157,
285,
778,
671,
452,
644,
253,
1650,
2424,
323,
253,
4702,
273,
253,
1246,
14736,
285,
44150,
25816,
3943,
1157,
1754,
387,
322,
3561,
3922,
73,
18328,
964,
4928,
187,
426,
426,
36946,
708,
26396,
426,
426,
4928,
187,
13198,
649,
272,
310,
253,
2022,
39642,
273,
8930,
1495,
964,
1500,
554,
830,
253,
27882,
273,
253,
17340,
6982,
533,
247,
9991,
29592,
403,
4934,
1157,
1690,
17228,
1157,
20798,
1157,
36507,
1157,
29466,
1157,
46495,
285,
3471,
3248,
964,
42629,
494,
403,
8228,
1512,
1157,
2223,
275,
253,
17824,
273,
13765,
8099,
1157,
824,
14777,
1146,
1929,
347,
686,
4444,
466,
7362,
24976,
686,
964,
401,
3647,
310,
1335,
5196,
533,
327,
247,
4942,
1355,
4311,
964,
1707,
310,
247,
1501,
3906,
387,
253,
18753,
1157,
533,
642,
8979,
964,
353,
1550,
13978,
760,
2210,
281,
253,
8930,
387,
253,
2810,
273,
253,
28385,
5331,
964,
380,
40208,
659,
454,
8049,
310,
247,
6416,
4516,
8039,
2579,
9159,
23241,
281,
1821,
342,
2854,
285,
7665,
3374,
964,
20496,
2246,
1024,
15901,
2439,
253,
18874,
273,
40208,
281,
4255,
7634,
41226,
12769,
327,
253,
1500,
85,
1373,
11505,
1373,
964,
380,
14270,
3936,
5329,
2909,
1157,
285,
3738,
253,
11982,
744,
66,
15814,
8458,
1157,
627,
310,
760,
581,
2159,
3971,
327,
253,
8930,
15,
2214,
13975,
39675,
84,
253,
1740,
2022,
3273,
265,
2085,
1175,
17824,
1157,
533,
253,
2266,
246,
1487,
275,
1097,
253,
18874,
273,
40208,
285,
281,
253,
6146,
8935,
2430,
10665,
1557,
964,
4928,
187,
426,
426,
426,
329,
712,
7417,
426,
426,
426,
4928,
187,
1707,
310,
271,
50239,
7417,
534,
5798,
398,
323,
3963,
20818,
432,
308,
272,
12081,
964,
4928,
187,
426,
426,
17156,
285,
253,
14635,
426,
426,
4928,
187,
380,
40208,
659,
454,
14228,
11012,
778,
320,
273,
7087,
339,
6510,
285,
17267,
22620,
281,
253,
1048,
14228,
11012,
273,
253,
6146,
9268,
273,
5854,
964,
329,
5740,
273,
253,
11012,
4620,
275,
380,
25017,
366,
407,
9011,
17650,
7493,
964,
2490,
380,
8406,
285,
17264,
2516,
322,
2287,
6940,
327,
40208,
659,
454,
285,
401,
3941,
66,
323,
247,
1223,
1309,
253,
3563,
26815,
5331,
964,
380,
8406,
1157,
19365,
3833,
382,
285,
26650,
1157,
6086,
367,
15,
322,
15,
29897,
369,
3982,
598,
327,
40208,
659,
454,
964,
2490,
733,
310,
671,
253,
686,
40208,
686,
273,
657,
356,
11318,
686,
84,
19361,
12073,
38236,
258,
4204,
40208,
1821,
1157,
1024,
8671,
347,
629,
273,
253,
12633,
543,
4062,
1157,
347,
873,
281,
3440,
407,
308,
15,
46,
15,
58,
15,
25686,
251,
964,
380,
1210,
6688,
35397,
49479,
1157,
686,
15784,
249,
401,
3941,
66,
3166,
251,
2195,
686,
1157,
310,
3782,
13631,
964,
2490,
346,
473,
302,
29548,
505,
4204,
23972,
258,
40208,
1157,
2490,
15784,
249,
401,
3941,
66,
513,
251,
2195,
2490,
30533,
343,
247,
8763,
5313,
258,
1824,
1157,
2490,
15784,
249,
401,
3941,
66,
513,
251,
2195,
2490,
8741,
857,
4204,
9735,
4204,
26816,
1214,
14,
33,
298,
10628,
47657,
5914,
1157,
2490,
4146,
663,
384,
6727,
664,
4204,
502,
836,
84,
310,
6513,
76,
5914,
3706,
2490,
844,
6429,
266,
730,
72,
364,
66,
274,
6773,
310,
21814,
5914,
1157,
2490,
15784,
249,
401,
3941,
66,
513,
251,
2195,
346,
2490,
346,
15784,
249,
401,
3941,
66,
513,
251
] |
= Tim Richmond =
Tim Richmond ( June 7, 1955 – August 13, 1989 ) was an American race car driver from Ashland, Ohio. He competed in IndyCar racing before transferring to NASCAR's Winston Cup Series ( now Sprint Cup Series ). Richmond was one of the first drivers to change from open wheel racing to NASCAR stock cars full @-@ time, which has since become an industry trend. He won the 1980 Indianapolis 500 Rookie of the Year award and had 13 victories during eight NASCAR seasons.
Richmond achieved his top NASCAR season in 1986 when he finished third in points. He won seven races that season, more than any other driver on the tour. When he missed the season @-@ opening Daytona 500 in February 1987, media reported that he had pneumonia. The infection most likely resulted from his compromised immune system, which was weakened by AIDS. Despite the state of his health, Richmond competed in eight races in 1987, winning two events and one pole position before his final race in August of that year. He attempted a comeback in 1988 before NASCAR I banned him for testing positive for excessive OTC ( over the counter ) drugs, Ibuprofen and Pseudoephedrine ; NASCAR later announced they gave Tim Richmond a new test and tested negative. Tim Richmond filed a lawsuit against NASCAR after NASCAR insisted they wanted access to his entire medical record before they would reinstate him, after losing the lawsuit, Richmond withdrew from racing. NASCAR later stated their original test was a " Bad Test. "
Richmond grew up in a wealthy family and lived a freewheeling lifestyle, earning him the nickname " Hollywood ". In describing Richmond's influence in racing, Charlotte Motor Speedway president Humpy Wheeler said : " We've never had a race driver like Tim in stock car racing. He was almost a James Dean @-@ like character. " When Richmond was cast for a bit part in the 1983 movie Stroker Ace, " He fell right in with the group working on the film, " said director Hal Needham. Cole Trickle, the main character in the movie Days of Thunder, played by Tom Cruise, was loosely based on Richmond and his interaction with Harry Hyde and Rick Hendrick.
= = Early life = =
Richmond grew up in Ashland, Ohio. His parents, Al and Evelyn ( née Warner ) Richmond, met in the course of their work. Al was a welder for pipe construction companies and Evelyn was a field office manager. Noticing that highway crews had to dig up the entire highway to lay pipe, Al designed a machine to bore underneath the highway. To market this invention, he founded Richmond Manufacturing, which eventually exported machines worldwide.
Tim's driving days started as a toddler when he was given a go @-@ kart that he often drove inside buildings and across his lawn. He later raced the kart at tracks in Moreland and New Pittsburg. Richmond grew up in a well @-@ to @-@ do family, and was sometimes therefore treated differently by his classmates, so his parents enrolled him in Miami Military Academy in Miami, Florida. During his years in Miami, Tim and his mother moved to Florida and his father stayed in Ohio. While home in Ohio over a summer break, he met local drag racer Raymond Beadle through lifelong friend Fred Miller. When Richmond reached age 16, his parents purchased him a Pontiac Trans Am, a speedboat and a Piper Cherokee airplane for his birthday. Yet his mother Evelyn often worried about spoiling her only son. She once said, " Tim was lazy... ", and "... I did everything for him. I ruined him, I admit it. He was my whole life. "
Richmond excelled in sports ; he set a conference record in high hurdles and his high school football career was stellar enough that the academy retired his sports jersey after his gridiron days were over. Miami Military Academy named him Athlete of the Year in 1970. Richmond's other interests included flying, and he earned his private pilot license at age 16. Following high school graduation, Richmond attended Ashland University for about one year before dropping out.
= = Racing career = =
= = = Open wheel racing = = =
A friend of Richmond's father co @-@ owned a sprint car and Richmond joined the team as a crew member for Dave Shoemaker. In 1976, 21 @-@ year @-@ old Richmond took the car onto Lakeville Speedway at Lakeville, Ohio for some practice laps. " Somebody put a stopwatch on me, " Richmond said. " I was running laps faster than Dave had been. It was the first time I had ever driven a race car. " Richmond and his father found a red, white and blue @-@ colored No. 98 car in Pennsylvania, which was the same number and paint scheme that Richmond used on model cars as a child. In his first competition at the track, officials placed Richmond in the slowest heat. He passed several cars before spinning out and breaking an axle. Although he made several attempts to get the car pointed in the right direction, the broken axle prevented the car from driving straight. After being towed to the pits, he parked the car for the rest of the event. Later that season, they towed the car to Eldora Speedway, only to have Richmond crash the car again. In response, Richmond's father fired him as the driver. The next season, Al Richmond bought a SuperModified better suited to his son's driving style. In 1977 Tim Richmond became both Sandusky Speedway's Rookie of the Year and the SuperModified class track champion.
Richmond returned to racing sprint cars in the United States Automobile Club's ( USAC ) national sprint car tour in 1978. Competing in 12 races, he finished 30th in points as the series'Rookie of the Year. That year he attended Jim Russell's road racing school at Willow Springs International Motorsports Park, setting a student course record. Richmond raced in a 1978 Mini Indy car event at Phoenix International Raceway, winning the Formula Super Vee support event in a Lola T620. The win attracted sponsors and attention from major owners like Roger Penske. He also competed in USAC's Silver Crown series.
Richmond's father bought an Eagle Indy Car chassis and an Offenhauser engine for the 1979 race at Michigan International Speedway. Richmond qualified 21st fastest with a 175 @.@ 768 mph ( 282 @.@ 871 km / h ) lap, significantly slower than Bobby Unser's 203 @.@ 879 mph ( 328 @.@ 111 km / h ) pole position speed. The race ended for him when his motor blew up on the fourth lap, and he finished last ( 23rd ). Owner Pat Santello was looking for a driver to replace Larry Rice for his CART team at the following race at Watkins Glen International, so he gave Richmond a test at Willow Spring where he had previously set the student record. Santello hired Richmond, who then qualified 15th fastest for the event and finished in eighth place, the best of his IndyCar career. Richmond raced in three more events that season.
After crashing during the first day of qualifying for the 1980 Indianapolis 500, Richmond nevertheless obtained the 19th starting position in the race. He worked his way up to the top 10 during the race, led a lap, and finished ninth as he ran out of fuel at the end of the race. To the delight of the crowd, winner Johnny Rutherford gave him a ride back to the pits. He was named the 1980 Indianapolis 500 Rookie of the Year. " I busted up a few Indy cars right after that, " he said. " Milwaukee, Mid @-@ Ohio... at Michigan I cut one in two. I was afraid my racing career would come to a halt. So when I got an offer to drive stock cars, I took it, and it turned out I liked driving them better. "
= = = NASCAR = = =
Pocono Raceway President Joseph Mattioli III convinced Richmond to make the change to stock car racing on the NASCAR circuit. Richmond made his first NASCAR start two months after winning the Indianapolis 500 Rookie of the Year award. He debuted at the Coca @-@ Cola 500 at Pocono on July 27, 1980, finishing 12th in a D. K. Ulrich @-@ owned Chevrolet. That season, he competed in five events, with two DNFs ( did not finish ) and three 12th @-@ place finishes. Overall, he finished the 1980 season 41st in points.
Richmond raced for three teams in 1981. He started the season by competing in 15 events for Ulrich. He had his first career top 10 finish, taking sixth place at Talladega Superspeedway, soon followed by a seventh @-@ place finish at Texas World Speedway. After Kennie Childers hired him away from Ulrich mid @-@ season, Richmond had top 10 finishes at Pocono and Bristol. For the final seven races of the season, he drove for Bob Rogers and had a top 10 finish at Dover International Speedway. Overall for the season, Richmond had six top 10 finishes to place 16th in season points.
Richmond started 1982 without a ride before getting a one @-@ race deal to drive for Billie Harvey at the Rockingham track. Richmond completed 112 laps of the 492 @-@ lap event to finish 31st, retiring from the race with engine problems. For the following event, Richmond was hired to drive J.D. Stacy's No. 2 car. In his first race for the team, Richmond earned his first career top 5 finish when he placed fifth at Darlington Raceway. Returning to Pocon | wikitext_103 | [
426,
8969,
25380,
426,
4928,
187,
8969,
25380,
313,
3978,
818,
1157,
23438,
1108,
4223,
2145,
1157,
11161,
2387,
369,
271,
2448,
5492,
1113,
6254,
432,
12521,
1373,
1157,
10128,
964,
754,
29177,
275,
49893,
10697,
16893,
1078,
27090,
281,
13170,
25595,
686,
84,
33970,
9167,
12234,
313,
1024,
41058,
9167,
12234,
2387,
964,
25380,
369,
581,
273,
253,
806,
10865,
281,
1818,
432,
1527,
9530,
16893,
281,
13170,
25595,
5739,
8458,
2120,
1214,
14,
33,
673,
1157,
534,
556,
1580,
2489,
271,
4491,
9058,
964,
754,
1912,
253,
9178,
33070,
6783,
416,
20206,
273,
253,
10519,
5722,
285,
574,
2145,
34158,
1309,
4314,
13170,
25595,
12396,
964,
2490,
25380,
6786,
521,
1755,
13170,
25595,
2952,
275,
12140,
672,
344,
6699,
2626,
275,
2792,
964,
754,
1912,
5093,
15820,
326,
2952,
1157,
625,
685,
667,
643,
6254,
327,
253,
4892,
964,
2091,
344,
9829,
253,
2952,
1214,
14,
33,
5909,
40003,
66,
6783,
275,
5080,
12034,
1157,
3420,
2361,
326,
344,
574,
18277,
964,
380,
5066,
954,
2779,
7369,
432,
521,
25047,
7026,
985,
1157,
534,
369,
33153,
407,
24482,
964,
9937,
253,
1375,
273,
521,
1786,
1157,
25380,
29177,
275,
4314,
15820,
275,
12034,
1157,
9880,
767,
3394,
285,
581,
15903,
1899,
1078,
521,
2457,
5492,
275,
4223,
273,
326,
807,
964,
754,
9919,
247,
41759,
275,
11513,
1078,
13170,
25595,
309,
20374,
779,
323,
5175,
2762,
323,
13622,
473,
6669,
313,
689,
253,
4828,
2387,
5835,
1157,
44900,
484,
287,
25947,
285,
38365,
80,
554,
742,
7920,
3706,
13170,
25595,
1996,
6138,
597,
3534,
8969,
25380,
247,
747,
1071,
285,
5762,
4016,
964,
8969,
25380,
4724,
247,
15091,
1411,
13170,
25595,
846,
13170,
25595,
16701,
597,
3078,
2289,
281,
521,
2862,
3739,
1924,
1078,
597,
651,
9838,
3409,
779,
1157,
846,
10305,
253,
15091,
1157,
25380,
29504,
432,
16893,
964,
13170,
25595,
1996,
4767,
616,
3236,
1071,
369,
247,
346,
15350,
6004,
964,
346,
2490,
25380,
8899,
598,
275,
247,
20193,
2021,
285,
6940,
247,
1959,
18432,
8855,
14898,
1157,
22915,
779,
253,
34826,
346,
14759,
346,
964,
496,
12930,
25380,
686,
84,
4833,
275,
16893,
1157,
21438,
18521,
24090,
1106,
4007,
388,
37028,
38918,
753,
1163,
346,
844,
686,
306,
1620,
574,
247,
5492,
6254,
751,
8969,
275,
5739,
1113,
16893,
964,
754,
369,
2761,
247,
5490,
19172,
1214,
14,
33,
751,
1894,
964,
346,
2091,
25380,
369,
5248,
323,
247,
2372,
629,
275,
253,
11299,
6440,
48097,
6426,
37667,
1157,
346,
754,
6497,
987,
275,
342,
253,
1387,
2444,
327,
253,
3085,
1157,
346,
753,
6423,
14449,
20389,
3964,
964,
16809,
308,
4662,
282,
1157,
253,
2022,
1894,
275,
253,
6440,
23264,
273,
27926,
1157,
4546,
407,
6270,
48884,
1157,
369,
35056,
1754,
327,
25380,
285,
521,
5016,
342,
11643,
42703,
285,
15940,
20069,
4662,
964,
4928,
187,
426,
426,
15643,
1495,
426,
426,
4928,
187,
25380,
8899,
598,
275,
12521,
1373,
1157,
10128,
964,
3032,
4651,
1157,
1219,
285,
5635,
30024,
313,
295,
7678,
24324,
2387,
25380,
1157,
1313,
275,
253,
2282,
273,
616,
789,
964,
1219,
369,
247,
6210,
491,
323,
12881,
5140,
4413,
285,
5635,
30024,
369,
247,
1673,
3906,
7205,
964,
3105,
11733,
326,
17657,
32173,
574,
281,
2836,
598,
253,
2862,
17657,
281,
2242,
12881,
1157,
1219,
4158,
247,
5145,
281,
17564,
21281,
253,
17657,
964,
1916,
2791,
436,
3688,
1157,
344,
11420,
25380,
45214,
1157,
534,
6524,
34652,
10679,
11762,
964,
2490,
8969,
686,
84,
6276,
1897,
3053,
347,
247,
50245,
672,
344,
369,
1677,
247,
564,
1214,
14,
33,
465,
435,
326,
344,
2223,
12668,
3304,
9195,
285,
2439,
521,
23298,
964,
754,
1996,
37302,
253,
465,
435,
387,
11411,
275,
3010,
1373,
285,
1457,
19987,
6121,
964,
25380,
8899,
598,
275,
247,
973,
1214,
14,
33,
281,
1214,
14,
33,
513,
2021,
1157,
285,
369,
4536,
3103,
4127,
13359,
407,
521,
47527,
1157,
594,
521,
4651,
17692,
779,
275,
16146,
20884,
11417,
275,
16146,
1157,
7758,
964,
6408,
521,
1107,
275,
16146,
1157,
8969,
285,
521,
3101,
4395,
281,
7758,
285,
521,
3392,
11791,
275,
10128,
964,
3900,
1728,
275,
10128,
689,
247,
5768,
2740,
1157,
344,
1313,
1980,
9310,
7393,
254,
29936,
378,
1455,
282,
949,
36536,
3331,
10852,
11418,
964,
2091,
25380,
4925,
2363,
1668,
1157,
521,
4651,
9716,
779,
247,
29880,
14427,
4480,
3052,
1157,
247,
3885,
27431,
285,
247,
16617,
468,
50009,
33667,
323,
521,
14348,
964,
9110,
521,
3101,
5635,
30024,
2223,
11926,
670,
15695,
4837,
617,
760,
3347,
964,
1500,
2378,
753,
1157,
346,
8969,
369,
22658,
3346,
346,
1157,
285,
346,
3346,
309,
858,
3253,
323,
779,
964,
309,
27826,
779,
1157,
309,
11476,
352,
964,
754,
369,
619,
2644,
1495,
964,
346,
2490,
25380,
2507,
5911,
275,
9001,
3706,
344,
873,
247,
8059,
1924,
275,
1029,
7929,
49467,
285,
521,
1029,
2143,
5842,
5249,
369,
13671,
2217,
326,
253,
35893,
14373,
521,
9001,
42896,
846,
521,
9860,
2002,
1897,
497,
689,
964,
16146,
20884,
11417,
4907,
779,
20289,
2527,
273,
253,
10519,
275,
10333,
964,
25380,
686,
84,
643,
6284,
2908,
12060,
1157,
285,
344,
12431,
521,
3055,
11572,
7981,
387,
2363,
1668,
964,
11977,
1029,
2143,
31313,
1157,
25380,
11612,
12521,
1373,
2499,
323,
670,
581,
807,
1078,
18752,
562,
964,
4928,
187,
426,
426,
34031,
5249,
426,
426,
4928,
19668,
426,
426,
426,
7489,
9530,
16893,
426,
426,
426,
4928,
187,
329,
3331,
273,
25380,
686,
84,
3392,
820,
1214,
14,
33,
9633,
247,
29644,
1113,
285,
25380,
7416,
253,
2285,
347,
247,
10402,
3558,
323,
16908,
29264,
36184,
964,
496,
14828,
1157,
3127,
1214,
14,
33,
807,
1214,
14,
33,
1711,
25380,
2335,
253,
1113,
4830,
9396,
6169,
24090,
1106,
387,
9396,
6169,
1157,
10128,
323,
690,
3946,
44421,
964,
346,
3808,
2915,
1691,
247,
3523,
13060,
327,
479,
1157,
346,
25380,
753,
964,
346,
309,
369,
3515,
44421,
7938,
685,
16908,
574,
644,
964,
733,
369,
253,
806,
673,
309,
574,
2455,
8877,
247,
5492,
1113,
964,
346,
25380,
285,
521,
3392,
1119,
247,
2502,
1157,
3168,
285,
4797,
1214,
14,
33,
18010,
1621,
15,
10508,
1113,
275,
11637,
1157,
534,
369,
253,
1072,
1180,
285,
6848,
6974,
326,
25380,
908,
327,
1566,
8458,
347,
247,
1429,
964,
496,
521,
806,
7324,
387,
253,
3540,
1157,
6338,
4845,
25380,
275,
253,
3468,
383,
4250,
964,
754,
4817,
2067,
8458,
1078,
24428,
562,
285,
10155,
271,
49435,
964,
4129,
344,
1160,
2067,
9437,
281,
755,
253,
1113,
8042,
275,
253,
987,
3884,
1157,
253,
7154,
49435,
14415,
253,
1113,
432,
6276,
4951,
964,
2732,
1146,
281,
7184,
281,
253,
40351,
1157,
344,
24805,
253,
1113,
323,
253,
1551,
273,
253,
2362,
964,
14772,
326,
2952,
1157,
597,
281,
7184,
253,
1113,
281,
22921,
6464,
24090,
1106,
1157,
760,
281,
452,
25380,
13035,
253,
1113,
969,
964,
496,
2380,
1157,
25380,
686,
84,
3392,
11226,
779,
347,
253,
6254,
964,
380,
1735,
2952,
1157,
1219,
25380,
8686,
247,
6053,
37765,
1805,
18960,
281,
521,
3347,
686,
84,
6276,
3740,
964,
496,
14960,
8969,
25380,
3395,
1097,
7889,
316,
4742,
24090,
1106,
686,
84,
416,
20206,
273,
253,
10519,
285,
253,
6053,
37765,
966,
3540,
16928,
964,
2490,
25380,
4895,
281,
16893,
29644,
8458,
275,
253,
1986,
2077,
24689,
4252,
9585,
686,
84,
313,
1982,
1934,
2387,
3872,
29644,
1113,
4892,
275,
14304,
964,
3631,
8211,
275,
1249,
15820,
1157,
344,
6699,
1884,
394,
275,
2792,
347,
253,
2962,
686,
416,
20206,
273,
253,
10519,
964,
2064,
807,
344,
11612,
8438,
17410,
686,
84,
3971,
16893,
2143,
387,
7395,
319,
26250,
5625,
31449,
4124,
4913,
1157,
4758,
247,
5974,
2282,
1924,
964,
25380,
37302,
275,
247,
14304,
24244,
49893,
1113,
2362,
387,
21809,
5625,
23752,
1106,
1157,
9880,
253,
26658,
6053,
657,
1796,
1329,
2362,
275,
247,
418,
6836,
308,
38447,
964,
380,
3330,
17755,
34423,
285,
4116,
432,
2201,
9891,
751,
19528,
367,
561,
413,
964,
754,
671,
29177,
275,
1982,
1934,
686,
84,
16309,
23392,
2962,
964,
2490,
25380,
686,
84,
3392,
8686,
271,
26864,
49893,
2639,
39271,
285,
271,
5566,
17305,
666,
254,
3948,
323,
253,
13842,
5492,
387,
11314,
5625,
24090,
1106,
964,
25380,
12165,
3127,
296,
22583,
342,
247,
20105,
1214,
15,
33,
45730,
36772,
313,
35145,
1214,
15,
33,
854,
3677,
10771,
1227,
288,
2387,
13427,
1157,
3012,
17357,
685,
24707,
914,
2152,
686,
84,
24876,
1214,
15,
33,
854,
2787,
36772,
313,
33141,
1214,
15,
33,
11334,
10771,
1227,
288,
2387,
15903,
1899,
3885,
964,
380,
5492,
7402,
323,
779,
672,
521,
5694,
24294,
598,
327,
253,
7002,
13427,
1157,
285,
344,
6699,
1390,
313,
3495,
5784,
2387,
964,
43747,
2790,
18056,
6646,
369,
2819,
323,
247,
6254,
281,
8171,
20681,
23773,
323,
521,
330,
5757,
2285,
387,
253,
1563,
5492,
387,
48077,
30484,
5625,
1157,
594,
344,
3534,
25380,
247,
1071,
387,
7395,
319,
10039,
835,
344,
574,
3786,
873,
253,
5974,
1924,
964,
18056,
6646,
14565,
25380,
1157,
665,
840,
12165,
1458,
394,
22583,
323,
253,
2362,
285,
6699,
275,
23738,
1659,
1157,
253,
1682,
273,
521,
49893,
10697,
5249,
964,
25380,
37302,
275,
1264,
625,
3394,
326,
2952,
964,
2490,
2732,
34869,
1309,
253,
806,
1388,
273,
28661,
323,
253,
9178,
33070,
6783,
1157,
25380,
17837,
2797,
253,
655,
394,
4983,
1899,
275,
253,
5492,
964,
754,
4307,
521,
1039,
598,
281,
253,
1755,
884,
1309,
253,
5492,
1157,
3977,
247,
13427,
1157,
285,
6699,
28023,
347,
344,
6337,
562,
273,
7236,
387,
253,
990,
273,
253,
5492,
964,
1916,
253,
12725,
273,
253,
9539,
1157,
13688,
22810,
416,
16580,
4379,
3534,
779,
247,
9549,
896,
281,
253,
40351,
964,
754,
369,
4907,
253,
9178,
33070,
6783,
416,
20206,
273,
253,
10519,
964,
346,
309,
270,
15172,
598,
247,
1643,
49893,
8458,
987,
846,
326,
1157,
346,
344,
753,
964,
346,
31914,
1157,
11864,
1214,
14,
33,
10128,
964,
964,
964,
387,
11314,
309,
2624,
581,
275,
767,
964,
309,
369,
9202,
619,
16893,
5249,
651,
1705,
281,
247,
19086,
964,
1893,
672,
309,
1694,
271,
3959,
281,
4446,
5739,
8458,
1157,
309,
2335,
352,
1157,
285,
352,
3531,
562,
309,
10490,
6276,
731,
1805,
964,
346,
4928,
187,
426,
426,
426,
13170,
25595,
426,
426,
426,
4928,
187,
367,
16033,
80,
23752,
1106,
3918,
10092,
12429,
74,
10424,
6490,
13762,
25380,
281,
1056,
253,
1818,
281,
5739,
1113,
16893,
327,
253,
13170,
25595,
5049,
964,
25380,
1160,
521,
806,
13170,
25595,
1265,
767,
2607,
846,
9880,
253,
33070,
6783,
416,
20206,
273,
253,
10519,
5722,
964,
754,
41362,
387,
253,
49892,
1214,
14,
33,
2065,
66,
6783,
387,
367,
16033,
80,
327,
4163,
3435,
1157,
9178,
1157,
19083,
1249,
394,
275,
247,
399,
15,
611,
15,
18039,
5969,
1214,
14,
33,
9633,
49937,
964,
2064,
2952,
1157,
344,
29177,
275,
2620,
3394,
1157,
342,
767,
399,
8016,
84,
313,
858,
417,
8416,
2387,
285,
1264,
1249,
394,
1214,
14,
33,
1659,
30214,
964,
15699,
1157,
344,
6699,
253,
9178,
2952,
7609,
296,
275,
2792,
964,
2490,
25380,
37302,
323,
1264,
6671,
275,
13402,
964,
754,
3053,
253,
2952,
407,
11771,
275,
1458,
3394,
323,
18039,
5969,
964,
754,
574,
521,
806,
5249,
1755,
884,
8416,
1157,
3192,
15515,
1659,
387,
32826,
796,
2485,
5887,
398,
365,
264,
1106,
1157,
3517,
3560,
407,
247,
20117,
1214,
14,
33,
1659,
8416,
387,
6112,
3645,
24090,
1106,
964,
2732,
12249,
466,
8347,
398,
14565,
779,
1977,
432,
18039,
5969,
4260,
1214,
14,
33,
2952,
1157,
25380,
574,
1755,
884,
30214,
387,
367,
16033,
80,
285,
29912,
964,
1198,
253,
2457,
5093,
15820,
273,
253,
2952,
1157,
344,
12668,
323,
8679,
22456,
285,
574,
247,
1755,
884,
8416,
387,
49426,
5625,
24090,
1106,
964,
15699,
323,
253,
2952,
1157,
25380,
574,
2800,
1755,
884,
30214,
281,
1659,
1668,
394,
275,
2952,
2792,
964,
2490,
25380,
3053,
13563,
1293,
247,
9549,
1078,
2970,
247,
581,
1214,
14,
33,
5492,
2968,
281,
4446,
323,
7641,
466,
24611,
387,
253,
9384,
17018,
3540,
964,
25380,
6312,
11633,
44421,
273,
253,
45223,
1214,
14,
33,
13427,
2362,
281,
8416,
4562,
296,
1157,
42200,
432,
253,
5492,
342,
3948,
3237,
964,
1198,
253,
1563,
2362,
1157,
25380,
369,
14565,
281,
4446,
500,
15,
37,
15,
659,
1974,
686,
84,
1621,
15,
374,
1113,
964,
496,
521,
806,
5492,
323,
253,
2285,
1157,
25380,
12431,
521,
806,
5249,
1755,
608,
8416,
672,
344,
4845,
10720,
387,
11128,
25185,
23752,
1106,
964,
16140,
272,
281,
367,
16033
] |
= U.S. Route 2 in Michigan =
US Highway 2 ( US 2 ) is a component of the United States Numbered Highway System that connects Everett, Washington, to the Upper Peninsula ( UP ) of the US state of Michigan, with a separate segment that runs from Rouses Point, New York, to Houlton, Maine. In Michigan, the highway runs through the UP in two segments as a part of the state trunkline highway system, entering the state at Ironwood and ending at St. Ignace ; in between, US 2 briefly traverses the state of Wisconsin. As one of the major transportation arteries in the UP, US 2 is a major conduit for traffic through the state and neighboring northern Midwest states. Two sections of the roadway are included as part of the Great Lakes Circle Tours, and other segments are listed as state @-@ designated Pure Michigan Byways. There are several memorial highway designations and historic bridges along US 2 that date to the 1910s and 1920s. The highway runs through rural sections of the UP, passing through two national and two state forests in the process.
The route of what became US 2 was used as part of two Indian trails before European settlers came to the UP, and as part of the Michigan segments of the Theodore Roosevelt International Highway and the King's International Highway auto trails in the early 20th century. The state later included these trails as part of M ‑ 12 when the first state highway trunklines were designated in 1919. Most of M ‑ 12 was redesignated as part of US 2 when the US Highway System was created on November 11, 1926. Since the 1930s, several changes have reshaped the highway's routing through the UP. One such alteration eventually created a business loop that connected across the state line with Hurley, Wisconsin, and others pushed an originally inland routing of US 2 closer to the Lake Michigan shoreline. With the creation of the Interstate Highway System, part of US 2 was rerouted to coincide with the new Interstate 75 ( I ‑ 75 ), though in the 1980s, the U.S. Highway was truncated and removed from the I ‑ 75 freeway, resulting in today's basic form.
= = Route description = =
According to a 2006 regional planning committee report, US 2 is a key highway for Michigan, providing its main western gateway. The roadway plays " an important role in the transportation of goods across the northern tier of states in the Midwest ", and is listed on the National Highway System ( NHS ) for its entire length. The NHS is a network of roadways important to the country's economy, defense, and mobility. Together with M ‑ 28, US 2 is part of a pair of primary trunklines that bridge the eastern and western sides of the UP. The 305 @.@ 151 miles ( 491 @.@ 093 km ) of roadway in Michigan is divided into a 109 @.@ 177 @-@ mile ( 175 @.@ 703 km ) western segment and a 195 @.@ 974 @-@ mile ( 315 @.@ 390 km ) eastern segment, interrupted by a section that runs for 14 @.@ 460 miles ( 23 @.@ 271 km ) in the state of Wisconsin.
= = = Western segment = = =
US 2 enters Michigan from Wisconsin for the first time north of downtown Hurley, Wisconsin, and Ironwood, Michigan, over the state line that runs along the Montreal River. The highway crosses the river into Gogebic County and passes a welcome center on the way into a commercial district north of downtown. Running along Cloverland Drive, US 2 meets its only business route in Michigan at Douglas Boulevard. The business route was previously a full loop that ran west through downtown Ironwood and crossed the border into Hurley and back to the main highway. The Wisconsin Department of Transportation has removed the signage on their side of the border, which reduced the loop to a business spur that ends at the state line. US 2 continues eastward through UP woodlands to the city of Bessemer. While bypassing the community of Ramsay, the highway crosses a branch of the Black River. The roadway enters Wakefield on the south side of Sunday Lake, meeting M ‑ 28 at a stoplight in town. As the US Highway leaves Wakefield, it turns southeasterly through the Ottawa National Forest, crossing Jackson Creek and two branches of the Presque Isle River. US 2 and M ‑ 64 merge and run concurrently over the second branch of the Presque Isle in the community of Marenisco. This concurrency has the lowest traffic volume along the entire length of the highway within the state ; in 2010 the Michigan Department of Transportation ( MDOT ) recorded a daily average usage along the stretch of 770 vehicles, compared to the overall average of 5 @,@ 188 vehicles for the highway. At the end of the concurrency, M ‑ 64 turns northerly to run along Lake Gogebic.
The highway continues parallel to the state line from the Marensico area through the national forest toward Watersmeet. That unincorporated community is the home of the Watersmeet High School Nimrods, the basketball team featured on a series of ESPN commercials and a documentary series on the Sundance Channel. The area is also where the waters meet ; the rolling hills drain to Lake Superior via the Ontonagon River, to Lake Michigan via the Brule and Menominee rivers, or to the Gulf of Mexico via the Wisconsin and Mississippi rivers. Also located in the area are the Sylvania Wilderness, and the Lac Vieux Desert Indian Reservation, which includes the Lac Vieux Desert Casino and Resort. The highway travels southeasterly from Watersmeet around the many lakes and streams in the area and crosses into rural Iron County. US 2 intersects Federal Forest Highway 16 ( FFH 16 ) near Golden Lake in Stambaugh Township in the middle of the national forest. The trunkline then runs along the Iron River as it approaches the city of the same name and meets M ‑ 73. In town, US 2 intersects M ‑ 189 before crossing the river and turning northeast out of the city.
US 2 leaves the Ottawa National Forest at Iron River, and the highway continues eastward through forest lands near several small lakes to Crystal Falls, the county seat of Iron County. On the west side of town, US 2 meets US 141 ; the two highways run concurrently along Crystal Avenue. The combined highway turns south onto 5th Street and meets M ‑ 69's eastern terminus at the intersection between 5th Street and Superior Avenue next to the county courthouse at the top of the hill. US 2 / US 141 runs south out of Crystal Falls to the west of, and parallel to, the Paint River. The roadway passes Railroad, Kennedy and Stager lakes and leaves the state of Michigan at the Brule River, crossing into Florence County, Wisconsin for about 14 miles ( 23 km ).
= = = Eastern segment = = =
US 2 / US 141 re @-@ enters Michigan where it crosses the Menominee River and subsequently meets M ‑ 95 in Breitung Township north of Iron Mountain and Kingsford. The highways merge in a triple concurrency and run south on Stephenson Avenue into Iron Mountain along the west side of Lake Antoine, parallel to a branch line of the Escanaba and Lake Superior Railroad ( ELS Railroad ). The road crosses through a retail corridor and over a flooded pit of the Chapin Mine. In downtown Iron Mountain at Ludington Street, M ‑ 95 turns west off Stephenson Avenue to run across town to Kingsford. US 2 / US 141 exits downtown and turns east along a second retail corridor near the Midtown Mall. The highway re @-@ enters Breitung Township where US 141 separates to the south to re @-@ enter Wisconsin. US 2 continues eastward parallel to a branch of the Canadian National Railway ( CN Railway ). Both road and rail travel through the community of Quinnesec, where they pass near the largest paper mill in the UP. The trunkline runs along the main street of Norway, where the highway meets the eastern terminus of US 8. Then US 2 continues east through rural Dickinson County to Vulcan, passing north of Hanbury Lake through the Copper Country State Forest, before crossing the Sturgeon River in Loretto and passing into Menominee County.
In Menominee County, the environment takes on a more agricultural character along US 2. The highway passes through the edge of the community of Hermansville before entering Powers. US 2 comes to a three @-@ way intersection and turns northeast merging onto US 41. The concurrent highway runs from Powers through the communities of Wilson and Spaulding on the south side of the CN Railway. At Harris, the trunkline enters the Hannahville Indian Community. Harris is on the Menominee County side of the reservation, but as the highway continues east, it crosses over to Bark River on the Delta County side. The county line in between not only separates the two communities, but also serves as the boundary between the Central and Eastern time zones. East of Bark River, the highway crosses the community's namesake waterway before intersecting the eastern terminus of M ‑ 69. The roadway crosses the Ford River prior to turning due east into the outskirts of Escanaba.
US 2 / US 41 widens to four lanes along Ludington Street, which forms the east – west axis of the Escanaba street grid. Near downtown, the highway meets M ‑ 35, which runs along the city's north – south axis, Lincoln Avenue. The trunklines merge and run north, bypassing the traditional central business district for a different business corridor. Lincoln Avenue runs north carrying four lanes of traffic past the Upper Peninsula State Fairgrounds, site of one of the two state fairs for the state of Michigan, the only state to | wikitext_103 | [
426,
530,
15,
52,
15,
22720,
374,
275,
11314,
426,
4928,
187,
1982,
21788,
374,
313,
1982,
374,
2387,
310,
247,
4445,
273,
253,
1986,
2077,
427,
19839,
21788,
4155,
326,
23417,
17363,
12436,
1157,
5041,
1157,
281,
253,
24120,
33489,
313,
20653,
2387,
273,
253,
1982,
1375,
273,
11314,
1157,
342,
247,
4858,
8223,
326,
6613,
432,
416,
15011,
11149,
1157,
1457,
2816,
1157,
281,
388,
3941,
1299,
1157,
22366,
964,
496,
11314,
1157,
253,
17657,
6613,
949,
253,
20653,
275,
767,
13288,
347,
247,
629,
273,
253,
1375,
18855,
1282,
17657,
985,
1157,
11734,
253,
1375,
387,
17826,
5308,
285,
12365,
387,
659,
15,
25619,
584,
3706,
275,
875,
1157,
1982,
374,
13366,
26696,
265,
253,
1375,
273,
15558,
964,
1284,
581,
273,
253,
2201,
13120,
24908,
275,
253,
20653,
1157,
1982,
374,
310,
247,
2201,
35198,
323,
7137,
949,
253,
1375,
285,
20667,
11186,
39030,
3054,
964,
5761,
7118,
273,
253,
50159,
403,
2908,
347,
629,
273,
253,
6495,
32396,
29572,
49871,
1157,
285,
643,
13288,
403,
7117,
347,
1375,
1214,
14,
33,
13205,
29062,
11314,
2896,
1576,
964,
1707,
403,
2067,
27672,
17657,
2216,
569,
285,
14464,
24853,
2112,
1982,
374,
326,
3522,
281,
253,
31707,
84,
285,
18471,
84,
964,
380,
17657,
6613,
949,
11393,
7118,
273,
253,
20653,
1157,
8136,
949,
767,
3872,
285,
767,
1375,
21327,
275,
253,
1232,
964,
2490,
380,
7622,
273,
752,
3395,
1982,
374,
369,
908,
347,
629,
273,
767,
5396,
27192,
1078,
5284,
34684,
2210,
281,
253,
20653,
1157,
285,
347,
629,
273,
253,
11314,
13288,
273,
253,
40424,
21519,
5625,
21788,
285,
253,
4377,
686,
84,
5625,
21788,
6753,
27192,
275,
253,
2393,
1384,
394,
5331,
964,
380,
1375,
1996,
2908,
841,
27192,
347,
629,
273,
353,
541,
228,
1249,
672,
253,
806,
1375,
17657,
18855,
8737,
497,
13205,
275,
29145,
964,
5595,
273,
353,
541,
228,
1249,
369,
45755,
456,
347,
629,
273,
1982,
374,
672,
253,
1982,
21788,
4155,
369,
3562,
327,
4596,
1903,
1157,
33554,
964,
3932,
253,
17437,
84,
1157,
2067,
2544,
452,
40206,
7760,
253,
17657,
686,
84,
24749,
949,
253,
20653,
964,
2596,
824,
26787,
6524,
3562,
247,
2136,
6287,
326,
4802,
2439,
253,
1375,
1386,
342,
15908,
2205,
1157,
15558,
1157,
285,
2571,
10184,
271,
8927,
40835,
24749,
273,
1982,
374,
8003,
281,
253,
9396,
11314,
16838,
1282,
964,
2726,
253,
8869,
273,
253,
40874,
21788,
4155,
1157,
629,
273,
1982,
374,
369,
294,
27861,
264,
281,
28588,
342,
253,
747,
40874,
6879,
313,
309,
541,
228,
6879,
2387,
1157,
2167,
275,
253,
9178,
84,
1157,
253,
530,
15,
52,
15,
21788,
369,
28069,
285,
5176,
432,
253,
309,
541,
228,
6879,
1959,
1106,
1157,
4795,
275,
3063,
686,
84,
5044,
830,
964,
4928,
187,
426,
426,
22720,
5740,
426,
426,
4928,
187,
4794,
281,
247,
5403,
9933,
7219,
9353,
1304,
1157,
1982,
374,
310,
247,
2234,
17657,
323,
11314,
1157,
5277,
697,
2022,
10439,
28894,
964,
380,
50159,
7120,
346,
271,
1774,
2554,
275,
253,
13120,
273,
10229,
2439,
253,
11186,
30625,
273,
3054,
275,
253,
39030,
346,
1157,
285,
310,
7117,
327,
253,
3313,
21788,
4155,
313,
28530,
2387,
323,
697,
2862,
2978,
964,
380,
28530,
310,
247,
2990,
273,
3971,
1576,
1774,
281,
253,
2586,
686,
84,
6982,
1157,
5684,
1157,
285,
16239,
964,
20058,
342,
353,
541,
228,
3349,
1157,
1982,
374,
310,
629,
273,
247,
4667,
273,
3625,
18855,
8737,
326,
9729,
253,
14730,
285,
10439,
7123,
273,
253,
20653,
964,
380,
26402,
1214,
15,
33,
21982,
6574,
313,
44616,
1214,
15,
33,
470,
4590,
10771,
2387,
273,
50159,
275,
11314,
310,
4272,
715,
247,
12652,
1214,
15,
33,
24232,
1214,
14,
33,
13915,
313,
20105,
1214,
15,
33,
818,
2941,
10771,
2387,
10439,
8223,
285,
247,
23627,
1214,
15,
33,
898,
3566,
1214,
14,
33,
13915,
313,
29117,
1214,
15,
33,
33956,
10771,
2387,
14730,
8223,
1157,
21018,
407,
247,
2593,
326,
6613,
323,
1638,
1214,
15,
33,
34678,
6574,
313,
3495,
1214,
15,
33,
32855,
10771,
2387,
275,
253,
1375,
273,
15558,
964,
4928,
187,
426,
426,
426,
6359,
8223,
426,
426,
426,
4928,
187,
1982,
374,
19413,
11314,
432,
15558,
323,
253,
806,
673,
6146,
273,
17207,
15908,
2205,
1157,
15558,
1157,
285,
17826,
5308,
1157,
11314,
1157,
689,
253,
1375,
1386,
326,
6613,
2112,
253,
24604,
7121,
964,
380,
17657,
25808,
253,
8281,
715,
443,
462,
2275,
280,
3928,
285,
11999,
247,
10112,
4055,
327,
253,
1039,
715,
247,
6264,
3286,
6146,
273,
17207,
964,
33941,
2112,
1639,
1189,
1373,
19672,
1157,
1982,
374,
16382,
697,
760,
2136,
7622,
275,
11314,
387,
17885,
38715,
964,
380,
2136,
7622,
369,
3786,
247,
2120,
6287,
326,
6337,
8935,
949,
17207,
17826,
5308,
285,
13405,
253,
5680,
715,
15908,
2205,
285,
896,
281,
253,
2022,
17657,
964,
380,
15558,
4487,
273,
26593,
556,
5176,
253,
861,
486,
327,
616,
1930,
273,
253,
5680,
1157,
534,
3777,
253,
6287,
281,
247,
2136,
36057,
326,
7637,
387,
253,
1375,
1386,
964,
1982,
374,
7788,
9268,
1034,
949,
20653,
5534,
6056,
281,
253,
2846,
273,
378,
26491,
961,
964,
3900,
18210,
272,
253,
3114,
273,
31849,
333,
1157,
253,
17657,
25808,
247,
7789,
273,
253,
5418,
7121,
964,
380,
50159,
19413,
34625,
3423,
327,
253,
6420,
1930,
273,
6926,
9396,
1157,
4804,
353,
541,
228,
3349,
387,
247,
3523,
3243,
275,
3874,
964,
1284,
253,
1982,
21788,
6505,
34625,
3423,
1157,
352,
7819,
32276,
248,
2237,
314,
949,
253,
29539,
3313,
16015,
1157,
14270,
9857,
16611,
285,
767,
12998,
273,
253,
3327,
1452,
41910,
7121,
964,
1982,
374,
285,
353,
541,
228,
6705,
17310,
285,
1408,
35046,
689,
253,
1273,
7789,
273,
253,
3327,
1452,
41910,
275,
253,
3114,
273,
353,
6950,
23538,
964,
831,
15038,
7549,
556,
253,
8840,
7137,
4644,
2112,
253,
2862,
2978,
273,
253,
17657,
1561,
253,
1375,
3706,
275,
4267,
253,
11314,
4487,
273,
26593,
313,
10399,
2415,
2387,
5950,
247,
5312,
3388,
10393,
2112,
253,
13726,
273,
818,
1967,
9411,
1157,
2429,
281,
253,
4583,
3388,
273,
608,
1214,
13,
33,
25305,
9411,
323,
253,
17657,
964,
2058,
253,
990,
273,
253,
15038,
7549,
1157,
353,
541,
228,
6705,
7819,
20558,
379,
314,
281,
1408,
2112,
9396,
443,
462,
2275,
280,
964,
2490,
380,
17657,
7788,
7529,
281,
253,
1375,
1386,
432,
253,
353,
6950,
84,
4173,
2170,
949,
253,
3872,
9741,
2584,
34184,
49422,
964,
2064,
440,
39558,
3114,
310,
253,
1728,
273,
253,
34184,
49422,
4855,
4726,
49608,
287,
1397,
1157,
253,
14648,
2285,
12819,
327,
247,
2962,
273,
27478,
47864,
285,
247,
18802,
2962,
327,
253,
28767,
593,
16824,
964,
380,
2170,
310,
671,
835,
253,
12685,
2525,
3706,
253,
14572,
19607,
12657,
281,
9396,
21112,
3066,
253,
1623,
1299,
5154,
7121,
1157,
281,
9396,
11314,
3066,
253,
12810,
282,
285,
9730,
297,
22593,
21646,
1157,
390,
281,
253,
18351,
273,
8987,
3066,
253,
15558,
285,
18531,
21646,
964,
5220,
4441,
275,
253,
2170,
403,
253,
322,
10931,
40065,
1255,
1157,
285,
253,
27910,
657,
34750,
36274,
5396,
2213,
21752,
1157,
534,
3797,
253,
27910,
657,
34750,
36274,
41333,
285,
36322,
964,
380,
17657,
24376,
32276,
248,
2237,
314,
432,
34184,
49422,
1475,
253,
1142,
28169,
285,
17795,
275,
253,
2170,
285,
25808,
715,
11393,
17826,
3928,
964,
1982,
374,
23965,
84,
7671,
16015,
21788,
1668,
313,
23127,
41,
1668,
2387,
2822,
15790,
9396,
275,
659,
1369,
3920,
26469,
275,
253,
4766,
273,
253,
3872,
9741,
964,
380,
18855,
1282,
840,
6613,
2112,
253,
17826,
7121,
347,
352,
7274,
253,
2846,
273,
253,
1072,
1416,
285,
16382,
353,
541,
228,
11087,
964,
496,
3874,
1157,
1982,
374,
23965,
84,
353,
541,
228,
24665,
1078,
14270,
253,
8281,
285,
8577,
29510,
562,
273,
253,
2846,
964,
2490,
1982,
374,
6505,
253,
29539,
3313,
16015,
387,
17826,
7121,
1157,
285,
253,
17657,
7788,
9268,
1034,
949,
9741,
13446,
2822,
2067,
1355,
28169,
281,
29509,
24618,
1157,
253,
9635,
7319,
273,
17826,
3928,
964,
1623,
253,
8935,
1930,
273,
3874,
1157,
1982,
374,
16382,
1982,
21886,
3706,
253,
767,
40459,
1408,
35046,
2112,
29509,
14216,
964,
380,
5678,
17657,
7819,
6420,
4830,
608,
394,
5720,
285,
16382,
353,
541,
228,
10447,
686,
84,
14730,
43259,
387,
253,
15171,
875,
608,
394,
5720,
285,
21112,
14216,
1735,
281,
253,
9635,
1960,
37017,
387,
253,
1755,
273,
253,
13599,
964,
1982,
374,
1227,
1982,
21886,
6613,
6420,
562,
273,
29509,
24618,
281,
253,
8935,
273,
1157,
285,
7529,
281,
1157,
253,
41999,
7121,
964,
380,
50159,
11999,
31606,
1157,
16598,
285,
659,
3800,
28169,
285,
6505,
253,
1375,
273,
11314,
387,
253,
12810,
282,
7121,
1157,
14270,
715,
27741,
3928,
1157,
15558,
323,
670,
1638,
6574,
313,
3495,
10771,
2387,
964,
4928,
187,
426,
426,
426,
11867,
8223,
426,
426,
426,
4928,
187,
1982,
374,
1227,
1982,
21886,
294,
1214,
14,
33,
19413,
11314,
835,
352,
25808,
253,
9730,
297,
22593,
7121,
285,
9674,
16382,
353,
541,
228,
5325,
275,
49094,
1947,
26469,
6146,
273,
17826,
15939,
285,
20567,
4379,
964,
380,
40459,
17310,
275,
247,
16260,
15038,
7549,
285,
1408,
6420,
327,
12167,
1665,
14216,
715,
17826,
15939,
2112,
253,
8935,
1930,
273,
9396,
47255,
460,
1157,
7529,
281,
247,
7789,
1386,
273,
253,
20748,
266,
10442,
285,
9396,
21112,
31606,
313,
444,
7858,
31606,
2387,
964,
380,
3971,
25808,
949,
247,
10567,
25506,
285,
689,
247,
33913,
8483,
273,
253,
17235,
249,
27288,
964,
496,
17207,
17826,
15939,
387,
26064,
16240,
5720,
1157,
353,
541,
228,
5325,
7819,
8935,
745,
12167,
1665,
14216,
281,
1408,
2439,
3874,
281,
20567,
4379,
964,
1982,
374,
1227,
1982,
21886,
39852,
17207,
285,
7819,
9268,
2112,
247,
1273,
10567,
25506,
2822,
253,
11864,
10700,
21984,
964,
380,
17657,
294,
1214,
14,
33,
19413,
49094,
1947,
26469,
835,
1982,
21886,
36158,
281,
253,
6420,
281,
294,
1214,
14,
33,
4901,
15558,
964,
1982,
374,
7788,
9268,
1034,
7529,
281,
247,
7789,
273,
253,
9462,
3313,
23419,
313,
18526,
23419,
2387,
964,
6295,
3971,
285,
8087,
4288,
949,
253,
3114,
273,
29051,
265,
886,
1157,
835,
597,
1509,
2822,
253,
6253,
2929,
5499,
275,
253,
20653,
964,
380,
18855,
1282,
6613,
2112,
253,
2022,
6406,
273,
20341,
1157,
835,
253,
17657,
16382,
253,
14730,
43259,
273,
1982,
854,
964,
2635,
1982,
374,
7788,
9268,
949,
11393,
47185,
3928,
281,
34820,
5092,
1157,
8136,
6146,
273,
13594,
12473,
9396,
949,
253,
2434,
3803,
17241,
2418,
16015,
1157,
1078,
14270,
253,
43388,
32719,
7121,
275,
418,
7262,
936,
285,
8136,
715,
9730,
297,
22593,
3928,
964,
2490,
496,
9730,
297,
22593,
3928,
1157,
253,
3126,
3936,
327,
247,
625,
17340,
1894,
2112,
1982,
374,
964,
380,
17657,
11999,
949,
253,
5024,
273,
253,
3114,
273,
19423,
507,
6169,
1078,
11734,
33904,
964,
1982,
374,
3249,
281,
247,
1264,
1214,
14,
33,
1039,
15171,
285,
7819,
29510,
34047,
4830,
1982,
7609,
964,
380,
17336,
17657,
6613,
432,
33904,
949,
253,
7888,
273,
10520,
285,
2101,
40186,
5361,
327,
253,
6420,
1930,
273,
253,
18526,
23419,
964,
2058,
13680,
1157,
253,
18855,
1282,
19413,
253,
28518,
6169,
5396,
12244,
964,
13680,
310,
327,
253,
9730,
297,
22593,
3928,
1930,
273,
253,
28930,
1157,
533,
347,
253,
17657,
7788,
9268,
1157,
352,
25808,
689,
281,
46548,
7121,
327,
253,
25291,
3928,
1930,
964,
380,
9635,
1386,
275,
875,
417,
760,
36158,
253,
767,
7888,
1157,
533,
671,
11029,
347,
253,
7548,
875,
253,
8170,
285,
11867,
673,
18192,
964,
5791,
273,
46548,
7121,
1157,
253,
17657,
25808,
253,
3114,
686,
84,
4454,
640,
1824,
1106,
1078,
23965,
272,
253,
14730,
43259,
273,
353,
541,
228,
10447,
964,
380,
50159,
25808,
253,
12673,
7121,
2720,
281,
8577,
1955,
9268,
715,
253,
46413,
273,
20748,
266,
10442,
964,
2490,
1982,
374,
1227,
1982,
7609,
5261,
561,
281,
1740,
24914,
2112,
26064,
16240,
5720,
1157,
534,
4948,
253,
9268,
1108,
8935,
7844,
273,
253,
20748,
266,
10442,
6406,
9860,
964,
27922,
17207,
1157,
253,
17657,
16382,
353,
541,
228,
4791,
1157,
534,
6613,
2112,
253,
2846,
686,
84,
6146,
1108,
6420,
7844,
1157,
15915,
14216,
964,
380,
18855,
8737,
17310,
285,
1408,
6146,
1157,
18210,
272,
253,
5899,
4275,
2136,
3286,
323,
247,
1027,
2136,
25506,
964,
15915,
14216,
6613,
6146,
8785,
1740,
24914,
273,
7137,
2469,
253,
24120,
33489,
2418,
12772,
18646,
1157,
2670,
273,
581,
273,
253,
767,
1375,
269,
3514,
323,
253,
1375,
273,
11314,
1157,
253,
760,
1375,
281
] |
), and the cassette single featured all four tracks on both sides of the tape. Although not as successful as the album's first two singles, the song did chart well. In the U.S., the song peaked at number 13 on the Billboard Hot 100 and number 11 on the Album Rock Tracks charts. The song reached number four on the UK Singles Chart, and it topped the Irish Singles Chart.
= = = Music video = = =
The video begins with an aerial shot of a block in Los Angeles, and clips of radio broadcasts are heard with disc jockeys stating that U2 is planning on performing a concert downtown and expecting crowds of 30 @,@ 000 people. Police show up to the set and inform the band's crew of the security issue that the film shoot is causing, due to the large number of people who are coming to watch the performance. Two minutes into the video, U2 are seen on the roof of a liquor store at the corner of 7th Ave. and S. Main St., and perform " Where the Streets Have No Name " to a large crowd of people standing in the streets surrounding the building. Towards the end of the song, the police tell the crew that the performance is about to be shut down, and eventually police walk onto the roof while the crowd are booing the police.
The video for " Where the Streets Have No Name " was directed by Meiert Avis and produced by Michael Hamlyn and Ben Dossett. The band attracted over 1 @,@ 000 people during the video's filming, which took place on the rooftop of a liquor store in Downtown Los Angeles on 27 March 1987. The band's performance on a rooftop in a public place was a reference to The Beatles'final concert, as depicted in the film Let It Be.
During the shoot U2 played an eight @-@ song set, which included four performances of " Where the Streets Have No Name ". Prior to filming, a week was spent reinforcing the roof of the liquor store to ensure it would not collapse if it were to be intruded by a group of fans. A backup generator was put on the roof so the shooting could continue in the event that the authorities shut off the power on the primary generator, which happened during filming.
The depiction of the police attempting to shut down the video shoot due to safety concerns actually happened during filming, just as seen in the video. Hamlyn was almost arrested following a confrontation with the police. According to Avis, the events depicted in the video show what actually happened that day " almost in real time ", and that " getting busted was an integral part of the plan. " Band manager Paul McGuinness revealed in 2007 that much of the confrontation with the police was exaggerated ; the group were hoping to get shut down by the authorities in order to dramatize the music video, but the police continually gave them extensions for shooting the video. In the background of the video is a sign for The Million Dollar Hotel, which was rebuilt to create some interest, in case no one showed up at the film shoot. Although the video is of a live performance, the audio used is from the studio @-@ recorded version of the song. The video won the Grammy Award for Best Performance Music Video at the 1989 Grammy Awards.
= = = B @-@ sides = = =
" Race Against Time " was released on the 12 @-@ inch, cassette, and CD versions of the single. The song developed from the band's interest in urban funk, and was described by The Edge as " a kind of Afro @-@ rhythmic piece " and " a study in rhythm. " The bass riff in the song, inspired by the bodhrán, was played by The Edge, but stemmed from some of Clayton's unused bass parts. Mullen's drum part was recorded in a single take. The song is primarily an instrumental piece but does contain some lyrics inspired by Bono's trip to Ethiopia after Live Aid and his witnessing firsthand the famine in occurrence ; these lyrical references include Bono singing in an Ethiopian language and following it with the phrase " Race against time ". Bono said of the song, " It reminds me of the desert. The desert is so empty, but it aches with a strange kind of fullness. " John Hutchinson of Musician magazine described the song as having an " African flavour " and as being reminiscent of Peter Gabriel. The track was used in the Miami Vice episode " Child's Play ", and is the only one of the single's B @-@ sides that was never played live.
" Silver and Gold " was written in support of the Artists United Against Apartheid project, which protested the South African apartheid. In 1985, Bono participated in Steven Van Zandt's anti @-@ apartheid Sun City project and spent time with Keith Richards and Mick Jagger of The Rolling Stones. When Richards and Jagger played blues, Bono was embarrassed by his lack of familiarity with the genre, as most of U2's musical knowledge began with punk rock in their youth in the mid @-@ 1970s. Bono realised that U2 " had no tradition ", and he felt as if they " were from outer space ". This inspired him to write the blues @-@ influenced song " Silver and Gold ", which he recorded with Richards and Ronnie Wood. It was re @-@ recorded by U2 for the " Where the Streets Have No Name " single while the band returned to Dublin during in May 1987 during a break between the first and second legs of The Joshua Tree Tour. The song was described by Musician as " tough and raw, with Bono in husky and confident voice, underpinned by a sinuous bass line, and with The Edge demonstrating his newfound prowess in blues @-@ based guitar. " " Silver and Gold " was played live on The Joshua Tree Tour several times, one performance of which was featured on the band's 1988 album and rockumentary, Rattle and Hum. Both the studio recording and the Sun City versions were later featured on the bonus disc of the 20th anniversary edition of The Joshua Tree. The studio version was also included on the limited edition B @-@ sides bonus disk of the band's first compilation album, The Best of 1980 – 1990.
" Sweetest Thing " was written by Bono as an apology to his wife for forgetting her birthday. The song opens with a short piano piece before the rest of the band begins to play. Some of Bono's lyrics have been described as reminiscent of John Lennon. The Edge described it as " a beautiful song... which is pop as it should be — not produced out of existence, but pop produced with a real intimacy and purity ", also noting that " It's very new for us. " It was re @-@ recorded with some lyrical alterations and released in 1998 as a single in its own right for The Best of 1980 – 1990. Hot Press editor Niall Stokes stated that this track, along with " Race Against Time ", is " an indicator of what U2 might have made instead of The Joshua Tree. "
= = Critical reception = =
Upon the release of The Joshua Tree, critics praised " Where the Streets Have No Name ". Steve Morse of The Boston Globe noted the " bell @-@ like tones from the Edge fram [ e ] a search for heaven " and along with the subsequent track on the album, " I Still Haven 't Found What I'm Looking For ", these songs showed how the group were " pilgrims still on a quest ; not preachers who claim to have found answers ". The Bergen Record echoed these sentiments, saying the tracks demonstrated how the band was on a personal and spiritual quest. Rolling Stone called it " assertive rock " in their review of The Joshua Tree. The San Diego Union @-@ Tribune said of " Where the Streets Have No Name ", " the music charges, like someone fleeing for life ". The Washington Post said the track is " a bit oblique lyrically, but the implications are clear in Bono's resolute delivery, Dave ( the Edge ) Evan's quavering guitar, Adam Clayton's cathedral bass and Larry Mullen's rolling thunder drums ".
NME lauded the song as the opening track by saying the album " starts by spitting furiously ". The publication praised Bono's impassioned singing and The Edge's guitar playing, which transformed the instrument into " something more than an endlessly abused piece of wood ". The review commented that the " last ten seconds are breathtakingly beautiful ". The Rocket wrote that the song builds a " wall of sound " that Bono's vocals cut through with a " wail of desperation, as the lyrics agonize the need for personal spirituality ". The reviewer compared the opening riff to Simple Minds'" Ghostdancing ". Reviewing The Joshua Tree, Stephen Thomas Erlewine of Allmusic called the song an " epic opener ". The service's Steve Huey, in a review of the song, praised its " insistent, propulsive rhythmic drive and anthemic chorus ", qualities he singled out for making it a fan favorite. He called the song the " perfect album @-@ opener ", crediting the " slow build of its arrangement toward a climactic peak ". Huey also called Bono's delivery " passionate and grandiose " and " his commitment to the material unshakable ". He believed the combination of his vocals and the band's " sonic power " is what gave U2 its " tremendous force ".
= = Live | wikitext_103 | [
2387,
1157,
285,
253,
31392,
2014,
12819,
512,
1740,
11411,
327,
1097,
7123,
273,
253,
11173,
964,
4129,
417,
347,
5547,
347,
253,
5400,
686,
84,
806,
767,
21864,
1157,
253,
4498,
858,
8326,
973,
964,
496,
253,
530,
15,
52,
15,
1157,
253,
4498,
33404,
387,
1180,
2145,
327,
253,
41073,
9405,
2233,
285,
1180,
1903,
327,
253,
33500,
9384,
1535,
7305,
19840,
964,
380,
4498,
4925,
1180,
1740,
327,
253,
5591,
7712,
868,
28525,
1157,
285,
352,
32072,
253,
11596,
7712,
868,
28525,
964,
4928,
187,
426,
426,
426,
11412,
3492,
426,
426,
426,
4928,
187,
380,
3492,
9513,
342,
271,
31319,
5103,
273,
247,
2972,
275,
8742,
9757,
1157,
285,
29205,
273,
5553,
44021,
403,
3735,
342,
1262,
480,
406,
12305,
14851,
326,
530,
19,
310,
7219,
327,
9591,
247,
12699,
17207,
285,
16764,
24597,
273,
1884,
1214,
13,
33,
20181,
952,
964,
9651,
921,
598,
281,
253,
873,
285,
4151,
253,
3961,
686,
84,
10402,
273,
253,
3988,
2523,
326,
253,
3085,
5310,
310,
8479,
1157,
1955,
281,
253,
1781,
1180,
273,
952,
665,
403,
3551,
281,
3698,
253,
3045,
964,
5761,
2909,
715,
253,
3492,
1157,
530,
19,
403,
2326,
327,
253,
10699,
273,
247,
26375,
4657,
387,
253,
7145,
273,
818,
394,
18953,
15,
285,
322,
15,
11505,
659,
15,
1157,
285,
1347,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
281,
247,
1781,
9539,
273,
952,
6306,
275,
253,
10198,
8704,
253,
3652,
964,
24819,
2196,
253,
990,
273,
253,
4498,
1157,
253,
3513,
2028,
253,
10402,
326,
253,
3045,
310,
670,
281,
320,
6294,
1066,
1157,
285,
6524,
3513,
2940,
4830,
253,
10699,
1223,
253,
9539,
403,
41001,
272,
253,
3513,
964,
2490,
380,
3492,
323,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
369,
6828,
407,
3189,
27252,
329,
4534,
285,
4197,
407,
6277,
5516,
13931,
285,
6029,
399,
375,
12569,
964,
380,
3961,
17755,
689,
337,
1214,
13,
33,
20181,
952,
1309,
253,
3492,
686,
84,
32539,
1157,
534,
2335,
1659,
327,
253,
43271,
412,
273,
247,
26375,
4657,
275,
46827,
8742,
9757,
327,
3435,
3919,
12034,
964,
380,
3961,
686,
84,
3045,
327,
247,
43271,
412,
275,
247,
1345,
1659,
369,
247,
3806,
281,
380,
40159,
686,
2457,
12699,
1157,
347,
17253,
275,
253,
3085,
1281,
733,
2325,
964,
2490,
6408,
253,
5310,
530,
19,
4546,
271,
4314,
1214,
14,
33,
4498,
873,
1157,
534,
2908,
1740,
16226,
273,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
964,
13036,
281,
32539,
1157,
247,
2129,
369,
5262,
41894,
253,
10699,
273,
253,
26375,
4657,
281,
5416,
352,
651,
417,
13551,
604,
352,
497,
281,
320,
4996,
21015,
407,
247,
1387,
273,
7458,
964,
329,
17119,
14156,
369,
1691,
327,
253,
10699,
594,
253,
9602,
812,
4035,
275,
253,
2362,
326,
253,
9061,
6294,
745,
253,
1612,
327,
253,
3625,
14156,
1157,
534,
4592,
1309,
32539,
964,
2490,
380,
48528,
273,
253,
3513,
13756,
281,
6294,
1066,
253,
3492,
5310,
1955,
281,
5252,
7350,
2686,
4592,
1309,
32539,
1157,
816,
347,
2326,
275,
253,
3492,
964,
5516,
13931,
369,
2761,
9833,
1563,
247,
31233,
342,
253,
3513,
964,
4794,
281,
329,
4534,
1157,
253,
3394,
17253,
275,
253,
3492,
921,
752,
2686,
4592,
326,
1388,
346,
2761,
275,
1524,
673,
346,
1157,
285,
326,
346,
2970,
270,
15172,
369,
271,
9909,
629,
273,
253,
2098,
964,
346,
16804,
7205,
5171,
3044,
8469,
249,
1255,
4950,
275,
5215,
326,
1199,
273,
253,
31233,
342,
253,
3513,
369,
36074,
3706,
253,
1387,
497,
11525,
281,
755,
6294,
1066,
407,
253,
9061,
275,
1340,
281,
50104,
907,
253,
3440,
3492,
1157,
533,
253,
3513,
23265,
3534,
731,
18149,
323,
9602,
253,
3492,
964,
496,
253,
4114,
273,
253,
3492,
310,
247,
861,
323,
380,
34211,
46693,
14469,
1157,
534,
369,
38096,
281,
2794,
690,
1600,
1157,
275,
1083,
642,
581,
2692,
598,
387,
253,
3085,
5310,
964,
4129,
253,
3492,
310,
273,
247,
3153,
3045,
1157,
253,
9797,
908,
310,
432,
253,
11803,
1214,
14,
33,
5950,
2715,
273,
253,
4498,
964,
380,
3492,
1912,
253,
22197,
2577,
11240,
323,
9567,
21856,
11412,
16428,
387,
253,
11161,
22197,
2577,
18165,
964,
4928,
187,
426,
426,
426,
378,
1214,
14,
33,
7123,
426,
426,
426,
4928,
187,
346,
23752,
24161,
6865,
346,
369,
4439,
327,
253,
1249,
1214,
14,
33,
16416,
1157,
31392,
1157,
285,
3437,
9508,
273,
253,
2014,
964,
380,
4498,
3715,
432,
253,
3961,
686,
84,
1600,
275,
10106,
794,
76,
1157,
285,
369,
2529,
407,
380,
24105,
347,
346,
247,
2238,
273,
3723,
287,
1214,
14,
33,
28715,
6185,
5313,
346,
285,
346,
247,
1263,
275,
19407,
964,
346,
380,
16819,
391,
1648,
275,
253,
4498,
1157,
11797,
407,
253,
18400,
6285,
9435,
1157,
369,
4546,
407,
380,
24105,
1157,
533,
8424,
1314,
432,
690,
273,
40998,
686,
84,
30732,
16819,
4243,
964,
353,
26584,
686,
84,
14988,
629,
369,
5950,
275,
247,
2014,
1379,
964,
380,
4498,
310,
8558,
271,
23033,
5313,
533,
1057,
3831,
690,
24591,
11797,
407,
11228,
80,
686,
84,
7408,
281,
35363,
846,
14309,
38649,
285,
521,
49379,
806,
4608,
253,
48768,
275,
12340,
3706,
841,
12865,
5526,
10414,
2486,
11228,
80,
16115,
275,
271,
27247,
757,
3448,
285,
1563,
352,
342,
253,
12616,
346,
23752,
1411,
673,
346,
964,
11228,
80,
753,
273,
253,
4498,
1157,
346,
733,
25264,
479,
273,
253,
13438,
964,
380,
13438,
310,
594,
6325,
1157,
533,
352,
913,
1041,
342,
247,
8921,
2238,
273,
2120,
1255,
964,
346,
2516,
41360,
9258,
273,
4878,
6876,
11338,
2529,
253,
4498,
347,
1907,
271,
346,
8118,
34149,
346,
285,
347,
1146,
35036,
273,
7993,
27581,
964,
380,
3540,
369,
908,
275,
253,
16146,
17979,
9037,
346,
8347,
686,
84,
10223,
346,
1157,
285,
310,
253,
760,
581,
273,
253,
2014,
686,
84,
378,
1214,
14,
33,
7123,
326,
369,
1620,
4546,
3153,
964,
2490,
346,
16309,
285,
7284,
346,
369,
3542,
275,
1329,
273,
253,
47011,
1986,
24161,
23449,
22252,
2199,
1157,
534,
36790,
253,
3684,
8118,
7419,
22252,
964,
496,
12210,
1157,
11228,
80,
13640,
275,
19436,
10049,
1503,
395,
85,
686,
84,
3270,
1214,
14,
33,
7419,
22252,
4146,
3228,
2199,
285,
5262,
673,
342,
24035,
35122,
285,
42735,
500,
7215,
273,
380,
42631,
659,
2487,
964,
2091,
35122,
285,
500,
7215,
4546,
32428,
1157,
11228,
80,
369,
30069,
407,
521,
3480,
273,
38550,
342,
253,
19098,
1157,
347,
954,
273,
530,
19,
686,
84,
12256,
3640,
3407,
342,
30304,
5561,
275,
616,
8920,
275,
253,
4260,
1214,
14,
33,
10333,
84,
964,
11228,
80,
25436,
326,
530,
19,
346,
574,
642,
4062,
346,
1157,
285,
344,
3543,
347,
604,
597,
346,
497,
432,
8346,
2317,
346,
964,
831,
11797,
779,
281,
3630,
253,
32428,
1214,
14,
33,
12208,
4498,
346,
16309,
285,
7284,
346,
1157,
534,
344,
5950,
342,
35122,
285,
15657,
10633,
9002,
964,
733,
369,
294,
1214,
14,
33,
5950,
407,
530,
19,
323,
253,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
2014,
1223,
253,
3961,
4895,
281,
24523,
1309,
275,
2552,
12034,
1309,
247,
2740,
875,
253,
806,
285,
1273,
9246,
273,
380,
29092,
19128,
11997,
964,
380,
4498,
369,
2529,
407,
4878,
6876,
347,
346,
10458,
285,
9305,
1157,
342,
11228,
80,
275,
5424,
4742,
285,
13224,
4318,
1157,
762,
81,
13172,
407,
247,
6868,
3472,
16819,
1386,
1157,
285,
342,
380,
24105,
17227,
521,
747,
14541,
39488,
405,
275,
32428,
1214,
14,
33,
1754,
12609,
964,
346,
346,
16309,
285,
7284,
346,
369,
4546,
3153,
327,
380,
29092,
19128,
11997,
2067,
2069,
1157,
581,
3045,
273,
534,
369,
12819,
327,
253,
3961,
686,
84,
11513,
5400,
285,
5561,
1303,
552,
1157,
416,
4046,
285,
16765,
964,
6295,
253,
11803,
7663,
285,
253,
4146,
3228,
9508,
497,
1996,
12819,
327,
253,
17301,
1262,
273,
253,
1384,
394,
19054,
11166,
273,
380,
29092,
19128,
964,
380,
11803,
2715,
369,
671,
2908,
327,
253,
3710,
11166,
378,
1214,
14,
33,
7123,
17301,
7592,
273,
253,
3961,
686,
84,
806,
25234,
5400,
1157,
380,
9567,
273,
9178,
1108,
7901,
964,
2490,
346,
26048,
383,
38104,
346,
369,
3542,
407,
11228,
80,
347,
271,
32135,
281,
521,
4475,
323,
37264,
617,
14348,
964,
380,
4498,
13279,
342,
247,
2159,
18542,
5313,
1078,
253,
1551,
273,
253,
3961,
9513,
281,
1132,
964,
3808,
273,
11228,
80,
686,
84,
24591,
452,
644,
2529,
347,
35036,
273,
2516,
36239,
251,
964,
380,
24105,
2529,
352,
347,
346,
247,
5389,
4498,
3346,
534,
310,
1684,
347,
352,
943,
320,
1905,
417,
4197,
562,
273,
6242,
1157,
533,
1684,
4197,
342,
247,
1524,
41159,
285,
24410,
346,
1157,
671,
15806,
326,
346,
733,
686,
84,
1077,
747,
323,
441,
964,
346,
733,
369,
294,
1214,
14,
33,
5950,
342,
690,
12865,
5526,
16663,
285,
4439,
275,
8065,
347,
247,
2014,
275,
697,
1211,
987,
323,
380,
9567,
273,
9178,
1108,
7901,
964,
9405,
5687,
8121,
427,
451,
77,
39634,
4767,
326,
436,
3540,
1157,
2112,
342,
346,
23752,
24161,
6865,
346,
1157,
310,
346,
271,
15301,
273,
752,
530,
19,
1537,
452,
1160,
3185,
273,
380,
29092,
19128,
964,
346,
4928,
187,
426,
426,
34448,
16112,
426,
426,
4928,
187,
15797,
253,
3727,
273,
380,
29092,
19128,
1157,
17139,
26108,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
964,
11819,
43542,
273,
380,
9693,
34196,
4879,
253,
346,
17487,
1214,
14,
33,
751,
28232,
432,
253,
24105,
30432,
544,
299,
5032,
247,
3186,
323,
13926,
346,
285,
2112,
342,
253,
6774,
3540,
327,
253,
5400,
1157,
346,
309,
11706,
28093,
686,
85,
5952,
1737,
309,
686,
78,
23359,
1198,
346,
1157,
841,
9575,
2692,
849,
253,
1387,
497,
346,
31514,
14381,
1335,
327,
247,
1437,
3706,
417,
638,
24751,
665,
1750,
281,
452,
1119,
9172,
346,
964,
380,
19869,
257,
18700,
32457,
841,
39236,
1157,
3981,
253,
11411,
5183,
849,
253,
3961,
369,
327,
247,
3367,
285,
12435,
1437,
964,
42631,
14963,
1925,
352,
346,
4138,
422,
5561,
346,
275,
616,
2278,
273,
380,
29092,
19128,
964,
380,
5003,
14912,
6398,
1214,
14,
33,
33602,
753,
273,
346,
7900,
253,
30912,
1507,
12238,
1621,
9424,
346,
1157,
346,
253,
3440,
7260,
1157,
751,
3095,
37637,
323,
1495,
346,
964,
380,
5041,
5779,
753,
253,
3540,
310,
346,
247,
2372,
46524,
298,
6147,
1037,
1157,
533,
253,
12739,
403,
2590,
275,
11228,
80,
686,
84,
501,
18046,
6742,
1157,
16908,
313,
253,
24105,
2387,
37144,
686,
84,
572,
11215,
272,
12609,
1157,
13187,
40998,
686,
84,
36368,
16819,
285,
20681,
353,
26584,
686,
84,
14572,
24511,
27275,
346,
964,
2490,
427,
5288,
826,
21015,
253,
4498,
347,
253,
5909,
3540,
407,
3981,
253,
5400,
346,
7866,
407,
653,
2835,
11829,
8140,
346,
964,
380,
9311,
26108,
11228,
80,
686,
84,
1607,
515,
10998,
16115,
285,
380,
24105,
686,
84,
12609,
4882,
1157,
534,
13657,
253,
7935,
715,
346,
1633,
625,
685,
271,
990,
13102,
19848,
5313,
273,
5534,
346,
964,
380,
2278,
20503,
326,
253,
346,
1390,
3578,
7253,
403,
14911,
48150,
314,
5389,
346,
964,
380,
416,
5156,
4159,
326,
253,
4498,
21168,
247,
346,
3402,
273,
3590,
346,
326,
11228,
80,
686,
84,
23599,
2624,
949,
342,
247,
346,
259,
647,
273,
46347,
1157,
347,
253,
24591,
17262,
907,
253,
878,
323,
3367,
50151,
346,
964,
380,
37317,
2429,
253,
5909,
391,
1648,
281,
19743,
18296,
84,
686,
346,
26291,
69,
6816,
346,
964,
8439,
272,
380,
29092,
19128,
1157,
12167,
7195,
8024,
47989,
460,
273,
1876,
30911,
1925,
253,
4498,
271,
346,
19876,
37835,
346,
964,
380,
2579,
686,
84,
11819,
388,
489,
90,
1157,
275,
247,
2278,
273,
253,
4498,
1157,
26108,
697,
346,
1210,
6688,
1157,
4198,
22480,
28715,
6185,
4446,
285,
271,
783,
6185,
35397,
346,
1157,
18701,
344,
1625,
1070,
562,
323,
2403,
352,
247,
7989,
7583,
964,
754,
1925,
253,
4498,
253,
346,
3962,
5400,
1214,
14,
33,
37835,
346,
1157,
3552,
2996,
253,
346,
3468,
1973,
273,
697,
11461,
2584,
247,
12015,
9994,
5241,
346,
964,
388,
489,
90,
671,
1925,
11228,
80,
686,
84,
6742,
346,
22500,
285,
4936,
74,
583,
346,
285,
346,
521,
11847,
281,
253,
2144,
440,
1200,
518,
494,
346,
964,
754,
6566,
253,
5019,
273,
521,
23599,
285,
253,
3961,
686,
84,
346,
3347,
280,
1612,
346,
310,
752,
3534,
530,
19,
697,
346,
19999,
3490,
346,
964,
4928,
187,
426,
426,
14309
] |
Burmese lost 10 @,@ 000 men at Kaungsin. The Mongol armies pushed farther south into the Irrawaddy valley. They took the ancient Burmese capital of Tagaung, about 380 km north of Pagan on 5 February 1284. There, the invaders paused their advance. They found the heat of the searing Irrawaddy valley excessive, and evacuated Tagaung, allowing the Burmese to return to Tagaung on 10 May 1284. But the Mongol army renewed their offensive in the following dry season. They retook Tagaung, and defeated another Burmese stand south of Tagaung, probably near Hanlin, on 26 January 1285, opening the way to Pagan, about 270 km south. After the defeat, the king panicked, and fled to Lower Burma. The evacuation proved premature. The Mongol forces did not advance on Pagan as it was not part of their invasion plan.
The country fell into chaos. In Lower Burma, the king found himself isolated, let alone plan a counterattack. Although his sons ruled the key Lower Burma ports ( Prome, Dala and Bassein ), the king did not trust any of them, and he and his court settled at Hlegya, west of Prome. Without the full support of his sons, the presence of the king and his small army impressed no one. The governor of Pegu revolted that same year. The king managed to send two small expeditions to Pegu but they both failed. Now, the entire eastern half of Lower Burma ( Pegu and Martaban ) was in open revolt.
= = Peace negotiations ( 1285 – 87 ) = =
= = = Ceasefire = = =
Given his precarious position, Narathihapate decided to buy time, and sue for peace with the Mongols. In November / December 1285, the king ordered his generals Ananda Pyissi and Maha Bo to enter into ceasefire negotiations. The Mongol commanders at Hanlin, who had organized northern Burma as a protectorate named Zhengmian ( Chinese : 征緬 ; Wade – Giles : Cheng @-@ Mien ), agreed to a ceasefire but insisted on a full submission. They repeated their 1281 demand that the Burmese king send a formal delegation to the emperor. The two sides had reached a tentative agreement by 3 March 1286, which calls for a full submission of the Pagan Empire, and central Burma to be organized as the province of Mianzhong ( Chinese : 緬中 ; Wade – Giles : Mien @-@ Chung ). After a long deliberation, the king agreed to submit but wanted the Mongol troops to withdraw. In June 1286, he sent an embassy led by Shin Ditha Pamauk, a learned monk, to the emperor's court.
= = = Treaty of Beijing = = =
In January 1287, the embassy arrived at Beijing, and was received by the Yuan emperor. The Burmese delegation formally acknowledged Mongol suzerainty of their kingdom, and agreed to pay annual tribute tied to the agricultural output of the country. ( Indeed, the tribute was no longer nominal. ) In exchange, the emperor agreed to withdraw his troops. For the emperor, the Burma campaign was the only bright spot ; his other Southeast Asian expeditions had gone badly. He did not want to invest more troops pacify the rest of the kingdom. He preferred a vassal ruler. The Burmese embassy arrived back at Hlegya in May 1287, and reported the terms to the king.
= = = Breakdown = = =
But the agreement broke down a month later. In late June, the defeated king and his small retinue left their temporary capital for Pagan. But on 1 July 1287, the king was captured en route and assassinated by his second son Thihathu, the Viceroy of Prome. Anarchy ensued. Each region in the country which had not revolted broke away. No successor to Narathihapate, who could honor and enforce the terms of the treaty of Beijing, emerged. Indeed, a king would not emerge until May 1289.
= = Mongol intervention ( 1287 ) = =
Given the chaos, the governor of Yunnan ignored the imperial orders of evacuation. The Mongol army commanded by Prince Ye @-@ sin Timour, a grandson of the emperor, marched south toward Pagan. According to mainstream traditional ( British colonial era ) scholarship, the Mongol army ignored the imperial orders to evacuate ; fought its way down to Pagan with the loss of 7000 men ; occupied the city ; and sent out detachments to receive homage, one of which reached south of Prome. But not all colonial period scholars agreed with the assessment as none of the contemporary Mongol / Chinese records specifically mentioned the conquest of Pagan or the temporary completeness of the conquest.
Recent research shows that the Mongol forces most probably never reached Pagan. They were held at bay by the Burmese defenses led by commanders Athinkhaya, Yazathingyan and Thihathu, and probably never got closer than 160 km north of Pagan. ( An inscription dated 16 February 1293 by the three brothers claimed that they defeated the Mongol army. ) Even if the Mongols did reach Pagan, the damage they inflicted was probably minimal. At any rate, the Mongol army suffered heavy casualties, and retreated north to Tagaung. They remained there as the treaty was now void.
= = Aftermath = =
The disintegration of the Pagan Empire was now complete. But the Mongols refused to fill in the power vacuum they had created. They would send no more expeditions to restore order. The emperor apparently had no interest in committing troops that would be required to pacify the fragmented country. Indeed, his real aim all along may have been " to keep the entire region of Southeast Asia broken and fragmented. " It would be another two years until one of Narathihapate's sons, Kyawswa, emerged as king of Pagan in May 1289. But the new " king " controlled just a small area around the capital, and had no real army. The real power in central Burma now rested with the three commander brothers.
The uneasy arrangement would persist until 1297. The Mongols continued to occupy northern Burma to Tagaung as the province of Zhengmian ( Cheng @-@ Mien ) but ended the fictional central Burma province of Mianzhong on 18 August 1290. Meanwhile, the power struggle in central Burma continued with the three brothers blatantly consolidating support. To check their rising power, Kyawswa submitted to the Mongols in January 1297, and was recognized by the Yuan emperor Temür Khan as King of Pagan on 20 March 1297. The emperor also gave Chinese titles to the brothers as subordinates of Kyawswa. The brothers resented the new arrangement as it directly reduced their power. On 17 December 1297, the three brothers overthrew Kyawswa, and founded the Myinsaing Kingdom. The dethronement forced the Mongol government to intervene again, leading to the second Mongol invasion of Burma ( 1300 – 01 ). The invasion failed. Two years later, on 4 April 1303, the Mongols abolished the province of Zhengmian ( Cheng @-@ Mien ), evacuated Tagaung, and returned to Yunnan.
= = Legacy = =
The war was one of several near simultaneous wars waged by the Mongol Empire and the Yuan dynasty in the late 13th century. Though it was never more than a minor frontier war to the Mongols, the war set off a series of enduring developments in Burma. The invasions ushered in a period of political fragmentation, and the rise of Tai @-@ Shan states throughout mainland Southeast Asia.
= = = Age of political fragmentation = = =
The immediate result of the war was the collapse of the Pagan Empire. However, the war merely accelerated the collapse but did not cause it. Pagan's disintegration was " in fact more prolonged and agonized. " The kingdom had been in long gradual decline since the early 13th century. Had Pagan possessed a stronger central government, the collapse could have been temporary, and the country “ could have risen again ”. But the dynasty could not recover, and because the Mongols refused to fill the power vacuum, no viable center emerged in the immediate aftermath. As a result, several minor states fought it out for supremacy for the better part of the 14th century. It was only in the late 14th century that two relatively strong powers emerged in the Irrawaddy basin, restoring some semblance of normalcy. The vast region surrounding the Irrawaddy valley would continue to be made up of several small Tai @-@ Shan states well into the 16th century.
= = = Rise of Tai @-@ Shan states = = =
Perhaps the most enduring legacy of the Mongol invasions was the emergence of Tai @-@ Shan states in mainland Southeast Asia. The Tai @-@ Shan people who came down with the Mongol invasions stayed. By the early 14th century, several Tai @-@ Shan states had come to dominate a vast region from present @-@ day Assam to northern and eastern Myanmar to northern and central Thailand and Laos. Their rise was encouraged by the Mongols, who viewed the states as a useful buffer between Yunnan and the rest of Southeast Asia. The Mongols, who were still trying to incorporate Yunnan into the central administration, | wikitext_103 | [
7634,
78,
3248,
3663,
884,
1214,
13,
33,
20181,
1821,
387,
15366,
1947,
7432,
964,
380,
31121,
311,
29894,
10184,
21816,
6420,
715,
253,
7854,
2040,
15242,
17836,
964,
1583,
2335,
253,
9129,
7634,
78,
3248,
5347,
273,
308,
12727,
1947,
1157,
670,
31118,
10771,
6146,
273,
367,
12043,
327,
608,
5080,
1249,
2759,
964,
1707,
1157,
253,
828,
16208,
19925,
616,
7170,
964,
1583,
1119,
253,
4250,
273,
253,
396,
1875,
7854,
2040,
15242,
17836,
13622,
1157,
285,
44543,
308,
12727,
1947,
1157,
6941,
253,
7634,
78,
3248,
281,
1091,
281,
308,
12727,
1947,
327,
884,
2552,
1249,
2759,
964,
1292,
253,
31121,
311,
8544,
23347,
616,
13413,
275,
253,
1563,
6079,
2952,
964,
1583,
851,
645,
308,
12727,
1947,
1157,
285,
16473,
1529,
7634,
78,
3248,
1462,
6420,
273,
308,
12727,
1947,
1157,
3164,
2822,
13594,
3642,
1157,
327,
3436,
4247,
1249,
2227,
1157,
5909,
253,
1039,
281,
367,
12043,
1157,
670,
22540,
10771,
6420,
964,
2732,
253,
13313,
1157,
253,
6963,
3199,
14050,
1157,
285,
18436,
281,
20672,
7634,
785,
964,
380,
39774,
8058,
20346,
964,
380,
31121,
311,
5621,
858,
417,
7170,
327,
367,
12043,
347,
352,
369,
417,
629,
273,
616,
11492,
2098,
964,
2490,
380,
2586,
6497,
715,
20142,
964,
496,
20672,
7634,
785,
1157,
253,
6963,
1119,
2994,
7011,
1157,
1339,
3815,
2098,
247,
4828,
35946,
964,
4129,
521,
15196,
12969,
253,
2234,
20672,
7634,
785,
17596,
313,
367,
5450,
1157,
399,
7080,
285,
8373,
34103,
2387,
1157,
253,
6963,
858,
417,
4517,
667,
273,
731,
1157,
285,
344,
285,
521,
1302,
11371,
387,
388,
1851,
5973,
1157,
8935,
273,
367,
5450,
964,
12414,
253,
2120,
1329,
273,
521,
15196,
1157,
253,
3361,
273,
253,
6963,
285,
521,
1355,
8544,
17847,
642,
581,
964,
380,
14176,
273,
30623,
86,
36733,
264,
326,
1072,
807,
964,
380,
6963,
7303,
281,
5007,
767,
1355,
16625,
4431,
281,
30623,
86,
533,
597,
1097,
4242,
964,
3954,
1157,
253,
2862,
14730,
2716,
273,
20672,
7634,
785,
313,
30623,
86,
285,
5794,
23818,
2387,
369,
275,
1527,
36733,
964,
4928,
187,
426,
426,
20000,
16685,
313,
1249,
2227,
1108,
11422,
2387,
426,
426,
4928,
19668,
426,
426,
426,
16357,
511,
11342,
426,
426,
426,
4928,
187,
10300,
521,
3509,
37993,
1899,
1157,
26417,
506,
6356,
522,
366,
4425,
281,
4489,
673,
1157,
285,
25457,
323,
6330,
342,
253,
31121,
3017,
964,
496,
4596,
1227,
4565,
1249,
2227,
1157,
253,
6963,
6960,
521,
39091,
743,
7447,
8462,
739,
74,
285,
12828,
66,
3452,
281,
4901,
715,
22907,
11342,
16685,
964,
380,
31121,
311,
39717,
387,
13594,
3642,
1157,
665,
574,
10932,
11186,
7634,
785,
347,
247,
47398,
366,
4907,
1503,
24176,
78,
757,
313,
5628,
1163,
209,
12005,
212,
38675,
107,
3706,
31678,
1108,
443,
3205,
1163,
44116,
1214,
14,
33,
353,
1914,
2387,
1157,
5821,
281,
247,
22907,
11342,
533,
16701,
327,
247,
2120,
19529,
964,
1583,
6015,
616,
1249,
3593,
4831,
326,
253,
7634,
78,
3248,
6963,
5007,
247,
7473,
31896,
281,
253,
26390,
964,
380,
767,
7123,
574,
4925,
247,
43095,
4345,
407,
495,
3919,
1249,
2691,
1157,
534,
5841,
323,
247,
2120,
19529,
273,
253,
367,
12043,
13958,
1157,
285,
4275,
7634,
785,
281,
320,
10932,
347,
253,
14254,
273,
353,
757,
20122,
543,
313,
5628,
1163,
209,
38675,
107,
13609,
3706,
31678,
1108,
443,
3205,
1163,
353,
1914,
1214,
14,
33,
775,
1947,
2387,
964,
2732,
247,
1048,
1448,
487,
3328,
1157,
253,
6963,
5821,
281,
11929,
533,
3078,
253,
31121,
311,
10824,
281,
10687,
964,
496,
3978,
1249,
2691,
1157,
344,
2197,
271,
34202,
3977,
407,
33655,
399,
334,
66,
28084,
1952,
76,
1157,
247,
6311,
35295,
1157,
281,
253,
26390,
686,
84,
1302,
964,
4928,
187,
426,
426,
426,
32648,
273,
18496,
426,
426,
426,
4928,
187,
496,
4247,
1249,
2597,
1157,
253,
34202,
7244,
387,
18496,
1157,
285,
369,
2959,
407,
253,
50051,
26390,
964,
380,
7634,
78,
3248,
31896,
19186,
14969,
31121,
311,
402,
8260,
404,
555,
273,
616,
18794,
1157,
285,
5821,
281,
2075,
7970,
27458,
12331,
281,
253,
17340,
3453,
273,
253,
2586,
964,
313,
8079,
1157,
253,
27458,
369,
642,
3356,
25662,
964,
2387,
496,
6431,
1157,
253,
26390,
5821,
281,
10687,
521,
10824,
964,
1198,
253,
26390,
1157,
253,
7634,
785,
4544,
369,
253,
760,
6627,
6308,
3706,
521,
643,
29797,
11650,
16625,
4431,
574,
4783,
16426,
964,
754,
858,
417,
971,
281,
1718,
625,
10824,
19162,
1419,
253,
1551,
273,
253,
18794,
964,
754,
9013,
247,
362,
515,
267,
29658,
964,
380,
7634,
78,
3248,
34202,
7244,
896,
387,
388,
1851,
5973,
275,
2552,
1249,
2597,
1157,
285,
2361,
253,
2426,
281,
253,
6963,
964,
4928,
187,
426,
426,
426,
24037,
3487,
426,
426,
426,
4928,
187,
1292,
253,
4345,
9377,
1066,
247,
1770,
1996,
964,
496,
3563,
3978,
1157,
253,
16473,
6963,
285,
521,
1355,
26965,
489,
1669,
616,
11287,
5347,
323,
367,
12043,
964,
1292,
327,
337,
4163,
1249,
2597,
1157,
253,
6963,
369,
10848,
546,
7622,
285,
18111,
3901,
407,
521,
1273,
3347,
596,
6356,
506,
86,
1157,
253,
29876,
254,
899,
273,
367,
5450,
964,
743,
12638,
49984,
964,
5815,
2919,
275,
253,
2586,
534,
574,
417,
36733,
264,
9377,
1977,
964,
1621,
24193,
281,
26417,
506,
6356,
522,
366,
1157,
665,
812,
10390,
285,
7767,
253,
2426,
273,
253,
23848,
273,
18496,
1157,
13082,
964,
8079,
1157,
247,
6963,
651,
417,
20177,
1919,
2552,
1249,
2511,
964,
4928,
187,
426,
426,
31121,
311,
7268,
313,
1249,
2597,
2387,
426,
426,
4928,
187,
10300,
253,
20142,
1157,
253,
14176,
273,
714,
4462,
266,
12841,
253,
21474,
7367,
273,
39774,
964,
380,
31121,
311,
8544,
26814,
407,
12843,
23203,
1214,
14,
33,
6868,
8969,
454,
1157,
247,
39680,
273,
253,
26390,
1157,
31653,
6420,
2584,
367,
12043,
964,
4794,
281,
17068,
5899,
313,
4782,
21441,
8685,
2387,
26104,
1157,
253,
31121,
311,
8544,
12841,
253,
21474,
7367,
281,
21019,
6340,
3706,
13465,
697,
1039,
1066,
281,
367,
12043,
342,
253,
2957,
273,
818,
933,
1821,
3706,
13598,
253,
2846,
3706,
285,
2197,
562,
42103,
942,
281,
4763,
47636,
1157,
581,
273,
534,
4925,
6420,
273,
367,
5450,
964,
1292,
417,
512,
21441,
2180,
12981,
5821,
342,
253,
6803,
347,
5293,
273,
253,
13399,
31121,
311,
1227,
5628,
5861,
5742,
5393,
253,
35224,
273,
367,
12043,
390,
253,
11287,
29867,
273,
253,
35224,
964,
2490,
19863,
2561,
2722,
326,
253,
31121,
311,
5621,
954,
3164,
1620,
4925,
367,
12043,
964,
1583,
497,
2918,
387,
17699,
407,
253,
7634,
78,
3248,
25774,
3977,
407,
39717,
329,
18959,
73,
12451,
1157,
714,
1370,
31816,
8202,
285,
596,
6356,
506,
86,
1157,
285,
3164,
1620,
1694,
8003,
685,
12036,
10771,
6146,
273,
367,
12043,
964,
313,
743,
45676,
15483,
1668,
5080,
1249,
4590,
407,
253,
1264,
13189,
7558,
326,
597,
16473,
253,
31121,
311,
8544,
964,
2387,
4952,
604,
253,
31121,
3017,
858,
3986,
367,
12043,
1157,
253,
4723,
597,
39723,
369,
3164,
8723,
964,
2058,
667,
2281,
1157,
253,
31121,
311,
8544,
9606,
5536,
32853,
1157,
285,
46047,
6146,
281,
308,
12727,
1947,
964,
1583,
6376,
627,
347,
253,
23848,
369,
1024,
2991,
964,
4928,
187,
426,
426,
2732,
679,
426,
426,
4928,
187,
380,
557,
32375,
273,
253,
367,
12043,
13958,
369,
1024,
3426,
964,
1292,
253,
31121,
3017,
9284,
281,
7522,
275,
253,
1612,
12124,
597,
574,
3562,
964,
1583,
651,
5007,
642,
625,
16625,
4431,
281,
15042,
1340,
964,
380,
26390,
8505,
574,
642,
1600,
275,
26841,
10824,
326,
651,
320,
2424,
281,
19162,
1419,
253,
42283,
2586,
964,
8079,
1157,
521,
1524,
4388,
512,
2112,
778,
452,
644,
346,
281,
1978,
253,
2862,
2919,
273,
29797,
10497,
7154,
285,
42283,
964,
346,
733,
651,
320,
1529,
767,
1107,
1919,
581,
273,
26417,
506,
6356,
522,
366,
686,
84,
15196,
1157,
18009,
1403,
2140,
66,
1157,
13082,
347,
6963,
273,
367,
12043,
275,
2552,
1249,
2511,
964,
1292,
253,
747,
346,
6963,
346,
6537,
816,
247,
1355,
2170,
1475,
253,
5347,
1157,
285,
574,
642,
1524,
8544,
964,
380,
1524,
1612,
275,
4275,
7634,
785,
1024,
27001,
342,
253,
1264,
17747,
13189,
964,
2490,
380,
43025,
11461,
651,
24266,
1919,
1249,
4148,
964,
380,
31121,
3017,
4821,
281,
26263,
11186,
7634,
785,
281,
308,
12727,
1947,
347,
253,
14254,
273,
1503,
24176,
78,
757,
313,
44116,
1214,
14,
33,
353,
1914,
2387,
533,
7402,
253,
29934,
4275,
7634,
785,
14254,
273,
353,
757,
20122,
543,
327,
1283,
4223,
1249,
2270,
964,
16257,
1157,
253,
1612,
11182,
275,
4275,
7634,
785,
4821,
342,
253,
1264,
13189,
40458,
5954,
16932,
839,
1329,
964,
1916,
2451,
616,
11002,
1612,
1157,
18009,
1403,
2140,
66,
9262,
281,
253,
31121,
3017,
275,
4247,
1249,
4148,
1157,
285,
369,
7478,
407,
253,
50051,
26390,
8582,
8824,
21128,
347,
4377,
273,
367,
12043,
327,
1384,
3919,
1249,
4148,
964,
380,
26390,
671,
3534,
5628,
14505,
281,
253,
13189,
347,
42272,
8475,
273,
18009,
1403,
2140,
66,
964,
380,
13189,
501,
8006,
253,
747,
11461,
347,
352,
3587,
3777,
616,
1612,
964,
1623,
1722,
4565,
1249,
4148,
1157,
253,
1264,
13189,
689,
394,
2663,
18009,
1403,
2140,
66,
1157,
285,
11420,
253,
2752,
968,
66,
272,
11491,
964,
380,
277,
678,
1406,
1003,
6726,
253,
31121,
311,
2208,
281,
32014,
969,
1157,
4283,
281,
253,
1273,
31121,
311,
11492,
273,
7634,
785,
313,
47822,
1108,
14805,
2387,
964,
380,
11492,
4242,
964,
5761,
1107,
1996,
1157,
327,
577,
4162,
11084,
20,
1157,
253,
31121,
3017,
31175,
253,
14254,
273,
1503,
24176,
78,
757,
313,
44116,
1214,
14,
33,
353,
1914,
2387,
1157,
44543,
308,
12727,
1947,
1157,
285,
4895,
281,
714,
4462,
266,
964,
4928,
187,
426,
426,
41091,
426,
426,
4928,
187,
380,
2137,
369,
581,
273,
2067,
2822,
19645,
16860,
259,
2961,
407,
253,
31121,
311,
13958,
285,
253,
50051,
34526,
275,
253,
3563,
2145,
394,
5331,
964,
11474,
352,
369,
1620,
625,
685,
247,
5884,
34642,
2137,
281,
253,
31121,
3017,
1157,
253,
2137,
873,
745,
247,
2962,
273,
36543,
16936,
275,
7634,
785,
964,
380,
45052,
621,
441,
23258,
275,
247,
2180,
273,
3569,
27159,
1157,
285,
253,
6054,
273,
14616,
1214,
14,
33,
41098,
3054,
4768,
31584,
29797,
10497,
964,
4928,
187,
426,
426,
426,
11362,
273,
3569,
27159,
426,
426,
426,
4928,
187,
380,
8993,
906,
273,
253,
2137,
369,
253,
13551,
273,
253,
367,
12043,
13958,
964,
1723,
1157,
253,
2137,
7960,
21702,
253,
13551,
533,
858,
417,
2847,
352,
964,
367,
12043,
686,
84,
557,
32375,
369,
346,
275,
958,
625,
16707,
285,
17262,
1025,
964,
346,
380,
18794,
574,
644,
275,
1048,
26830,
10343,
1580,
253,
2393,
2145,
394,
5331,
964,
14136,
367,
12043,
18801,
247,
10046,
4275,
2208,
1157,
253,
13551,
812,
452,
644,
11287,
1157,
285,
253,
2586,
773,
812,
452,
28987,
969,
18365,
964,
1292,
253,
34526,
812,
417,
9295,
1157,
285,
984,
253,
31121,
3017,
9284,
281,
7522,
253,
1612,
12124,
1157,
642,
16571,
4055,
13082,
275,
253,
8993,
31433,
964,
1284,
247,
906,
1157,
2067,
5884,
3054,
13465,
352,
562,
323,
46971,
323,
253,
1805,
629,
273,
253,
1638,
394,
5331,
964,
733,
369,
760,
275,
253,
3563,
1638,
394,
5331,
326,
767,
4942,
2266,
9136,
13082,
275,
253,
7854,
2040,
15242,
31567,
1157,
33269,
690,
3300,
29993,
273,
2622,
951,
964,
380,
8485,
2919,
8704,
253,
7854,
2040,
15242,
17836,
651,
4035,
281,
320,
1160,
598,
273,
2067,
1355,
14616,
1214,
14,
33,
41098,
3054,
973,
715,
253,
1668,
394,
5331,
964,
4928,
187,
426,
426,
426,
39952,
273,
14616,
1214,
14,
33,
41098,
3054,
426,
426,
426,
4928,
187,
11243,
253,
954,
36543,
17646,
273,
253,
31121,
311,
45052,
621,
369,
253,
21313,
273,
14616,
1214,
14,
33,
41098,
3054,
275,
31584,
29797,
10497,
964,
380,
14616,
1214,
14,
33,
41098,
952,
665,
2210,
1066,
342,
253,
31121,
311,
45052,
621,
11791,
964,
2896,
253,
2393,
1638,
394,
5331,
1157,
2067,
14616,
1214,
14,
33,
41098,
3054,
574,
1705,
281,
25903,
247,
8485,
2919,
432,
1246,
1214,
14,
33,
1388,
2903,
312,
281,
11186,
285,
14730,
43828,
281,
11186,
285,
4275,
23174,
285,
3905,
375,
964,
7160,
6054,
369,
14659,
407,
253,
31121,
3017,
1157,
665,
11575,
253,
3054,
347,
247,
4217,
6391,
875,
714,
4462,
266,
285,
253,
1551,
273,
29797,
10497,
964,
380,
31121,
3017,
1157,
665,
497,
1335,
2820,
281,
19071,
714,
4462,
266,
715,
253,
4275,
5286,
1157
] |
influential book, The Sect of Scientology and its Front Organizations. In 1981, the organization's founder, Ingo Heinemann, became the director of Aktion für geistige und psychische Freiheit ( " Campaign for Intellectual and Psychic Freedom " ), Germany's most prominent anti @-@ cult organization. Warnings from sect experts about the influence of new religious movements gained media attention which put political pressure on the government to deal with the situation ; as the movements were not doing anything illegal, the government resorted to issuing a range of leaflets and public statements giving general warnings about religious sects, the earliest of these publications appearing in 1979.
Fueled by events such as the Waco Siege in 1993, the murders and suicides associated with the Order of the Solar Temple, and the 1995 Aum Shinrikyo incidents in Japan, German fears and concerns about new religious movements gained in intensity in the 1990s, with Scientology attracting particular attention. Perceptions that Scientology had a totalitarian character were reinforced when Robert Vaughn Young, an American ex @-@ Scientologist and former PR official in the Church of Scientology, visited German officials in late 1995 and wrote an article in Der Spiegel, a widely @-@ read weekly magazine, describing Scientology as a totalitarian system operating a gulag – the Rehabilitation Project Force – for members of Scientology's Sea Org found guilty of transgressions. From the mid @-@ 1990s onward, press articles, reports and essays on Scientology appeared on an almost daily basis, accompanied by books and television programmes that reached a mass audience.
As noted by the religious scholar Hubert Seiwert, Scientology came to be seen as a " serious political danger that not only threatened to turn individuals into will @-@ less zombies, but was also conspiring to overthrow the democratic constitution of the state ". This view of Scientology as a public enemy, Seiwert adds, " became a matter of political correctness " : senior political figures became involved in launching campaigns against Scientology, and being suspected of any association with it resulted in social ostracism. Stephen A. Kent, writing in 1998, noted that officials at all levels of German government shared the insistence that Scientology should be suppressed. Scientology was viewed as " a totalitarian, business @-@ driven organization [... ] guilty of significant human rights abuses. " Officials examining primary and secondary sources, legal documents, and the testimony of former members, concluded that the organization was " antithetical to a democratic state ". Federal ministries and state governments were asked to use all legal means at their disposal to check the activities of Scientology.
Government publications on the dangers of sects increased between 1996 and 1998, and a significant number of them dealt with the Church of Scientology. The German courts had approved such publications in 1989, seeing them as part of the government's responsibility to keep the public informed, and finding that they did not interfere with religious freedom. In 1996, the German parliament launched an Enquete ( Enquiry ) Commission to investigate sects and similar groups, in large part because of public concerns about Scientology. Its final report, published in June 1998, concluded that Scientology, alone among new religious movements, required monitoring by Germany's domestic intelligence services.
An area of widespread concern in the German media has been the alleged " infiltration " of businesses by Scientologists, in line with Scientology's declared aim to penetrate society, politics and business in preparation for world domination. Attempts to infiltrate businesses have reportedly been most successful among small and medium @-@ size companies, such as estate agents, management consultants and management @-@ training companies. Management @-@ consultancy firms led by Scientologists often conceal their association with Scientology ; once they have recruited members of their clients'upper management, these managers may send employees to Scientology trainers, as part of company education and training programmes, without informing them as to the origin of the training methods used. An expensive commercial version of Scientology's Oxford Capacity Analysis, usually offered free as part of Scientology proselytizing in public places, temporarily entered some major German companies ( who were unaware of its provenance ) via such a management @-@ consultancy firm.
In the mid @-@ 2000s, German sect experts expressed concerns that Scientologists were becoming active in the German after @-@ school tutoring market. These concerns arose because customers of around 20 after @-@ school tutoring centres operated by Scientologists in Frankfurt, Hamburg, Stuttgart and elsewhere might be unaware that their children were being taught by Scientologists, using Scientology methods. Brochures advertising the tutoring services would at most mention the name of L. Ron Hubbard, the founder of Scientology, but not Scientology itself.
In early 2008, Thomas Gandow, Sect Commissioner of the German Lutheran Church in Berlin and Brandenburg, and the historian Guido Knopp both likened the Scientologist Hollywood actor Tom Cruise to Goebbels, the Nazi propaganda minister. Gandow and Knopp cited a leaked Scientology video in which Cruise was seen asking the audience whether Scientologists should " clean up " the world, the audience responding with enthusiastic cheers – cheers which Gandow and Knopp felt were reminiscent of the audience's response to Goebbels'famous question, " Do you want total war? " Gandow's and Knopp's comments found few critics in Germany. Most Germans consider Scientology a subversive organization. In 1997, Time reported that 70 % of Germans favoured banning Scientology ; a poll conducted in September 2008 by Der Spiegel found 67 % support for a ban.
German scholars such as Brigitte Schön and Gerald Willms have commented that rhetoric dominates public discourse around Scientology in Germany : in their view, efforts to " frame " information in such a way as to shape opinion have long been more important than the underlying realities. In Schön's words, this includes both the " efforts of German politicians to enhance their popularity with strong @-@ worded statements " and " Scientology's efforts to present itself as the victim of unjust persecution " ; commenting on foreign reporting on Scientology in Germany, she adds that " the American press may prefer sensationalist news to boring investigation and may frame the issue according to American stereotypes ". Both Willms and Schön assert that the situation is compounded by the general paucity of scientific studies of Scientology. Schön as well as Irving Hexham, Professor of Religious Studies at the University of Calgary in Canada, have remarked in particular on the lack of academic studies by German scholars. Hexham attributes this situation to the strong influence of the Christian churches in Germany, which has made German academics wary of approaching the subject, because they fear repercussions for their research funding and for their prospects of future employment if they involve themselves in the debate.
In 2010 a German public broadcaster, ARD, showed the film Until Nothing Remains, a dramatized account of the effect Scientology had on one German family. Said to be based on a true story, the film attracted widespread media attention and a viewership of 8 @.@ 69 million.
= = Legal status = =
While there have been calls for Scientology to be banned, the Church of Scientology remains legal in Germany and is allowed to operate there. Its precise legal status however is unresolved. Two points are contested : first, whether or not the teachings of Scientology qualify as a " religion or worldview " ( Religion or Weltanschauung ; these are equal before German law ), and secondly, whether or not these teachings are only used as a pretext for purely commercial activity ; if the latter were the case, this would most likely imply that Scientology would not qualify for protection as a " religious or worldview community " ( Religions- oder Weltanschauungsgemeinschaft ) under Article 4 of the German constitution, which guarantees the freedom of belief, religion and worldview. Status as a " religious or worldview community " also affects a broad range of other issues in Germany, such as taxation and freedom of association.
The Federal Court of Justice of Germany has not yet made an explicit decision on the matter, but implicitly assumed in 1980 that Scientology represented a religious or worldview community. The Upper Administrative Court in Hamburg explicitly asserted in 1994 that Scientology should be viewed as a worldview community. In 1995, the Federal Labor Court of Germany decided that the Church of Scientology merely pursued commercial aims and did not represent a religious or worldview community entitled to protection under Article 4 of the German Constitution, although another decision by the same court left the question open again in 2003. In another 2003 decision, the Administrative Court of Baden @-@ Württemberg in Mannheim said there were no indications that the teachings of Scientology merely served as a pretext for commercial activity. In 2005, the Federal Administrative Court of Germany explicitly granted a Scientologist protection under Article 4 @.@ 1 of the German Constitution, which declares the freedom of religion and worldview inviolate.
Many courts have declined to assess the religious status of Scientology, finding that the question was irrelevant to deciding the case at hand. The Federal Administrative Court for example ruled in 1997 that the question whether or not Scientology was a religion was irrelevant, and that its legal status should be judged by its business activities. The German government does not consider the Church of Scientology to be a religious or worldview community and asserts that Scientology is a profit @-@ making enterprise, rather than a religion. Recent years have seen a number of court decisions in Scientology's favour, despite the very widespread negative attitude to Scientology among politicians and the general public.
= = Government surveillance = =
Given the history of Nazism's rise to | wikitext_103 | [
20803,
1984,
1157,
380,
33743,
273,
11615,
1497,
285,
697,
15808,
10164,
5904,
964,
496,
13402,
1157,
253,
6003,
686,
84,
15217,
1157,
496,
2184,
36029,
39480,
1157,
3395,
253,
6423,
273,
28945,
279,
13417,
3471,
382,
9236,
3807,
4369,
15488,
8377,
74,
23867,
313,
346,
27069,
323,
17545,
37246,
285,
13219,
280,
20574,
346,
2387,
1157,
6176,
686,
84,
954,
11906,
3270,
1214,
14,
33,
2453,
6003,
964,
411,
40578,
432,
25102,
10071,
670,
253,
4833,
273,
747,
7231,
11438,
12103,
3420,
4116,
534,
1691,
3569,
3473,
327,
253,
2208,
281,
2968,
342,
253,
4112,
3706,
347,
253,
11438,
497,
417,
2509,
2712,
9676,
1157,
253,
2208,
501,
7551,
281,
29018,
247,
2491,
273,
10617,
6639,
285,
1345,
7234,
4933,
2087,
20942,
670,
7231,
25102,
84,
1157,
253,
18353,
273,
841,
16516,
15602,
275,
13842,
964,
2490,
48898,
264,
407,
3394,
824,
347,
253,
411,
15861,
15983,
463,
275,
9725,
1157,
253,
29803,
285,
402,
26685,
2330,
342,
253,
9700,
273,
253,
24771,
17658,
1157,
285,
253,
8878,
329,
360,
33655,
363,
4742,
80,
18048,
275,
4047,
1157,
5685,
18055,
285,
7350,
670,
747,
7231,
11438,
12103,
275,
7133,
275,
253,
7901,
84,
1157,
342,
11615,
1497,
35748,
1798,
4116,
964,
3545,
14233,
326,
11615,
1497,
574,
247,
2264,
14621,
1894,
497,
28809,
672,
6911,
38923,
79,
10231,
1157,
271,
2448,
385,
1214,
14,
33,
11615,
10364,
285,
3438,
4653,
3565,
275,
253,
6412,
273,
11615,
1497,
1157,
11580,
5685,
6338,
275,
3563,
8878,
285,
4159,
271,
3929,
275,
12658,
2101,
50199,
1157,
247,
7561,
1214,
14,
33,
1239,
13772,
11338,
1157,
12930,
11615,
1497,
347,
247,
2264,
14621,
985,
6498,
247,
49725,
356,
1108,
253,
49251,
8049,
10627,
1108,
323,
2758,
273,
11615,
1497,
686,
84,
11936,
2207,
72,
1119,
8106,
273,
811,
3161,
621,
964,
4325,
253,
4260,
1214,
14,
33,
7901,
84,
47768,
1157,
2315,
7774,
1157,
5012,
285,
30506,
327,
11615,
1497,
5420,
327,
271,
2761,
5312,
3720,
1157,
11704,
407,
5098,
285,
7315,
24040,
326,
4925,
247,
2280,
8446,
964,
2490,
1284,
4879,
407,
253,
7231,
26902,
15634,
797,
1023,
27684,
797,
1157,
11615,
1497,
2210,
281,
320,
2326,
347,
247,
346,
4092,
3569,
5434,
326,
417,
760,
13699,
281,
1614,
4292,
715,
588,
1214,
14,
33,
1679,
29567,
447,
1157,
533,
369,
671,
772,
46496,
281,
47743,
253,
18545,
7410,
273,
253,
1375,
346,
964,
831,
1859,
273,
11615,
1497,
347,
247,
1345,
9054,
1157,
1023,
27684,
797,
11323,
1157,
346,
3395,
247,
2647,
273,
3569,
36594,
346,
1163,
8474,
3569,
8442,
3395,
3206,
275,
25251,
18120,
1411,
11615,
1497,
1157,
285,
1146,
13282,
273,
667,
5864,
342,
352,
7369,
275,
2675,
258,
1344,
317,
1204,
964,
12167,
329,
15,
12808,
1157,
4028,
275,
8065,
1157,
4879,
326,
6338,
387,
512,
2308,
273,
5685,
2208,
6096,
253,
45095,
326,
11615,
1497,
943,
320,
16013,
964,
11615,
1497,
369,
11575,
347,
346,
247,
2264,
14621,
1157,
2136,
1214,
14,
33,
8877,
6003,
544,
3346,
5032,
8106,
273,
1534,
1966,
3570,
35703,
964,
346,
8853,
8075,
17565,
3625,
285,
6561,
4973,
1157,
4320,
7177,
1157,
285,
253,
6206,
273,
3438,
2758,
1157,
7945,
326,
253,
6003,
369,
346,
20711,
6168,
474,
281,
247,
18545,
1375,
346,
964,
7671,
28099,
2246,
285,
1375,
13001,
497,
2546,
281,
897,
512,
4320,
2097,
387,
616,
23585,
281,
2451,
253,
4712,
273,
11615,
1497,
964,
2490,
7295,
16516,
327,
253,
25926,
273,
25102,
84,
2559,
875,
8441,
285,
8065,
1157,
285,
247,
1534,
1180,
273,
731,
18445,
342,
253,
6412,
273,
11615,
1497,
964,
380,
5685,
7829,
574,
7012,
824,
16516,
275,
11161,
1157,
6523,
731,
347,
629,
273,
253,
2208,
686,
84,
8294,
281,
1978,
253,
1345,
8191,
1157,
285,
4560,
326,
597,
858,
417,
19323,
342,
7231,
7185,
964,
496,
8441,
1157,
253,
5685,
16005,
10098,
271,
3035,
371,
16606,
313,
3035,
44917,
2387,
5399,
281,
7409,
25102,
84,
285,
2074,
2390,
1157,
275,
1781,
629,
984,
273,
1345,
7350,
670,
11615,
1497,
964,
7850,
2457,
1304,
1157,
3863,
275,
3978,
8065,
1157,
7945,
326,
11615,
1497,
1157,
3815,
2190,
747,
7231,
11438,
1157,
2424,
8667,
407,
6176,
686,
84,
9836,
9260,
3238,
964,
2490,
743,
2170,
273,
14414,
4468,
275,
253,
5685,
3420,
556,
644,
253,
5575,
346,
25514,
346,
273,
9341,
407,
11615,
11644,
1157,
275,
1386,
342,
11615,
1497,
686,
84,
8884,
4388,
281,
34165,
5948,
1157,
8672,
285,
2136,
275,
9008,
323,
1533,
38767,
964,
42478,
84,
281,
23608,
366,
9341,
452,
17324,
644,
954,
5547,
2190,
1355,
285,
4646,
1214,
14,
33,
1979,
4413,
1157,
824,
347,
8304,
6083,
1157,
4323,
40576,
285,
4323,
1214,
14,
33,
3733,
4413,
964,
11354,
1214,
14,
33,
7279,
4306,
16255,
3977,
407,
11615,
11644,
2223,
26037,
616,
5864,
342,
11615,
1497,
3706,
2378,
597,
452,
17875,
2758,
273,
616,
8548,
686,
5170,
4323,
1157,
841,
15071,
778,
5007,
6171,
281,
11615,
1497,
47366,
1157,
347,
629,
273,
2567,
4730,
285,
3733,
24040,
1157,
1293,
36689,
731,
347,
281,
253,
6510,
273,
253,
3733,
3082,
908,
964,
743,
8214,
6264,
2715,
273,
11615,
1497,
686,
84,
12719,
8040,
10757,
10330,
1157,
3798,
5907,
1959,
347,
629,
273,
11615,
1497,
5847,
600,
85,
3006,
275,
1345,
5053,
1157,
20220,
5966,
690,
2201,
5685,
4413,
313,
665,
497,
25229,
273,
697,
872,
7697,
2387,
3066,
824,
247,
4323,
1214,
14,
33,
7279,
4306,
5882,
964,
2490,
496,
253,
4260,
1214,
14,
33,
5307,
84,
1157,
5685,
25102,
10071,
4469,
7350,
326,
11615,
11644,
497,
7552,
3939,
275,
253,
5685,
846,
1214,
14,
33,
2143,
17846,
4263,
2791,
964,
2053,
7350,
20944,
984,
6383,
273,
1475,
1384,
846,
1214,
14,
33,
2143,
17846,
4263,
23221,
11658,
407,
11615,
11644,
275,
42471,
1157,
38343,
1157,
659,
13077,
23946,
285,
11358,
1537,
320,
25229,
326,
616,
2151,
497,
1146,
10256,
407,
11615,
11644,
1157,
970,
11615,
1497,
3082,
964,
4819,
348,
980,
12089,
253,
17846,
4263,
3238,
651,
387,
954,
3748,
253,
1416,
273,
418,
15,
15657,
35826,
1157,
253,
15217,
273,
11615,
1497,
1157,
533,
417,
11615,
1497,
3139,
964,
2490,
496,
2393,
4695,
1157,
7195,
28257,
319,
1157,
33743,
15605,
273,
253,
5685,
24496,
266,
6412,
275,
12911,
285,
21444,
40260,
1157,
285,
253,
24072,
3262,
7112,
611,
2369,
377,
1097,
2078,
2348,
253,
11615,
10364,
14759,
12353,
6270,
48884,
281,
3617,
2275,
45786,
1157,
253,
21219,
23306,
9843,
964,
28257,
319,
285,
611,
2369,
377,
11106,
247,
31347,
11615,
1497,
3492,
275,
534,
48884,
369,
2326,
7004,
253,
8446,
1880,
11615,
11644,
943,
346,
4076,
598,
346,
253,
1533,
1157,
253,
8446,
19392,
342,
31905,
1161,
398,
1108,
1161,
398,
534,
28257,
319,
285,
611,
2369,
377,
3543,
497,
35036,
273,
253,
8446,
686,
84,
2380,
281,
3617,
2275,
45786,
686,
8530,
1953,
1157,
346,
3166,
368,
971,
2264,
2137,
3736,
346,
28257,
319,
686,
84,
285,
611,
2369,
377,
686,
84,
5701,
1119,
1643,
17139,
275,
6176,
964,
5595,
20003,
1908,
11615,
1497,
247,
749,
735,
422,
6003,
964,
496,
8210,
1157,
6865,
2361,
326,
5571,
2462,
273,
20003,
46680,
43916,
11615,
1497,
3706,
247,
8461,
5196,
275,
4397,
4695,
407,
12658,
2101,
50199,
1119,
9963,
2462,
1329,
323,
247,
8913,
964,
2490,
5685,
12981,
824,
347,
20202,
50161,
3697,
17685,
285,
32509,
7395,
983,
452,
20503,
326,
26527,
36807,
1345,
25200,
1475,
11615,
1497,
275,
6176,
1163,
275,
616,
1859,
1157,
6031,
281,
346,
3665,
346,
1491,
275,
824,
247,
1039,
347,
281,
5281,
4743,
452,
1048,
644,
625,
1774,
685,
253,
6944,
34759,
964,
496,
3697,
17685,
686,
84,
3000,
1157,
436,
3797,
1097,
253,
346,
6031,
273,
5685,
13557,
281,
7278,
616,
18395,
342,
2266,
1214,
14,
33,
3159,
264,
7234,
346,
285,
346,
11615,
1497,
686,
84,
6031,
281,
1246,
3139,
347,
253,
5487,
273,
26694,
31222,
346,
3706,
36738,
327,
5639,
9610,
327,
11615,
1497,
275,
6176,
1157,
703,
11323,
326,
346,
253,
2448,
2315,
778,
4510,
2288,
1050,
382,
3668,
281,
22258,
5839,
285,
778,
3665,
253,
2523,
2556,
281,
2448,
44720,
346,
964,
6295,
7395,
983,
285,
3697,
17685,
4138,
326,
253,
4112,
310,
509,
8055,
407,
253,
2087,
1349,
1028,
414,
273,
8249,
2175,
273,
11615,
1497,
964,
3697,
17685,
347,
973,
347,
38071,
48927,
3964,
1157,
12734,
273,
41079,
11709,
387,
253,
2499,
273,
37304,
275,
6144,
1157,
452,
25995,
275,
1798,
327,
253,
3480,
273,
11073,
2175,
407,
5685,
12981,
964,
48927,
3964,
12474,
436,
4112,
281,
253,
2266,
4833,
273,
253,
6416,
18777,
275,
6176,
1157,
534,
556,
1160,
5685,
36760,
38407,
273,
17682,
253,
2256,
1157,
984,
597,
4709,
21230,
68,
45874,
323,
616,
2561,
8362,
285,
323,
616,
22087,
273,
2852,
8410,
604,
597,
6388,
3746,
275,
253,
8881,
964,
2490,
496,
4267,
247,
5685,
1345,
3862,
33293,
1157,
6647,
37,
1157,
2692,
253,
3085,
20539,
13529,
6235,
1550,
1157,
247,
50104,
1025,
2395,
273,
253,
1055,
11615,
1497,
574,
327,
581,
5685,
2021,
964,
35194,
281,
320,
1754,
327,
247,
2032,
2926,
1157,
253,
3085,
17755,
14414,
3420,
4116,
285,
247,
1859,
4249,
273,
854,
1214,
15,
33,
10447,
3041,
964,
4928,
187,
426,
426,
24547,
3708,
426,
426,
4928,
187,
3900,
627,
452,
644,
5841,
323,
11615,
1497,
281,
320,
20374,
1157,
253,
6412,
273,
11615,
1497,
4558,
4320,
275,
6176,
285,
310,
4136,
281,
10196,
627,
964,
7850,
10799,
4320,
3708,
2299,
310,
39394,
964,
5761,
2792,
403,
30983,
1163,
806,
1157,
1880,
390,
417,
253,
28480,
273,
11615,
1497,
19478,
347,
247,
346,
9596,
390,
1533,
1374,
346,
313,
34959,
390,
47679,
507,
348,
1952,
1947,
3706,
841,
403,
4503,
1078,
5685,
1569,
2387,
1157,
285,
1273,
314,
1157,
1880,
390,
417,
841,
28480,
403,
760,
908,
347,
247,
39543,
323,
15846,
6264,
2425,
3706,
604,
253,
6158,
497,
253,
1083,
1157,
436,
651,
954,
2779,
16084,
326,
11615,
1497,
651,
417,
19478,
323,
6055,
347,
247,
346,
7231,
390,
1533,
1374,
3114,
346,
313,
5712,
304,
621,
14,
25342,
47679,
507,
348,
1952,
1947,
8433,
20867,
968,
19696,
2387,
762,
14108,
577,
273,
253,
5685,
7410,
1157,
534,
23632,
253,
7185,
273,
9927,
1157,
9596,
285,
1533,
1374,
964,
20364,
347,
247,
346,
7231,
390,
1533,
1374,
3114,
346,
671,
11852,
247,
3862,
2491,
273,
643,
3374,
275,
6176,
1157,
824,
347,
34871,
285,
7185,
273,
5864,
964,
2490,
380,
7671,
2111,
273,
8293,
273,
6176,
556,
417,
2568,
1160,
271,
6843,
3061,
327,
253,
2647,
1157,
533,
29688,
8025,
275,
9178,
326,
11615,
1497,
6607,
247,
7231,
390,
1533,
1374,
3114,
964,
380,
24120,
33241,
2111,
275,
38343,
11120,
16402,
275,
9354,
326,
11615,
1497,
943,
320,
11575,
347,
247,
1533,
1374,
3114,
964,
496,
8878,
1157,
253,
7671,
9543,
2111,
273,
6176,
4425,
326,
253,
6412,
273,
11615,
1497,
7960,
23321,
6264,
13698,
285,
858,
417,
1957,
247,
7231,
390,
1533,
1374,
3114,
7429,
281,
6055,
762,
14108,
577,
273,
253,
5685,
10350,
1157,
3738,
1529,
3061,
407,
253,
1072,
1302,
1669,
253,
1953,
1527,
969,
275,
6469,
964,
496,
1529,
6469,
3061,
1157,
253,
33241,
2111,
273,
378,
12670,
1214,
14,
33,
411,
3090,
1378,
85,
2037,
72,
275,
17672,
17563,
753,
627,
497,
642,
25488,
326,
253,
28480,
273,
11615,
1497,
7960,
5608,
347,
247,
39543,
323,
6264,
2425,
964,
496,
5826,
1157,
253,
7671,
33241,
2111,
273,
6176,
11120,
7169,
247,
11615,
10364,
6055,
762,
14108,
577,
1214,
15,
33,
337,
273,
253,
5685,
10350,
1157,
534,
34852,
253,
7185,
273,
9596,
285,
1533,
1374,
828,
10966,
366,
964,
2490,
6676,
7829,
452,
13072,
281,
2939,
253,
7231,
3708,
273,
11615,
1497,
1157,
4560,
326,
253,
1953,
369,
19124,
281,
18000,
253,
1083,
387,
1133,
964,
380,
7671,
33241,
2111,
323,
1650,
12969,
275,
8210,
326,
253,
1953,
1880,
390,
417,
11615,
1497,
369,
247,
9596,
369,
19124,
1157,
285,
326,
697,
4320,
3708,
943,
320,
24242,
407,
697,
2136,
4712,
964,
380,
5685,
2208,
1057,
417,
1908,
253,
6412,
273,
11615,
1497,
281,
320,
247,
7231,
390,
1533,
1374,
3114,
285,
17086,
326,
11615,
1497,
310,
247,
11528,
1214,
14,
33,
2403,
16100,
1157,
2581,
685,
247,
9596,
964,
19863,
1107,
452,
2326,
247,
1180,
273,
1302,
7089,
275,
11615,
1497,
686,
84,
9796,
1157,
5747,
253,
1077,
14414,
4016,
12046,
281,
11615,
1497,
2190,
13557,
285,
253,
2087,
1345,
964,
4928,
187,
426,
426,
7295,
13234,
426,
426,
4928,
187,
10300,
253,
2892,
273,
13025,
1204,
686,
84,
6054,
281
] |
= Randy Blythe manslaughter case =
The Randy Blythe manslaughter case was a court case in the Czech Republic, stemming from a 2010 Lamb of God concert in Prague, wherein 19 @-@ year @-@ old fan Daniel Nosek sustained head injuries leading to a coma and subsequent death. During the investigation, Czech police unsuccessfully asked United States authorities for cooperation. When the band returned to the Czech Republic for another concert two years later, its vocalist Randy Blythe was arrested, charged with causing Nosek's death, and remanded in custody for five weeks.
According to a verdict delivered by the Municipal Court in Prague on March 5, 2013, it was proven that Blythe had thrown Nosek offstage and thus had moral responsibility for his death. However, due to the circumstances, Blythe was not held criminally liable, and most of the blame lay with promoters and security members. The acquittal was upheld by the Prague High Court on June 5, 2013.
= = 2010 concert incident = =
During a concert on May 24, 2010, in the Prague club, Abaton, Blythe was involved in an incident that resulted in the death of Daniel Nosek, a 19 @-@ year @-@ old attending fan. According to eyewitness statements cited by the Czech online daily newspaper aktuálně.cz following Blythe's arrest, Blythe was chanting " Come on up " between songs, which, the newspaper stated, may have been intended to invite applause from the audience and not a direct invitation to fans. The newspaper went on to report that the fan tried to climb onstage and was thrown by the singer from the stage, falling backwards directly on his head. According to the same paper, Nosek was not under the influence of drugs or alcohol, suffered serious brain trauma, fell into a coma, and died weeks later from his injuries.
A report about the concert at issue released on May 26, 2010 by topzine.cz stated that " one of the things that was unexpected was the behavior of the singer Randall Blythe, who on a few occasions struck some fans in a relatively brutal way off the stage. " The article also contains pictures, one of them showing Blythe holding a fan down on the ground. Meanwhile, another report released two days after the concert by metalopolis.net alleged that " Randy in a totally uncompromising way took down an impertinent fan, who has climbed the podium several times. The front @-@ man clearly showed that it is his territory, he struck the intruder down, punched him a couple of times and sent him through the air off the podium, without even stopping singing (! ) " On May 28, 2010, the report by marastmusic.com stated that " some broken head was a testimony to the fact that the band does not like anybody on the stage ", while abysszine.com stated that " the only negative thing about the concert was, to say it mildly, disputable approach of the band towards the stage @-@ divers... when somebody tried to climb the stage, he was brutally swept down. "
Following Blythe's arrest, Tomáš Fiala, a promoter of the concert, said that there was no fight between the fan and Blythe, and that " it was an unfortunate incident which happened during the concert when someone climbed onto the stage where he was not supposed to be. " According to the Lamb of God publicist Adrenaline PR, " [ the ] incident deals with a fan that three times during the concert jumped the barricade and rushed Randy during the performance. It is alleged that the third time, security was not able to reach him and that Randy pushed him back into the audience where supposedly he fell and hit his head. " However, it was revealed during the trial that it was a different fan who previously got into contact with Blythe than Nosek. Guitarist Willie Adler said, " I can 't recall that particular show, let alone a fan being beaten on the stage. I think I would've noticed something like that considering the Dime thing. "
According to Blythe's attorney Martin Radvan, the police launched an investigation following the death of Nosek, about a month after the concert and following a coma. After interviewing several eyewitnesses from the concert, the police asked the United States Department of Justice to take part in the investigation ; however, they refused to cooperate and, moreover, did not notify anyone from Lamb of God or its management.
= = Arrest and charges = =
On June 27, 2012, Blythe was arrested by the Czech police on suspicion of manslaughter. Lamb of God was prepared to play in Prague on June 28, 2012, but Blythe's arrest upon arrival at Ruzyně Airport caused the concert to be canceled.
According to TV Nova, Blythe stated that he had not been aware of Nosek's death and expressed his remorse.
A police spokesperson stated on June 29, 2012 that the police had formally charged Blythe under section 146 ( 4 ) of the Czech Criminal Code, which contains intentional infliction of bodily harm resulting in death ( i.e. manslaughter ). He faced 5 – 10 years of imprisonment if found guilty. Randy's brother Mark Blythe said the charge was " bogus and outrageous and will be dropped immediately. "
= = Court remand and bail = =
On June 30, 2012, the State Attorney brought a motion to remand Blythe in pre @-@ trial detention, as he considered Blythe a flight risk. During a hearing conducted the same day, judge Petr Fassati of the Prague 8 District Court ruled that Blythe will be held on remand, with the possibility of a bail of CZK 4 @,@ 000 @,@ 000 ( ~ US $ 200 @,@ 000 ), Blythe's alleged annual income ; Blythe was held in Pankrác Prison. Bail was deposited in the court's bank account on mid @-@ day of July 3, 2012. After this, the State Attorney had three working days to either accept the bail or to challenge it by filing a complaint. Due to public holidays it was not until July 9, 2012, that the State Attorney filed his complaint, which was to be dealt with by appellate court, the Prague Municipal Court.
On July 17, 2012, Prague Municipal Court's panel of three judges headed by judge Luboš Vrba overturned the bail decision by doubling the bail amount to CZK 8 million ( ~ US $ 400 @,@ 000 ). After this, the State Attorney challenged the conditions of release, trying to achieve that the bail is subject to Blythe staying in the country and / or Blythe having to report at a given police station regularly until the criminal proceedings are finished. On August 2, 2012, the appellate court rejected the State Attorney's second complaint and ordered Blythe's immediate release. Blythe left the Czech Republic the next day, claiming in an interview with TV Nova that he would return for the trial.
= = Indictment and trial = =
On November 13, 2012, the spokesperson of the Prague State Attorney's Office announced that the police had formally closed their investigation and proposed to the State Attorney to indict Blythe. After reviewing the case file, the State Attorney indicted Blythe on the aforementioned charges on November 30, 2012. Two weeks later, a judge set the trial to commence on February 4, 2013, with a plan to conduct the hearings in four consecutive days. Blythe was summoned to attend the hearing in person.
The case was heard by a panel of the Prague Municipal Court, consisting of presiding professional judge Tomáš Kubovec and two lay judges. Trials in the Czech Republic are public. In general, the court is bound to decide on the deed as stated in the indictment ; however, it is not bound by its legal assessment by the State Attorney.
Both the defendant and the State Attorney may appeal the decision ; the appeal would be heard by a panel of the Prague High Court, consisting of three professional judges. A decision of second instance court is final and enforceable. Nevertheless, an extraordinary appeal may be lodged by the defendant or the Supreme State Attorney, which would be heard by the Supreme Court of the Czech Republic in Brno ; an extraordinary appeal may, however, rest only on issues of law and does not provide for full review of the case. After exhausting all of these remedies, the defendant may also lodge a petition to the Constitutional Court of the Czech Republic. The petition may be based on allegation of violation of rights under the Czech Constitution and Charter of Fundamental Rights and Basic Freedoms.
= = = State Attorney Vladimír Mužík = = =
Indictment against Blythe was brought by State Attorney Vladimír Mužík. Mužík had tried a number of murderers, such as Luboš Mika ( life in prison ), Roman Fidler ( life imprisonment at 1st instance, 25 years on appeal ), Maria Zolotukinová ( 13 years imprisonment ) and Petr Procházka ( 11 years imprisonment ). He also tried a case against Andranik Soghojan, an alleged head of Russian mafia, requesting 25 years in prison for ordering a murder. The Municipal Court in Prague acquitted Soghojan due to lack of evidence ; however, the decision was repealed on appeal by the High Court, and the case will be heard again by a different tribunal of the Municipal Court. Another of Mužík's murder cases which ended in acquittal due to insufficient | wikitext_103 | [
426,
36532,
378,
314,
783,
44182,
1083,
426,
4928,
187,
380,
36532,
378,
314,
783,
44182,
1083,
369,
247,
1302,
1083,
275,
253,
21647,
4687,
1157,
45030,
432,
247,
4267,
25852,
273,
2656,
12699,
275,
41577,
1157,
10646,
655,
1214,
14,
33,
807,
1214,
14,
33,
1711,
7989,
10213,
427,
583,
76,
12321,
1481,
9478,
4283,
281,
247,
45753,
285,
6774,
2471,
964,
6408,
253,
5839,
1157,
21647,
3513,
22727,
2920,
2546,
1986,
2077,
9061,
323,
15850,
964,
2091,
253,
3961,
4895,
281,
253,
21647,
4687,
323,
1529,
12699,
767,
1107,
1996,
1157,
697,
17898,
382,
36532,
378,
314,
783,
369,
9833,
1157,
6636,
342,
8479,
427,
583,
76,
686,
84,
2471,
1157,
285,
27013,
275,
13555,
323,
2620,
3618,
964,
2490,
4794,
281,
247,
11844,
8549,
407,
253,
35266,
2111,
275,
41577,
327,
3919,
608,
1157,
4072,
1157,
352,
369,
11464,
326,
378,
314,
783,
574,
13044,
427,
583,
76,
745,
13311,
285,
3021,
574,
9447,
8294,
323,
521,
2471,
964,
1723,
1157,
1955,
281,
253,
5989,
1157,
378,
314,
783,
369,
417,
2918,
5435,
3341,
15922,
1157,
285,
954,
273,
253,
13387,
2242,
342,
28960,
285,
3988,
2758,
964,
380,
49207,
369,
30620,
407,
253,
41577,
4855,
2111,
327,
3978,
608,
1157,
4072,
964,
4928,
187,
426,
426,
4267,
12699,
7119,
426,
426,
4928,
187,
6408,
247,
12699,
327,
2552,
2164,
1157,
4267,
1157,
275,
253,
41577,
5453,
1157,
3506,
13078,
1157,
378,
314,
783,
369,
3206,
275,
271,
7119,
326,
7369,
275,
253,
2471,
273,
10213,
427,
583,
76,
1157,
247,
655,
1214,
14,
33,
807,
1214,
14,
33,
1711,
16362,
7989,
964,
4794,
281,
46366,
4208,
7234,
11106,
407,
253,
21647,
3909,
5312,
11547,
46966,
86,
1757,
6677,
11738,
15,
14617,
1563,
378,
314,
783,
686,
84,
5263,
1157,
378,
314,
783,
369,
448,
25841,
346,
13516,
327,
598,
346,
875,
9575,
1157,
534,
1157,
253,
11547,
4767,
1157,
778,
452,
644,
6034,
281,
19864,
41958,
432,
253,
8446,
285,
417,
247,
1480,
21558,
281,
7458,
964,
380,
11547,
2427,
327,
281,
1304,
326,
253,
7989,
3597,
281,
12394,
327,
13311,
285,
369,
13044,
407,
253,
16057,
432,
253,
3924,
1157,
10805,
24291,
3587,
327,
521,
1481,
964,
4794,
281,
253,
1072,
2929,
1157,
427,
583,
76,
369,
417,
762,
253,
4833,
273,
5835,
390,
7665,
1157,
9606,
4092,
3998,
14977,
1157,
6497,
715,
247,
45753,
1157,
285,
4962,
3618,
1996,
432,
521,
9478,
964,
2490,
329,
1304,
670,
253,
12699,
387,
2523,
4439,
327,
2552,
3436,
1157,
4267,
407,
1755,
91,
460,
15,
14617,
4767,
326,
346,
581,
273,
253,
1841,
326,
369,
12439,
369,
253,
3879,
273,
253,
16057,
43522,
378,
314,
783,
1157,
665,
327,
247,
1643,
15530,
10903,
690,
7458,
275,
247,
4942,
23180,
1039,
745,
253,
3924,
964,
346,
380,
3929,
671,
4428,
7968,
1157,
581,
273,
731,
4645,
378,
314,
783,
5877,
247,
7989,
1066,
327,
253,
3216,
964,
16257,
1157,
1529,
1304,
4439,
767,
1897,
846,
253,
12699,
407,
5148,
412,
13000,
15,
3024,
5575,
326,
346,
36532,
275,
247,
9106,
44690,
409,
2182,
1039,
2335,
1066,
271,
516,
8292,
14622,
7989,
1157,
665,
556,
21863,
253,
46309,
2067,
2069,
964,
380,
2914,
1214,
14,
33,
637,
4518,
2692,
326,
352,
310,
521,
12785,
1157,
344,
10903,
253,
4996,
32656,
1066,
1157,
39214,
779,
247,
4564,
273,
2069,
285,
2197,
779,
949,
253,
2329,
745,
253,
46309,
1157,
1293,
1014,
15910,
16115,
313,
2195,
2387,
346,
1623,
2552,
3349,
1157,
4267,
1157,
253,
1304,
407,
2304,
505,
30911,
15,
681,
4767,
326,
346,
690,
7154,
1481,
369,
247,
6206,
281,
253,
958,
326,
253,
3961,
1057,
417,
751,
13098,
327,
253,
3924,
346,
1157,
1223,
490,
656,
20932,
460,
15,
681,
4767,
326,
346,
253,
760,
4016,
2181,
670,
253,
12699,
369,
1157,
281,
1333,
352,
38920,
1157,
8278,
494,
2746,
273,
253,
3961,
4404,
253,
3924,
1214,
14,
33,
7940,
3346,
672,
11853,
3597,
281,
12394,
253,
3924,
1157,
344,
369,
16325,
595,
22007,
1066,
964,
346,
2490,
11977,
378,
314,
783,
686,
84,
5263,
1157,
6270,
1757,
7326,
401,
451,
66,
1157,
247,
12634,
273,
253,
12699,
1157,
753,
326,
627,
369,
642,
3819,
875,
253,
7989,
285,
378,
314,
783,
1157,
285,
326,
346,
352,
369,
271,
23293,
7119,
534,
4592,
1309,
253,
12699,
672,
3095,
21863,
4830,
253,
3924,
835,
344,
369,
417,
6326,
281,
320,
964,
346,
4794,
281,
253,
25852,
273,
2656,
1345,
382,
2006,
445,
16373,
4653,
1157,
346,
544,
253,
5032,
7119,
13330,
342,
247,
7989,
326,
1264,
2069,
1309,
253,
12699,
16780,
253,
2534,
695,
796,
285,
20906,
36532,
1309,
253,
3045,
964,
733,
310,
5575,
326,
253,
2626,
673,
1157,
3988,
369,
417,
2104,
281,
3986,
779,
285,
326,
36532,
10184,
779,
896,
715,
253,
8446,
835,
24628,
344,
6497,
285,
4352,
521,
1481,
964,
346,
1723,
1157,
352,
369,
4950,
1309,
253,
2332,
326,
352,
369,
247,
1027,
7989,
665,
3786,
1694,
715,
3057,
342,
378,
314,
783,
685,
427,
583,
76,
964,
443,
36567,
382,
38916,
2006,
2146,
753,
1157,
346,
309,
476,
686,
85,
6983,
326,
1798,
921,
1157,
1339,
3815,
247,
7989,
1146,
20698,
327,
253,
3924,
964,
309,
1158,
309,
651,
686,
306,
8344,
1633,
751,
326,
7296,
253,
399,
553,
2181,
964,
346,
2490,
4794,
281,
378,
314,
783,
686,
84,
6834,
8698,
7754,
6148,
1157,
253,
3513,
10098,
271,
5839,
1563,
253,
2471,
273,
427,
583,
76,
1157,
670,
247,
1770,
846,
253,
12699,
285,
1563,
247,
45753,
964,
2732,
44235,
2067,
46366,
4208,
265,
432,
253,
12699,
1157,
253,
3513,
2546,
253,
1986,
2077,
4487,
273,
8293,
281,
1379,
629,
275,
253,
5839,
3706,
2299,
1157,
597,
9284,
281,
29406,
285,
1157,
25761,
1157,
858,
417,
24651,
3780,
432,
25852,
273,
2656,
390,
697,
4323,
964,
4928,
187,
426,
426,
1780,
1120,
285,
7260,
426,
426,
4928,
187,
1623,
3978,
3435,
1157,
4050,
1157,
378,
314,
783,
369,
9833,
407,
253,
21647,
3513,
327,
18910,
273,
44182,
964,
25852,
273,
2656,
369,
5480,
281,
1132,
275,
41577,
327,
3978,
3349,
1157,
4050,
1157,
533,
378,
314,
783,
686,
84,
5263,
2220,
13024,
387,
416,
7958,
1362,
11738,
18328,
4269,
253,
12699,
281,
320,
32093,
964,
2490,
4794,
281,
5579,
30947,
1157,
378,
314,
783,
4767,
326,
344,
574,
417,
644,
6600,
273,
427,
583,
76,
686,
84,
2471,
285,
4469,
521,
47753,
964,
2490,
329,
3513,
28179,
4767,
327,
3978,
3285,
1157,
4050,
326,
253,
3513,
574,
19186,
6636,
378,
314,
783,
762,
2593,
21640,
313,
577,
2387,
273,
253,
21647,
20526,
6307,
1157,
534,
4428,
22991,
25504,
279,
273,
23989,
5237,
4795,
275,
2471,
313,
891,
15,
70,
15,
44182,
2387,
964,
754,
11372,
608,
1108,
884,
1107,
273,
19841,
604,
1119,
8106,
964,
36532,
686,
84,
4929,
4744,
378,
314,
783,
753,
253,
4179,
369,
346,
30743,
316,
285,
38355,
285,
588,
320,
8231,
4745,
964,
346,
4928,
187,
426,
426,
2111,
18097,
285,
19590,
426,
426,
4928,
187,
1623,
3978,
1884,
1157,
4050,
1157,
253,
2418,
10158,
3982,
247,
3200,
281,
18097,
378,
314,
783,
275,
638,
1214,
14,
33,
2332,
22680,
1157,
347,
344,
2783,
378,
314,
783,
247,
8630,
2495,
964,
6408,
247,
4854,
5196,
253,
1072,
1388,
1157,
5963,
8939,
83,
401,
515,
8657,
273,
253,
41577,
854,
4412,
2111,
12969,
326,
378,
314,
783,
588,
320,
2918,
327,
18097,
1157,
342,
253,
6387,
273,
247,
19590,
273,
330,
59,
44,
577,
1214,
13,
33,
20181,
1214,
13,
33,
20181,
313,
5062,
1982,
370,
1052,
1214,
13,
33,
20181,
2387,
1157,
378,
314,
783,
686,
84,
5575,
7970,
6021,
3706,
378,
314,
783,
369,
2918,
275,
367,
1164,
40024,
68,
31083,
964,
378,
647,
369,
17063,
275,
253,
1302,
686,
84,
4310,
2395,
327,
4260,
1214,
14,
33,
1388,
273,
4163,
495,
1157,
4050,
964,
2732,
436,
1157,
253,
2418,
10158,
574,
1264,
2444,
1897,
281,
2057,
2997,
253,
19590,
390,
281,
5691,
352,
407,
12108,
247,
5833,
964,
12571,
281,
1345,
23193,
352,
369,
417,
1919,
4163,
898,
1157,
4050,
1157,
326,
253,
2418,
10158,
4724,
521,
5833,
1157,
534,
369,
281,
320,
18445,
342,
407,
16939,
1302,
1157,
253,
41577,
35266,
2111,
964,
2490,
1623,
4163,
1722,
1157,
4050,
1157,
41577,
35266,
2111,
686,
84,
5370,
273,
1264,
16006,
12860,
407,
5963,
40403,
80,
7326,
657,
83,
5830,
45965,
253,
19590,
3061,
407,
35373,
253,
19590,
2408,
281,
330,
59,
44,
854,
3041,
313,
5062,
1982,
370,
9166,
1214,
13,
33,
20181,
2387,
964,
2732,
436,
1157,
253,
2418,
10158,
14870,
253,
2515,
273,
3727,
1157,
2820,
281,
5115,
326,
253,
19590,
310,
2256,
281,
378,
314,
783,
14596,
275,
253,
2586,
285,
1227,
390,
378,
314,
783,
1907,
281,
1304,
387,
247,
1677,
3513,
4660,
11719,
1919,
253,
6424,
10061,
403,
6699,
964,
1623,
4223,
374,
1157,
4050,
1157,
253,
16939,
1302,
10945,
253,
2418,
10158,
686,
84,
1273,
5833,
285,
6960,
378,
314,
783,
686,
84,
8993,
3727,
964,
378,
314,
783,
1669,
253,
21647,
4687,
253,
1735,
1388,
1157,
15081,
275,
271,
4572,
342,
5579,
30947,
326,
344,
651,
1091,
323,
253,
2332,
964,
4928,
187,
426,
426,
2102,
882,
420,
285,
2332,
426,
426,
4928,
187,
1623,
4596,
2145,
1157,
4050,
1157,
253,
28179,
273,
253,
41577,
2418,
10158,
686,
84,
7454,
6138,
326,
253,
3513,
574,
19186,
4581,
616,
5839,
285,
4081,
281,
253,
2418,
10158,
281,
15825,
378,
314,
783,
964,
2732,
16725,
253,
1083,
1873,
1157,
253,
2418,
10158,
38455,
378,
314,
783,
327,
253,
18979,
7260,
327,
4596,
1884,
1157,
4050,
964,
5761,
3618,
1996,
1157,
247,
5963,
873,
253,
2332,
281,
25301,
327,
5080,
577,
1157,
4072,
1157,
342,
247,
2098,
281,
2589,
253,
26388,
275,
1740,
12640,
1897,
964,
378,
314,
783,
369,
34150,
281,
8041,
253,
4854,
275,
1436,
964,
2490,
380,
1083,
369,
3735,
407,
247,
5370,
273,
253,
41577,
35266,
2111,
1157,
11253,
273,
838,
2821,
5702,
5963,
6270,
1757,
7326,
40407,
710,
68,
285,
767,
2242,
16006,
964,
47992,
275,
253,
21647,
4687,
403,
1345,
964,
496,
2087,
1157,
253,
1302,
310,
3033,
281,
7617,
327,
253,
22793,
347,
4767,
275,
253,
17612,
3706,
2299,
1157,
352,
310,
417,
3033,
407,
697,
4320,
6803,
407,
253,
2418,
10158,
964,
2490,
6295,
253,
3257,
285,
253,
2418,
10158,
778,
4549,
253,
3061,
3706,
253,
4549,
651,
320,
3735,
407,
247,
5370,
273,
253,
41577,
4855,
2111,
1157,
11253,
273,
1264,
5702,
16006,
964,
329,
3061,
273,
1273,
4227,
1302,
310,
2457,
285,
48840,
964,
12257,
1157,
271,
15423,
4549,
778,
320,
45678,
407,
253,
3257,
390,
253,
6413,
2418,
10158,
1157,
534,
651,
320,
3735,
407,
253,
6413,
2111,
273,
253,
21647,
4687,
275,
2652,
2369,
3706,
271,
15423,
4549,
778,
1157,
2299,
1157,
1551,
760,
327,
3374,
273,
1569,
285,
1057,
417,
2085,
323,
2120,
2278,
273,
253,
1083,
964,
2732,
9286,
272,
512,
273,
841,
24371,
1157,
253,
3257,
778,
671,
40486,
247,
5266,
281,
253,
39722,
2111,
273,
253,
21647,
4687,
964,
380,
5266,
778,
320,
1754,
327,
26840,
273,
8411,
273,
3570,
762,
253,
21647,
10350,
285,
36729,
273,
10980,
27569,
12484,
285,
20233,
8377,
264,
3056,
964,
4928,
187,
426,
426,
426,
2418,
10158,
26113,
303,
1950,
83,
14554,
9124,
1950,
76,
426,
426,
426,
4928,
187,
2102,
882,
420,
1411,
378,
314,
783,
369,
3982,
407,
2418,
10158,
26113,
303,
1950,
83,
14554,
9124,
1950,
76,
964,
14554,
9124,
1950,
76,
574,
3597,
247,
1180,
273,
4682,
615,
22895,
1157,
824,
347,
40403,
80,
7326,
353,
11825,
313,
1495,
275,
5754,
2387,
1157,
8370,
401,
301,
2146,
313,
1495,
19841,
387,
337,
296,
4227,
1157,
2030,
1107,
327,
4549,
2387,
1157,
17100,
1503,
311,
302,
24421,
729,
1757,
313,
2145,
1107,
19841,
2387,
285,
8939,
83,
1294,
348,
36526,
4530,
313,
1903,
1107,
19841,
2387,
964,
754,
671,
3597,
247,
1083,
1411,
1244,
4011,
1479,
322,
462,
1689,
17551,
1157,
271,
5575,
1481,
273,
7247,
278,
41067,
1157,
24433,
2030,
1107,
275,
5754,
323,
15824,
247,
7701,
964,
380,
35266,
2111,
275,
41577,
4171,
2166,
322,
462,
1689,
17551,
1955,
281,
3480,
273,
1941,
3706,
2299,
1157,
253,
3061,
369,
3842,
3256,
327,
4549,
407,
253,
4855,
2111,
1157,
285,
253,
1083,
588,
320,
3735,
969,
407,
247,
1027,
41223,
273,
253,
35266,
2111,
964,
8035,
273,
14554,
9124,
1950,
76,
686,
84,
7701,
2219,
534,
7402,
275,
49207,
1955,
281,
12497
] |
I have never felt so disappointed and helpless. " Twelve U.S. Marines were killed ; Japanese casualties are unknown but perhaps somewhat greater. Although both Oka in the west and the Kuma unit in the east tried to attack the Marine lines that night, they failed to make contact and halted near the Marine lines at dawn.
At first light on 13 September, Cactus Air Force aircraft and Marine artillery fired into the area just south of the ridge, forcing any Japanese out in the open to seek cover in the nearby jungle. The Japanese suffered several casualties, including two officers from Watanabe's battalion. At 05 : 50, Kawaguchi decided to regroup his forces for another attack that night.
= = = Second night's action on the ridge = = =
Expecting the Japanese to attack again that night, Edson directed his troops to improve their defenses on and around the ridge. After a failed attempt by two companies to retake the ground on the Marine right flank lost to Kokusho the night before, Edson repositioned his forces. He pulled his front back about 400 yd ( 370 m ) to a line that stretched 1 @,@ 800 yd ( 1 @,@ 600 m ), starting at the Lunga River and crossing the ridge about 150 yd ( 140 m ) south of Hill 123. Around and behind Hill 123 he placed five companies. Any Japanese attackers surmounting Hill 80 would have to advance over 400 yd ( 370 m ) of open terrain to close with the Marine positions at Hill 123. With only a few hours to prepare, the Marines were only able to construct rudimentary and shallow fortifications. They were low on ammunition, with one or two grenades for each Marine. Vandegrift ordered a reserve force consisting of the 2nd Battalion, 5th Marine Regiment ( 2 / 5 ) to move into a position just to the rear of Edson's troops. In addition, a battery of four 105mm howitzers from the 11th Marine Regiment moved to a location from where it could provide direct fire onto the ridge, and a forward artillery observer was placed with Edson's front line units.
Late in the afternoon, Edson stepped onto a grenade box and addressed his exhausted troops, saying,
You men have done a great job, and I have just one more thing to ask of you. Hold out just one more night. I know we've been without sleep a long time. But we expect another attack from them tonight and they may come through here. I have every reason to believe that we will have reliefs here for all of us in the morning.
Edson's speech " raised the spirits " of the Raiders and helped them prepare mentally for the night ahead.
As the sun set on 13 September, Kawaguchi faced Edson's 830 Marines with 3 @,@ 000 troops of his brigade, plus an assortment of light artillery. The night was pitch black, with no moon. At 21 : 00, seven Japanese destroyers briefly bombarded the ridge. Kawaguchi's attack began just after nightfall, with Kokusho's battalion assaulting Raider Company B on the Marine right flank, just to the west of the ridge. The force of the assault caused Company B to fall back to Hill 123. Under Marine artillery fire, Kokusho reassembled his men and continued his attack. Without pausing to try to " roll @-@ up " the other nearby Marine units, whose flanks were now unprotected, Kokusho's unit surged forward through the swampy lowlands between the ridge and the Lunga River, heading for the airfield. Kokusho's men came upon a pile of Marine supplies and rations. Not having eaten adequately for a couple of days, they paused to " gorge themselves " on the " C " and " K " rations. Kokusho ordered his men to continue the attack. At about 03 : 00, he led them against the Marine units around the northern portion of the ridge, just short of the airfield, as well as Hill 123. In the heavy fighting that followed, Kokusho and around 100 of his men were killed, ending that attack.
Meanwhile, Kawaguchi's 2nd Battalion, under Major Masao Tamura, assembled for their planned assault against Hill 80 from the jungle south of the ridge. Marine observers spotted Tamura's preparations and called in artillery fire. At about 22 : 00, a barrage from twelve 105 mm ( 4 @.@ 1 in ) guns hit Tamura's position. In response, two companies of Tamura's troops — numbering about 320 men — charged up Hill 80 with fixed bayonets behind their own barrage of mortar fire and grenades. Tamura's attack hit Company B of the Marine Parachute battalion and also Raider Company B, pushing the Parachutists off the east side of the ridge into a draw below the ridgeline. To protect the exposed Raider Company B, Edson immediately ordered them to pull back onto Hill 123.
At the same time, a Japanese company from Watanabe's battalion infiltrated through a gap between the east side of the ridge and Parachute Company C. Deciding that their positions were now untenable, Parachute Companies B and C climbed onto the ridge and retreated to a position behind Hill 123. In the darkness and confusion of the battle, the retreat quickly became confused and disorganized. A few Marines began yelling that the Japanese were attacking with poison gas, scaring other Marines who no longer possessed their gas masks. After arriving behind Hill 123, some of the Marines continued on towards the airfield, repeating the word " withdraw " to anyone within earshot. Other Marines began to follow them. Just at the moment that it appeared that the Marines on the hill were about to break and head for the rear in a rout, Edson, Major Kenneth D. Bailey from Edson's staff, and other Marine officers appeared and, with " vivid " language, herded the Marines back into defensive positions around Hill 123.
As the Marines formed into a horseshoe @-@ shaped line around Hill 123, Tamura's battalion began a series of frontal assaults on the hill, charging up the saddle from Hill 80 and up from below the east side of the ridge. Under the light of parachute flares dropped by at least one Japanese floatplane, the Marines repulsed the first two attacks by Tamura's men. Tamura's troops hoisted a 75 mm ( 2 @.@ 95 in ) " regimental " gun to the top of Hill 80 in an effort to fire it directly at the Marines. This gun, which " could have turned the tide in favor of the Japanese, " however, was disabled by a faulty firing pin. At midnight, during a short lull in the fighting, Edson ordered Parachute Companies B and C to advance from behind Hill 123 to strengthen his left flank. With fixed bayonets, the Paramarines swept forward, killing Japanese soldiers who had overrun the Marine lines and were apparently preparing to roll up the Marine lines from the flank, and took position on the east side of the hill. Marines from other units, as well as members of Edson's command staff, including Major Bailey, took ammunition and grenades under fire to the Marines around Hill 123, who were running critically low. Said Marine participant Captain William J. McKennan, " The Japanese attack was almost constant, like a rain that subsides for a moment and then pours the harder... When one wave was mowed down - and I mean mowed down - another followed it into death. "
The Japanese hit Edson's left flank just after the Parachutists took position but were again stopped by Marine rifle, machine @-@ gun, mortar, and grenade fire. Marine 105 mm and 75 mm artillery was also taking a heavy toll on the attacking Japanese. A captured Japanese soldier later said that his unit was " annihilated " by the Marine artillery fire, which only 10 % of his company survived.
By 04 : 00, after withstanding several more assaults, some of which resulted in hand @-@ to @-@ hand fighting, and severe sniper fire from all sides, Edson's men were joined by troops from the 2nd Battalion, 5th Marine Regiment, who helped repulse two more Japanese attacks before dawn. Throughout the night, as Kawaguchi's men came close to overrunning the Marine defenses, Edson remained standing about 20 yd ( 18 m ) behind the Marine firing line on Hill 123, exhorting his troops and directing their defensive efforts. Said Marine Captain Tex Smith, who was in position to observe Edson for most of the night, " I can say that if there is such a thing as one man holding a battalion together, Edson did it that night. He stood just behind the front lines – stood, when most of us hugged the ground. "
During the heavy fighting, portions of three Japanese companies, including two from Tamura's and one from Watanabe's battalions, skirted the Marine defenses on the ridge, while suffering heavy losses from Marine gunfire, and reached the edge of " Fighter One ", a secondary runway of Henderson Field. A counterattack by the Marine engineers stopped one Japanese company's advances and forced it to retreat. The other two companies waited at the edge of the jungle for reinforcements to arrive before attacking into the open area around the airfield. When no reinforcements joined them, both companies went back to their original positions south of the ridge after daybreak. Most of the rest of Watanabe's battalion did not participate in the battle because they lost contact | wikitext_103 | [
309,
452,
1620,
3543,
594,
19271,
285,
26952,
964,
346,
38809,
530,
15,
52,
15,
34913,
497,
5339,
3706,
6692,
32853,
403,
7202,
533,
4931,
8489,
3687,
964,
4129,
1097,
473,
4530,
275,
253,
8935,
285,
253,
611,
9307,
3943,
275,
253,
9268,
3597,
281,
2983,
253,
18671,
3104,
326,
2360,
1157,
597,
4242,
281,
1056,
3057,
285,
37350,
2822,
253,
18671,
3104,
387,
20632,
964,
2490,
2058,
806,
1708,
327,
2145,
4397,
1157,
330,
514,
316,
6037,
10627,
9954,
285,
18671,
29923,
11226,
715,
253,
2170,
816,
6420,
273,
253,
27563,
1157,
17190,
667,
6692,
562,
275,
253,
1527,
281,
7703,
3835,
275,
253,
10151,
31500,
964,
380,
6692,
9606,
2067,
32853,
1157,
1690,
767,
6251,
432,
11327,
266,
12424,
686,
84,
40716,
964,
2058,
16987,
1163,
2456,
1157,
36288,
356,
26550,
4425,
281,
294,
4399,
521,
5621,
323,
1529,
2983,
326,
2360,
964,
4928,
187,
426,
426,
426,
6347,
2360,
686,
84,
2250,
327,
253,
27563,
426,
426,
426,
4928,
187,
34697,
272,
253,
6692,
281,
2983,
969,
326,
2360,
1157,
444,
1397,
251,
6828,
521,
10824,
281,
3157,
616,
25774,
327,
285,
1475,
253,
27563,
964,
2732,
247,
4242,
3177,
407,
767,
4413,
281,
851,
640,
253,
3216,
327,
253,
18671,
987,
21499,
3663,
281,
47653,
316,
1689,
253,
2360,
1078,
1157,
444,
1397,
251,
294,
3321,
264,
521,
5621,
964,
754,
7320,
521,
2914,
896,
670,
9166,
340,
69,
313,
32002,
278,
2387,
281,
247,
1386,
326,
20061,
337,
1214,
13,
33,
14212,
340,
69,
313,
337,
1214,
13,
33,
12891,
278,
2387,
1157,
4983,
387,
253,
37792,
66,
7121,
285,
14270,
253,
27563,
670,
7783,
340,
69,
313,
11858,
278,
2387,
6420,
273,
7061,
15567,
964,
26134,
285,
3212,
7061,
15567,
344,
4845,
2620,
4413,
964,
6101,
6692,
40567,
919,
16285,
272,
7061,
5096,
651,
452,
281,
7170,
689,
9166,
340,
69,
313,
32002,
278,
2387,
273,
1527,
25061,
281,
2810,
342,
253,
18671,
6887,
387,
7061,
15567,
964,
2726,
760,
247,
1643,
3038,
281,
10347,
1157,
253,
34913,
497,
760,
2104,
281,
3989,
30514,
2092,
552,
285,
20126,
7574,
6787,
964,
1583,
497,
1698,
327,
28630,
1157,
342,
581,
390,
767,
35596,
3355,
323,
1016,
18671,
964,
657,
10273,
737,
2094,
6960,
247,
15917,
3490,
11253,
273,
253,
374,
2109,
35843,
1157,
608,
394,
18671,
30068,
313,
374,
1227,
608,
2387,
281,
2118,
715,
247,
1899,
816,
281,
253,
10581,
273,
444,
1397,
251,
686,
84,
10824,
964,
496,
1635,
1157,
247,
9378,
273,
1740,
12446,
2188,
849,
5432,
398,
432,
253,
1903,
394,
18671,
30068,
4395,
281,
247,
4328,
432,
835,
352,
812,
2085,
1480,
3289,
4830,
253,
27563,
1157,
285,
247,
3579,
29923,
19969,
369,
4845,
342,
444,
1397,
251,
686,
84,
2914,
1386,
5085,
964,
2490,
26502,
275,
253,
9055,
1157,
444,
1397,
251,
12293,
4830,
247,
35596,
796,
3817,
285,
9713,
521,
20802,
10824,
1157,
3981,
1157,
2490,
1422,
1821,
452,
2218,
247,
1270,
2628,
1157,
285,
309,
452,
816,
581,
625,
2181,
281,
1642,
273,
368,
964,
21476,
562,
816,
581,
625,
2360,
964,
309,
871,
359,
686,
306,
644,
1293,
4600,
247,
1048,
673,
964,
1292,
359,
1902,
1529,
2983,
432,
731,
11608,
285,
597,
778,
1705,
949,
1060,
964,
309,
452,
1046,
1921,
281,
2868,
326,
359,
588,
452,
6619,
84,
1060,
323,
512,
273,
441,
275,
253,
4131,
964,
2490,
444,
1397,
251,
686,
84,
6519,
346,
5439,
253,
19851,
346,
273,
253,
41994,
285,
6518,
731,
10347,
23198,
323,
253,
2360,
6386,
964,
2490,
1284,
253,
5101,
873,
327,
2145,
4397,
1157,
36288,
356,
26550,
11372,
444,
1397,
251,
686,
84,
854,
1229,
34913,
342,
495,
1214,
13,
33,
20181,
10824,
273,
521,
43594,
1157,
5043,
271,
50131,
273,
1708,
29923,
964,
380,
2360,
369,
11288,
2806,
1157,
342,
642,
12334,
964,
2058,
3127,
1163,
7449,
1157,
5093,
6692,
6909,
398,
13366,
10110,
13073,
253,
27563,
964,
36288,
356,
26550,
686,
84,
2983,
3407,
816,
846,
2360,
12615,
1157,
342,
47653,
316,
1689,
686,
84,
40716,
9222,
272,
11605,
1334,
6487,
378,
327,
253,
18671,
987,
21499,
1157,
816,
281,
253,
8935,
273,
253,
27563,
964,
380,
3490,
273,
253,
9222,
4269,
6487,
378,
281,
2965,
896,
281,
7061,
15567,
964,
6166,
18671,
29923,
3289,
1157,
47653,
316,
1689,
294,
45241,
521,
1821,
285,
4821,
521,
2983,
964,
12414,
268,
36314,
281,
1611,
281,
346,
4533,
1214,
14,
33,
598,
346,
253,
643,
10151,
18671,
5085,
1157,
3692,
892,
3107,
497,
1024,
440,
18641,
1157,
47653,
316,
1689,
686,
84,
3943,
919,
2400,
3579,
949,
253,
44195,
90,
1698,
6056,
875,
253,
27563,
285,
253,
37792,
66,
7121,
1157,
13590,
323,
253,
2329,
3423,
964,
47653,
316,
1689,
686,
84,
1821,
2210,
2220,
247,
19176,
273,
18671,
13191,
285,
391,
569,
964,
3105,
1907,
22186,
18212,
323,
247,
4564,
273,
1897,
1157,
597,
19925,
281,
346,
20822,
3746,
346,
327,
253,
346,
330,
346,
285,
346,
611,
346,
391,
569,
964,
47653,
316,
1689,
6960,
521,
1821,
281,
4035,
253,
2983,
964,
2058,
670,
17272,
1163,
7449,
1157,
344,
3977,
731,
1411,
253,
18671,
5085,
1475,
253,
11186,
5110,
273,
253,
27563,
1157,
816,
2159,
273,
253,
2329,
3423,
1157,
347,
973,
347,
7061,
15567,
964,
496,
253,
5536,
8615,
326,
3560,
1157,
47653,
316,
1689,
285,
1475,
2233,
273,
521,
1821,
497,
5339,
1157,
12365,
326,
2983,
964,
2490,
16257,
1157,
36288,
356,
26550,
686,
84,
374,
2109,
35843,
1157,
762,
11432,
12962,
8500,
16219,
5650,
1157,
17412,
323,
616,
9355,
9222,
1411,
7061,
5096,
432,
253,
31500,
6420,
273,
253,
27563,
964,
18671,
25226,
20673,
16219,
5650,
686,
84,
20724,
285,
1925,
275,
29923,
3289,
964,
2058,
670,
3307,
1163,
7449,
1157,
247,
2534,
14372,
432,
13265,
12446,
5823,
313,
577,
1214,
15,
33,
337,
275,
2387,
11942,
4352,
16219,
5650,
686,
84,
1899,
964,
496,
2380,
1157,
767,
4413,
273,
16219,
5650,
686,
84,
10824,
1905,
1180,
272,
670,
23349,
1821,
1905,
6636,
598,
7061,
5096,
342,
4229,
17699,
251,
1507,
3212,
616,
1211,
2534,
14372,
273,
39247,
3289,
285,
35596,
3355,
964,
16219,
5650,
686,
84,
2983,
4352,
6487,
378,
273,
253,
18671,
2956,
607,
1137,
40716,
285,
671,
11605,
1334,
6487,
378,
1157,
13383,
253,
2956,
607,
307,
1346,
745,
253,
9268,
1930,
273,
253,
27563,
715,
247,
3812,
2708,
253,
8314,
72,
4115,
964,
1916,
4017,
253,
7329,
11605,
1334,
6487,
378,
1157,
444,
1397,
251,
4745,
6960,
731,
281,
3785,
896,
4830,
7061,
15567,
964,
2490,
2058,
253,
1072,
673,
1157,
247,
6692,
2567,
432,
11327,
266,
12424,
686,
84,
40716,
23608,
456,
949,
247,
8037,
875,
253,
9268,
1930,
273,
253,
27563,
285,
2956,
607,
1137,
6487,
330,
15,
7659,
2821,
326,
616,
6887,
497,
1024,
440,
1866,
494,
1157,
2956,
607,
1137,
32705,
378,
285,
330,
21863,
4830,
253,
27563,
285,
46047,
281,
247,
1899,
3212,
7061,
15567,
964,
496,
253,
13862,
285,
13775,
273,
253,
6680,
1157,
253,
19015,
4541,
3395,
13477,
285,
557,
34092,
964,
329,
1643,
34913,
3407,
34553,
326,
253,
6692,
497,
20362,
342,
14537,
3678,
1157,
660,
1875,
643,
34913,
665,
642,
3356,
18801,
616,
3678,
25965,
964,
2732,
20948,
3212,
7061,
15567,
1157,
690,
273,
253,
34913,
4821,
327,
4404,
253,
2329,
3423,
1157,
24385,
253,
3159,
346,
10687,
346,
281,
3780,
1561,
299,
7894,
302,
964,
5131,
34913,
3407,
281,
956,
731,
964,
3771,
387,
253,
2774,
326,
352,
5420,
326,
253,
34913,
327,
253,
13599,
497,
670,
281,
2740,
285,
1481,
323,
253,
10581,
275,
247,
5557,
1157,
444,
1397,
251,
1157,
11432,
31270,
399,
15,
27738,
432,
444,
1397,
251,
686,
84,
4750,
1157,
285,
643,
18671,
6251,
5420,
285,
1157,
342,
346,
24863,
346,
3448,
1157,
617,
4861,
253,
34913,
896,
715,
14397,
6887,
1475,
7061,
15567,
964,
2490,
1284,
253,
34913,
4447,
715,
247,
12074,
32810,
1214,
14,
33,
16745,
1386,
1475,
7061,
15567,
1157,
16219,
5650,
686,
84,
40716,
3407,
247,
2962,
273,
24459,
44848,
327,
253,
13599,
1157,
16153,
598,
253,
26759,
432,
7061,
5096,
285,
598,
432,
2708,
253,
9268,
1930,
273,
253,
27563,
964,
6166,
253,
1708,
273,
49496,
1137,
49569,
8231,
407,
387,
1878,
581,
6692,
8253,
13568,
1157,
253,
34913,
1234,
7228,
264,
253,
806,
767,
8104,
407,
16219,
5650,
686,
84,
1821,
964,
16219,
5650,
686,
84,
10824,
8511,
6136,
247,
6879,
5823,
313,
374,
1214,
15,
33,
5325,
275,
2387,
346,
810,
11471,
346,
5654,
281,
253,
1755,
273,
7061,
5096,
275,
271,
3434,
281,
3289,
352,
3587,
387,
253,
34913,
964,
831,
5654,
1157,
534,
346,
812,
452,
3531,
253,
26816,
275,
3718,
273,
253,
6692,
1157,
346,
2299,
1157,
369,
13603,
407,
247,
40249,
14954,
9176,
964,
2058,
21811,
1157,
1309,
247,
2159,
298,
962,
275,
253,
8615,
1157,
444,
1397,
251,
6960,
2956,
607,
1137,
32705,
378,
285,
330,
281,
7170,
432,
3212,
7061,
15567,
281,
17084,
521,
1669,
21499,
964,
2726,
4229,
17699,
251,
1507,
1157,
253,
2956,
33830,
1100,
22007,
3579,
1157,
9811,
6692,
9647,
665,
574,
689,
6321,
253,
18671,
3104,
285,
497,
8505,
13828,
281,
4533,
598,
253,
18671,
3104,
432,
253,
21499,
1157,
285,
2335,
1899,
327,
253,
9268,
1930,
273,
253,
13599,
964,
34913,
432,
643,
5085,
1157,
347,
973,
347,
2758,
273,
444,
1397,
251,
686,
84,
3923,
4750,
1157,
1690,
11432,
27738,
1157,
2335,
28630,
285,
35596,
3355,
762,
3289,
281,
253,
34913,
1475,
7061,
15567,
1157,
665,
497,
3515,
21038,
1698,
964,
35194,
18671,
14687,
11918,
7252,
500,
15,
16638,
2477,
266,
1157,
346,
380,
6692,
2983,
369,
2761,
3638,
1157,
751,
247,
9313,
326,
8790,
1487,
323,
247,
2774,
285,
840,
268,
2108,
253,
12150,
3346,
2091,
581,
5149,
369,
278,
12997,
1066,
428,
285,
309,
1599,
278,
12997,
1066,
428,
1529,
3560,
352,
715,
2471,
964,
346,
2490,
380,
6692,
4352,
444,
1397,
251,
686,
84,
1669,
21499,
816,
846,
253,
2956,
607,
307,
1346,
2335,
1899,
533,
497,
969,
6331,
407,
18671,
20260,
1157,
5145,
1214,
14,
33,
5654,
1157,
39247,
1157,
285,
35596,
796,
3289,
964,
18671,
12446,
5823,
285,
6879,
5823,
29923,
369,
671,
3192,
247,
5536,
17935,
327,
253,
20362,
6692,
964,
329,
10848,
6692,
15796,
1996,
753,
326,
521,
3943,
369,
346,
26262,
31718,
346,
407,
253,
18671,
29923,
3289,
1157,
534,
760,
884,
2462,
273,
521,
2567,
16139,
964,
2490,
2896,
16703,
1163,
7449,
1157,
846,
342,
6924,
2067,
625,
44848,
1157,
690,
273,
534,
7369,
275,
1133,
1214,
14,
33,
281,
1214,
14,
33,
1133,
8615,
1157,
285,
5460,
3802,
24277,
3289,
432,
512,
7123,
1157,
444,
1397,
251,
686,
84,
1821,
497,
7416,
407,
10824,
432,
253,
374,
2109,
35843,
1157,
608,
394,
18671,
30068,
1157,
665,
6518,
1234,
15748,
767,
625,
6692,
8104,
1078,
20632,
964,
28786,
253,
2360,
1157,
347,
36288,
356,
26550,
686,
84,
1821,
2210,
2810,
281,
689,
24220,
253,
18671,
25774,
1157,
444,
1397,
251,
6376,
6306,
670,
1384,
340,
69,
313,
1283,
278,
2387,
3212,
253,
18671,
14954,
1386,
327,
7061,
15567,
1157,
26004,
12655,
521,
10824,
285,
25091,
616,
14397,
6031,
964,
35194,
18671,
11918,
5255,
6212,
1157,
665,
369,
275,
1899,
281,
10018,
444,
1397,
251,
323,
954,
273,
253,
2360,
1157,
346,
309,
476,
1333,
326,
604,
627,
310,
824,
247,
2181,
347,
581,
637,
5877,
247,
40716,
2366,
1157,
444,
1397,
251,
858,
352,
326,
2360,
964,
754,
6225,
816,
3212,
253,
2914,
3104,
1108,
6225,
1157,
672,
954,
273,
441,
46486,
253,
3216,
964,
346,
2490,
6408,
253,
5536,
8615,
1157,
11821,
273,
1264,
6692,
4413,
1157,
1690,
767,
432,
16219,
5650,
686,
84,
285,
581,
432,
11327,
266,
12424,
686,
84,
11750,
267,
621,
1157,
27768,
264,
253,
18671,
25774,
327,
253,
27563,
1157,
1223,
9958,
5536,
11655,
432,
18671,
5654,
11342,
1157,
285,
4925,
253,
5024,
273,
346,
45398,
2596,
346,
1157,
247,
6561,
39486,
273,
30756,
7327,
964,
329,
4828,
35946,
407,
253,
18671,
19414,
6331,
581,
6692,
2567,
686,
84,
16424,
285,
6726,
352,
281,
19015,
964,
380,
643,
767,
4413,
13308,
387,
253,
5024,
273,
253,
31500,
323,
28432,
942,
281,
12666,
1078,
20362,
715,
253,
1527,
2170,
1475,
253,
2329,
3423,
964,
2091,
642,
28432,
942,
7416,
731,
1157,
1097,
4413,
2427,
896,
281,
616,
3236,
6887,
6420,
273,
253,
27563,
846,
1388,
7054,
964,
5595,
273,
253,
1551,
273,
11327,
266,
12424,
686,
84,
40716,
858,
417,
10078,
275,
253,
6680,
984,
597,
3663,
3057
] |
. Meridian later honored Chaney by renaming a portion of 49th Avenue after him and holding an annual memorial service.
Starting in the 1960s and following the construction of highways that made commuting easier, residents began to move away from downtown in favor of new housing subdivisions to the north. After strip commercial interests began to move downtown, the city worked to designate several areas as historic districts in the 1970s and 80s to preserve the architectural character of the city. The Meridian Historic Districts and Landmarks Commission was created in 1979, and the Meridian Main Street program was founded in 1985.
Meridian Main Street organized several projects to revitalize downtown, including the construction of a new Amtrak Station in 1997 based on the design of the historic train station used during Meridian's Golden Age ; it had been demolished. Other projects included the renovation of the Rosenbaum Building in 2001 and Weidmann's Restaurant in 2002, as well as support for integrated urban design. Meridian Main Street, along with The Riley Foundation, helped renovate and adapt the historic Grand Opera House in 2006 for use as the " Mississippi State University Riley Center for Education and the Performing Arts. "
After ownership of the Meridian Main Street was transferred to the Alliance for Downtown Meridian in late 2007, the two organizations, along with the Meridian Downtown Association, spearheaded the downtown revitalization effort. The Alliance serves as an umbrella organization, allowing the other two organizations to use the its support staff and housing, and in turn the Alliance serves as a liaison between the organizations. Plans were underway to renovate the Threefoot Building, but newly elected Mayor Cheri Barry killed the plans in early 2010. Today, the Alliance helps to promote further development and restoration downtown ; its goal is to assist businesses such as specialty shops, restaurants, and bars because these help downtown become more active during the day and at night. The Meridian Downtown Association is primarily focused on increasing foot traffic downtown by organizing special events, and the Meridian Main Street program supports existing businesses downtown.
= = = Hotels = = =
Given Meridian's site as a railroad junction, its travelers have attracted the development of many hotels. Even before Meridian reached its " Golden Age, " several large hotels, including the Great Southern and the Grand Avenue hotels, were built before the start of the 20th century. With the growth of the railroads and the construction of the original Union Station in 1906, many hotels were constructed for passengers and workers. The Elmira Hotel was constructed in 1905, and the Terminal Hotel was constructed in 1910. Hotel Meridian was constructed in 1907, and Union Hotel was built in 1908. Union Hotel was listed on the National Register of Historic Places in 1979, and both Hotel Meridian and Grand Avenue Hotel were listed as contributing properties to the Meridian Urban Center Historic District.
As the city grew, the hotels reflected ambitions of the strong economy, as evidenced by the eleven @-@ story skyscraper Lamar Hotel built in 1927. Listed on the National Register of Historic Places in 1979, the Lamar Hotel was adapted for use as a county annex building. In 1988 it was listed as a Mississippi Landmark.
The E.F. Young Hotel was built in 1931. A staple in the African @-@ American business district that developed west of the city's core, the hotel was one of the only places in the city during the years of segregation where a traveling African American could find a room.
As the city suburbs developed in the 1960s and'70s, most hotels moved outside of downtown. Rehabilitation of the Riley Center in 2006 has increased demand and a push for a new downtown hotel. The Threefoot Building has been proposed for redevelopment for this purpose, but restoration efforts stalled with a change in city administrations. The Threefoot Preservation Society was formed in 2013 to raise public awareness and support for the building's renovation, featuring tours of the first floor and anniversary events.
= = = Historic districts = = =
Meridian has nine historic districts that are listed on the National Register of Historic Places. The Meridian Downtown Historic District is a combination of two older districts, the Meridian Urban Center Historic District and the Union Station Historic District. Many architectural styles are present in the districts, most from the late 19th and early 20th centuries, including Queen Anne, Colonial Revival, Italianate, Art Deco, Late Victorian, and Bungalow. The districts are :
1 East End Historic District — roughly bounded by 18th St, 11th Ave, 14th St, 14th Ave, 5th St, and 17th Ave.
2 Highlands Historic District — roughly bounded by 15th St, 34th Ave, 19th St, and 36th Ave.
3 Meridian Downtown Historic District — runs from the former Gulf, Mobile and Ohio Railroad north to 6th St between 18th and 26th Ave, excluding Ragsdale Survey Block 71.
4 Meridian Urban Center Historic District — roughly bounded by 21st and 25th Aves, 6th St, and the railroad.
5 Union Station Historic District — roughly bounded by 18th and 19th Aves, 5th St, and the railroad.
6 Merrehope Historic District — roughly bounded by 33rd Ave, 30th Ave, 14th St, and 8th St.
7 Mid @-@ Town Historic District — roughly bounded by 23rd Ave, 15th St, 28th Ave, and 22nd St.
8 Poplar Springs Road Historic District — roughly bounded by 29th St, 23rd Ave, 22nd St, and 29th Ave.
9 West End Historic District — roughly bounded by 7th St, 28th Ave, Shearer's Branch, and 5th St.
= = Government and infrastructure = =
Meridian has operated under the mayor @-@ council or " strong mayor " form of government since 1985. A mayor is elected every four years by the population at @-@ large. The five members of the city council are elected every four years from each of the city's five wards, considered single @-@ member districts. The mayor, the chief executive officer of the city, is responsible for administering and leading the day @-@ to @-@ day operations of city government. The city council is the legislative arm of the government, setting policy and annually adopting the city's operating budget.
City Hall, which has been listed on the National Register of Historic Places, is located at 601 23rd Avenue. The current mayor is Percy Bland. Members of the city council include Dr. George M. Thomas, representative from Ward 1, Kenneth Dustin Markham, representative from Ward 2, Barbara Henson, representative from Ward 3, Kim Houston, representative from Ward 4, and Randy Hammon, representative from Ward 5. The council clerk is Pam McInnis. In total, the city employs 570 people.
The city established a Department of Homeland Security ( DHS ) shortly after Hurricane Katrina in 2005, becoming the only local DHS in the state. The team oversees an area of nine counties. Upon receiving $ 2 @.@ 5 million in grants from the Mississippi Emergency Management Agency and other organizations, the department began training law enforcement offices from other Southern states in passenger rail rescue as well as offering civilian classes in basic handguns, Boy Scout first aid and hunting, and firearms training. The DHS helps during times of crisis such as Hurricane Ivan in September 2005, when the department helped establish and support shelters for 700 evacuees. The city now serves as the leader of one of the task forces in the Mississippi DHS, a combination of three nine @-@ county teams.
Headed by police chief Lee Shelbourn since 2009, the Meridian Police Department consists of 115 full @-@ time officers as well as part @-@ time and reserve staff available. In 2009, the department's Criminal Investigations Division responded to 4000 cases, 2000 of which were felonies. In 2000, 2094 crimes were reported, up slightly from 2008 crimes the preceding year. Meridian has been described as " the safest city in Mississippi with more than 30 @,@ 000 people. " The East Mississippi Correctional Facility is located in unincorporated Lauderdale County, near Meridian. It is operated by the GEO Group on behalf of the Mississippi Department of Corrections. The chief of the Meridian Fire Department is Anthony Clayton. The fire department responded to more than 1600 calls in 2009, including 123 structural fires and 609 emergency service calls.
The Mississippi Department of Mental Health operates the East Mississippi State Hospital in Meridian.
The United States Postal Service operates the Meridian, North Meridian, and the West Meridian Station post offices.
In state politics, the Mississippi Senate district map divides the city into three sections. The northern tip of the city is in the 31st State Senate District and seats Terry Clark Burton ( R ). A strip of the city from the southwest corner up to the northeast corner comprises part of the 32nd State Senate District and seats Sampson Jackson, II ( D ). The western and southeastern portions of the city lie in the 33rd State Senate District and seats Videt Carmichael ( R ). In the Mississippi House of Representatives districts, the city is divided into four districts. The southern and eastern portions of the city reside in House District 81 and are represented by Steven A. Horne ( R ). The city's core makes up the entirety of House District 82 and is represented by Wilbert L. Jones ( D ). Surrounding House District 82 is House District 83, represented by Greg Snowden ( R ). The western section of the city, along with a small section in the north, lie in House District 84 and are represented by Tad Campbell ( R ).
On the national level, the city is located in Mississippi's 3 | wikitext_103 | [
964,
7612,
31517,
1996,
28173,
775,
27674,
407,
3816,
6472,
247,
5110,
273,
7584,
394,
14216,
846,
779,
285,
5877,
271,
7970,
27672,
2579,
964,
2490,
28396,
275,
253,
11994,
84,
285,
1563,
253,
5140,
273,
40459,
326,
1160,
49681,
6927,
1157,
8811,
3407,
281,
2118,
1977,
432,
17207,
275,
3718,
273,
747,
8039,
18375,
3836,
281,
253,
6146,
964,
2732,
11705,
6264,
6284,
3407,
281,
2118,
17207,
1157,
253,
2846,
4307,
281,
42638,
2067,
3672,
347,
14464,
16475,
275,
253,
10333,
84,
285,
5096,
84,
281,
14003,
253,
27934,
1894,
273,
253,
2846,
964,
380,
7612,
31517,
23041,
4412,
84,
285,
8565,
17144,
5399,
369,
3562,
275,
13842,
1157,
285,
253,
7612,
31517,
11505,
5720,
2086,
369,
11420,
275,
12210,
964,
2490,
7612,
31517,
11505,
5720,
10932,
2067,
6493,
281,
3585,
1562,
907,
17207,
1157,
1690,
253,
5140,
273,
247,
747,
3052,
7604,
76,
14628,
275,
8210,
1754,
327,
253,
2216,
273,
253,
14464,
6194,
4660,
908,
1309,
7612,
31517,
686,
84,
15790,
11362,
3706,
352,
574,
644,
44550,
964,
5131,
6493,
2908,
253,
45081,
273,
253,
23840,
30735,
16790,
275,
6585,
285,
844,
301,
8420,
686,
84,
37119,
275,
6752,
1157,
347,
973,
347,
1329,
323,
8527,
10106,
2216,
964,
7612,
31517,
11505,
5720,
1157,
2112,
342,
380,
32920,
6807,
1157,
6518,
30074,
366,
285,
5223,
253,
14464,
8481,
30383,
3995,
275,
5403,
323,
897,
347,
253,
346,
18531,
2418,
2499,
32920,
5197,
323,
10286,
285,
253,
3545,
14692,
15118,
964,
346,
2490,
2732,
12851,
273,
253,
7612,
31517,
11505,
5720,
369,
9495,
281,
253,
20958,
323,
46827,
7612,
31517,
275,
3563,
5215,
1157,
253,
767,
8889,
1157,
2112,
342,
253,
7612,
31517,
46827,
7115,
1157,
31636,
24818,
253,
17207,
3585,
1562,
1320,
3434,
964,
380,
20958,
11029,
347,
271,
33265,
6003,
1157,
6941,
253,
643,
767,
8889,
281,
897,
253,
697,
1329,
4750,
285,
8039,
1157,
285,
275,
1614,
253,
20958,
11029,
347,
247,
45652,
1988,
875,
253,
8889,
964,
43934,
497,
30361,
281,
30074,
366,
253,
9064,
8938,
16790,
1157,
533,
9841,
10544,
18308,
4661,
363,
22825,
5339,
253,
5827,
275,
2393,
4267,
964,
11056,
1157,
253,
20958,
7729,
281,
8591,
2007,
2440,
285,
20384,
17207,
3706,
697,
4736,
310,
281,
10073,
9341,
824,
347,
28648,
16999,
1157,
15114,
1157,
285,
8965,
984,
841,
1361,
17207,
2489,
625,
3939,
1309,
253,
1388,
285,
387,
2360,
964,
380,
7612,
31517,
46827,
7115,
310,
8558,
7106,
327,
3629,
3174,
7137,
17207,
407,
26169,
2714,
3394,
1157,
285,
253,
7612,
31517,
11505,
5720,
2086,
8525,
5368,
9341,
17207,
964,
4928,
187,
426,
426,
426,
9405,
1241,
426,
426,
426,
4928,
187,
10300,
7612,
31517,
686,
84,
2670,
347,
247,
23859,
16889,
1157,
697,
31754,
452,
17755,
253,
2440,
273,
1142,
21440,
964,
4952,
1078,
7612,
31517,
4925,
697,
346,
15790,
11362,
1157,
346,
2067,
1781,
21440,
1157,
1690,
253,
6495,
10586,
285,
253,
8481,
14216,
21440,
1157,
497,
4270,
1078,
253,
1265,
273,
253,
1384,
394,
5331,
964,
2726,
253,
3116,
273,
253,
8087,
29488,
285,
253,
5140,
273,
253,
3236,
6398,
14628,
275,
38701,
1157,
1142,
21440,
497,
8818,
323,
16479,
285,
5820,
964,
380,
3599,
78,
8432,
14469,
369,
8818,
275,
37400,
1157,
285,
253,
37060,
14469,
369,
8818,
275,
31707,
964,
14469,
7612,
31517,
369,
8818,
275,
39118,
1157,
285,
6398,
14469,
369,
4270,
275,
36754,
964,
6398,
14469,
369,
7117,
327,
253,
3313,
13106,
273,
23041,
26755,
275,
13842,
1157,
285,
1097,
14469,
7612,
31517,
285,
8481,
14216,
14469,
497,
7117,
347,
15979,
3607,
281,
253,
7612,
31517,
24517,
5197,
23041,
4412,
964,
2490,
1284,
253,
2846,
8899,
1157,
253,
21440,
11392,
37321,
273,
253,
2266,
6982,
1157,
347,
27007,
407,
253,
19525,
1214,
14,
33,
2926,
1629,
656,
33205,
468,
16967,
274,
14469,
4270,
275,
31687,
964,
5552,
264,
327,
253,
3313,
13106,
273,
23041,
26755,
275,
13842,
1157,
253,
16967,
274,
14469,
369,
12956,
323,
897,
347,
247,
9635,
29557,
3652,
964,
496,
11513,
352,
369,
7117,
347,
247,
18531,
8565,
4698,
964,
2490,
380,
444,
15,
39,
15,
10231,
14469,
369,
4270,
275,
31039,
964,
329,
37891,
275,
253,
8118,
1214,
14,
33,
2448,
2136,
3286,
326,
3715,
8935,
273,
253,
2846,
686,
84,
5161,
1157,
253,
8614,
369,
581,
273,
253,
760,
5053,
275,
253,
2846,
1309,
253,
1107,
273,
29604,
835,
247,
15153,
8118,
2448,
812,
1089,
247,
2316,
964,
2490,
1284,
253,
2846,
35821,
3715,
275,
253,
11994,
84,
285,
686,
5571,
84,
1157,
954,
21440,
4395,
3345,
273,
17207,
964,
49251,
273,
253,
32920,
5197,
275,
5403,
556,
2559,
4831,
285,
247,
7450,
323,
247,
747,
17207,
8614,
964,
380,
9064,
8938,
16790,
556,
644,
4081,
323,
23020,
7683,
323,
436,
4096,
1157,
533,
20384,
6031,
48283,
342,
247,
1818,
275,
2846,
7255,
569,
964,
380,
9064,
8938,
3327,
21752,
8273,
369,
4447,
275,
4072,
281,
7164,
1345,
11891,
285,
1329,
323,
253,
3652,
686,
84,
45081,
1157,
15773,
24478,
273,
253,
806,
5254,
285,
19054,
3394,
964,
4928,
187,
426,
426,
426,
23041,
16475,
426,
426,
426,
4928,
187,
7612,
31517,
556,
7457,
14464,
16475,
326,
403,
7117,
327,
253,
3313,
13106,
273,
23041,
26755,
964,
380,
7612,
31517,
46827,
23041,
4412,
310,
247,
5019,
273,
767,
5662,
16475,
1157,
253,
7612,
31517,
24517,
5197,
23041,
4412,
285,
253,
6398,
14628,
23041,
4412,
964,
6676,
27934,
14957,
403,
1246,
275,
253,
16475,
1157,
954,
432,
253,
3563,
655,
394,
285,
2393,
1384,
394,
14020,
1157,
1690,
11628,
17467,
1157,
44435,
3555,
2401,
1157,
9890,
366,
1157,
3975,
7659,
80,
1157,
26502,
27794,
1157,
285,
378,
29457,
319,
964,
380,
16475,
403,
1163,
2490,
337,
5791,
8072,
23041,
4412,
1905,
11467,
11542,
407,
1283,
394,
659,
1157,
1903,
394,
18953,
1157,
1638,
394,
659,
1157,
1638,
394,
18953,
1157,
608,
394,
659,
1157,
285,
1722,
394,
18953,
964,
2490,
374,
4855,
6056,
23041,
4412,
1905,
11467,
11542,
407,
1458,
394,
659,
1157,
5910,
394,
18953,
1157,
655,
394,
659,
1157,
285,
5540,
394,
18953,
964,
2490,
495,
7612,
31517,
46827,
23041,
4412,
1905,
6613,
432,
253,
3438,
18351,
1157,
18805,
285,
10128,
31606,
6146,
281,
721,
394,
659,
875,
1283,
394,
285,
3436,
394,
18953,
1157,
22914,
416,
3544,
22604,
17136,
15204,
11102,
964,
2490,
577,
7612,
31517,
24517,
5197,
23041,
4412,
1905,
11467,
11542,
407,
3127,
296,
285,
2030,
394,
329,
1634,
1157,
721,
394,
659,
1157,
285,
253,
23859,
964,
2490,
608,
6398,
14628,
23041,
4412,
1905,
11467,
11542,
407,
1283,
394,
285,
655,
394,
329,
1634,
1157,
608,
394,
659,
1157,
285,
253,
23859,
964,
2490,
721,
7612,
250,
36865,
23041,
4412,
1905,
11467,
11542,
407,
5922,
5784,
18953,
1157,
1884,
394,
18953,
1157,
1638,
394,
659,
1157,
285,
854,
394,
659,
15,
2490,
818,
11864,
1214,
14,
33,
10079,
23041,
4412,
1905,
11467,
11542,
407,
3495,
5784,
18953,
1157,
1458,
394,
659,
1157,
3349,
394,
18953,
1157,
285,
3307,
2109,
659,
15,
2490,
854,
367,
4488,
274,
26250,
8669,
23041,
4412,
1905,
11467,
11542,
407,
3285,
394,
659,
1157,
3495,
5784,
18953,
1157,
3307,
2109,
659,
1157,
285,
3285,
394,
18953,
964,
2490,
898,
4255,
8072,
23041,
4412,
1905,
11467,
11542,
407,
818,
394,
659,
1157,
3349,
394,
18953,
1157,
1500,
12287,
686,
84,
25474,
1157,
285,
608,
394,
659,
15,
4928,
187,
426,
426,
7295,
285,
11319,
426,
426,
4928,
187,
7612,
31517,
556,
11658,
762,
253,
14967,
1214,
14,
33,
12265,
390,
346,
2266,
14967,
346,
830,
273,
2208,
1580,
12210,
964,
329,
14967,
310,
10544,
1046,
1740,
1107,
407,
253,
3072,
387,
1214,
14,
33,
1781,
964,
380,
2620,
2758,
273,
253,
2846,
12265,
403,
10544,
1046,
1740,
1107,
432,
1016,
273,
253,
2846,
686,
84,
2620,
44869,
1157,
2783,
2014,
1214,
14,
33,
3558,
16475,
964,
380,
14967,
1157,
253,
7015,
9165,
5908,
273,
253,
2846,
1157,
310,
5506,
323,
41572,
285,
4283,
253,
1388,
1214,
14,
33,
281,
1214,
14,
33,
1388,
5871,
273,
2846,
2208,
964,
380,
2846,
12265,
310,
253,
14112,
4430,
273,
253,
2208,
1157,
4758,
3646,
285,
21051,
25987,
253,
2846,
686,
84,
6498,
7563,
964,
2490,
3228,
6696,
1157,
534,
556,
644,
7117,
327,
253,
3313,
13106,
273,
23041,
26755,
1157,
310,
4441,
387,
41649,
3495,
5784,
14216,
964,
380,
1655,
14967,
310,
3545,
951,
378,
1373,
964,
20530,
273,
253,
2846,
12265,
2486,
3196,
15,
6086,
353,
15,
7195,
1157,
8612,
432,
18730,
337,
1157,
31270,
35540,
249,
4744,
3964,
1157,
8612,
432,
18730,
374,
1157,
19917,
388,
24480,
1157,
8612,
432,
18730,
495,
1157,
10766,
14296,
1157,
8612,
432,
18730,
577,
1157,
285,
36532,
5516,
2163,
1157,
8612,
432,
18730,
608,
964,
380,
12265,
21334,
310,
28084,
3044,
688,
24836,
964,
496,
2264,
1157,
253,
2846,
27532,
39615,
952,
964,
2490,
380,
2846,
4232,
247,
4487,
273,
38394,
9044,
313,
45728,
2387,
13515,
846,
34473,
13593,
29814,
275,
5826,
1157,
7552,
253,
760,
1980,
45728,
275,
253,
1375,
964,
380,
2285,
18182,
265,
271,
2170,
273,
7457,
21813,
964,
15797,
6883,
370,
374,
1214,
15,
33,
608,
3041,
275,
16311,
432,
253,
18531,
28060,
11354,
13677,
285,
643,
8889,
1157,
253,
7811,
3407,
3733,
1569,
10473,
14145,
432,
643,
10586,
3054,
275,
15828,
8087,
14471,
347,
973,
347,
9159,
21731,
5971,
275,
5044,
1133,
44186,
1157,
12143,
42307,
806,
8596,
285,
16121,
1157,
285,
27050,
3733,
964,
380,
45728,
7729,
1309,
2069,
273,
8891,
824,
347,
34473,
27443,
275,
4397,
5826,
1157,
672,
253,
7811,
6518,
5100,
285,
1329,
42204,
323,
18450,
21019,
489,
265,
964,
380,
2846,
1024,
11029,
347,
253,
6657,
273,
581,
273,
253,
4836,
5621,
275,
253,
18531,
45728,
1157,
247,
5019,
273,
1264,
7457,
1214,
14,
33,
9635,
6671,
964,
2490,
754,
7917,
407,
3513,
7015,
8652,
19787,
7390,
79,
1580,
4748,
1157,
253,
7612,
31517,
9651,
4487,
8414,
273,
11343,
2120,
1214,
14,
33,
673,
6251,
347,
973,
347,
629,
1214,
14,
33,
673,
285,
15917,
4750,
2130,
964,
496,
4748,
1157,
253,
7811,
686,
84,
20526,
32668,
569,
9333,
10974,
281,
35059,
2219,
1157,
5307,
273,
534,
497,
11664,
19844,
964,
496,
5307,
1157,
1384,
3953,
12137,
497,
2361,
1157,
598,
5777,
432,
4695,
12137,
253,
17691,
807,
964,
7612,
31517,
556,
644,
2529,
347,
346,
253,
4389,
383,
2846,
275,
18531,
342,
625,
685,
1884,
1214,
13,
33,
20181,
952,
964,
346,
380,
5791,
18531,
40862,
267,
36503,
310,
4441,
275,
440,
39558,
3905,
438,
15182,
1079,
3928,
1157,
2822,
7612,
31517,
964,
733,
310,
11658,
407,
253,
21430,
48,
5901,
327,
11136,
273,
253,
18531,
4487,
273,
3094,
38526,
964,
380,
7015,
273,
253,
7612,
31517,
8726,
4487,
310,
16358,
40998,
964,
380,
3289,
7811,
10974,
281,
625,
685,
39678,
5841,
275,
4748,
1157,
1690,
15567,
8350,
19333,
285,
45370,
8945,
2579,
5841,
964,
2490,
380,
18531,
4487,
273,
29077,
4775,
17209,
253,
5791,
18531,
2418,
8896,
275,
7612,
31517,
964,
2490,
380,
1986,
2077,
46574,
6631,
17209,
253,
7612,
31517,
1157,
3729,
7612,
31517,
1157,
285,
253,
4255,
7612,
31517,
14628,
1501,
14145,
964,
2490,
496,
1375,
8672,
1157,
253,
18531,
8907,
3286,
3711,
37141,
253,
2846,
715,
1264,
7118,
964,
380,
11186,
9092,
273,
253,
2846,
310,
275,
253,
4562,
296,
2418,
8907,
4412,
285,
13512,
21638,
15319,
33718,
313,
416,
2387,
964,
329,
11705,
273,
253,
2846,
432,
253,
31438,
7145,
598,
281,
253,
29510,
7145,
12093,
629,
273,
253,
4567,
2109,
2418,
8907,
4412,
285,
13512,
5769,
10836,
9857,
1157,
3719,
313,
399,
2387,
964,
380,
10439,
285,
32276,
25489,
11821,
273,
253,
2846,
7027,
275,
253,
5922,
5784,
2418,
8907,
4412,
285,
13512,
657,
301,
292,
22787,
44023,
313,
416,
2387,
964,
496,
253,
18531,
3995,
273,
25574,
16475,
1157,
253,
2846,
310,
4272,
715,
1740,
16475,
964,
380,
11053,
285,
14730,
11821,
273,
253,
2846,
28932,
275,
3995,
4412,
11681,
285,
403,
6607,
407,
19436,
329,
15,
388,
9584,
313,
416,
2387,
964,
380,
2846,
686,
84,
5161,
2789,
598,
253,
25983,
273,
3995,
4412,
11487,
285,
310,
6607,
407,
5874,
6291,
418,
15,
8302,
313,
399,
2387,
964,
6201,
4650,
272,
3995,
4412,
11487,
310,
3995,
4412,
11439,
1157,
6607,
407,
13916,
49106,
313,
416,
2387,
964,
380,
10439,
2593,
273,
253,
2846,
1157,
2112,
342,
247,
1355,
2593,
275,
253,
6146,
1157,
7027,
275,
3995,
4412,
11130,
285,
403,
6607,
407,
308,
324,
20163,
313,
416,
2387,
964,
2490,
1623,
253,
3872,
1268,
1157,
253,
2846,
310,
4441,
275,
18531,
686,
84,
495
] |
= 2011 – 12 Michigan Wolverines men's basketball team =
The 2011 – 12 Michigan Wolverines men's basketball team represented the University of Michigan during the 2011 – 12 NCAA Division I men's basketball season. The team played its home games in Ann Arbor, Michigan at Crisler Center for the 45th consecutive year. It had a seating capacity of 12 @,@ 721. It was also the team's 95th straight season as a member of the Big Ten Conference. Fifth @-@ year head coach John Beilein led the team, alongside All @-@ Big Ten players Trey Burke, Tim Hardaway, Jr. and Zack Novak. Burke was named Big Ten Freshman of the Year and was Michigan's first Associated Press All @-@ American honoree since 1998.
The team's season began with a preseason media day and practices in October 2011. In February 2012, Michigan hosted ESPN's College GameDay for the first time in a game against Ohio State. It was the eighth time a Big Ten team hosted the show, which began in 2005.
The team was in the national rankings all season and ended as the 2011 – 12 Big Ten co @-@ champion with Michigan State and Ohio State. It had three victories over teams ranked in the top 10 at the time of the meeting ( eighth @-@ ranked Memphis, ninth @-@ ranked Michigan State and sixth @-@ ranked Ohio State ). The team was undefeated at home until its last home game of the season. Michigan lost in the semifinals of the 2012 Big Ten Conference Tournament and bowed out in the second round of the 2012 NCAA Tournament to end the season with a 24 @-@ 10 record. The team won the school's first Big Ten Conference Championship since the 1985 – 86 season and had the school's best Big Ten record ( 13 – 5 ) since the 1993 – 94 season.
= = Preseason = =
= = = 2011 – 12 incoming team members = = =
Before the season began, point guard Darius Morris, the Big Ten assists leader in the 2010 @-@ 11 season, left the team after being drafted by the Los Angeles Lakers. The incoming class included Carlton Brundidge and 2011 Ohio Mr. Basketball point guard Trey Burke. Both Brundidge and Burke were among Scout.com's top 100 players of the 2011 class ; Brundidge ranked 98th and Burke ranked 94th. Max Bielfeldt committed to Michigan in April despite his family's ties to the Illinois Fighting Illini. Illinois University's Bielfeldt Athletic Administration Building was endowed by his family. Sai Tummala, who along with Bielfeldt was recruited by Ivy League schools, rounded out the incoming class. Tummala earned an academic scholarship and was considered a walk @-@ on candidate for the basketball team.
Tim Hardaway, Jr., son of former NBA All @-@ Star Tim Hardaway, returned to the team. He was coming off a freshman season in which he was a unanimous Big Ten All @-@ Freshman, All @-@ Big Ten honorable mention, Collegeinsider.com Freshmen All @-@ America and Team USA FIBA U19 honoree. Jordan Dumars, the son of Detroit Pistons All @-@ Star Joe Dumars, left the team, citing nagging knee issues.
= = = 2011 – 12 team recruits = = =
= = Roster = =
Former team captains Travis Conlan ( 1996 – 97 and 1997 – 98 ) and C.J. Lee ( 2008 – 09 ) served as director of basketball operations and administrative specialist, respectively. Peter Kahler was the team's video coordinator.
= = Schedule and results = =
Michigan announced its 14 @-@ game non @-@ conference schedule on August 1, 2011. The team began the season in a renovated Crisler Arena : new seats and a high @-@ definition scoreboard were added, but seating capacity was reduced to 12 @,@ 721 from 13 @,@ 751 in the previous 10 seasons.
Michigan came in third place in the three @-@ game 2011 Maui Invitational Tournament between November 21 – 23. The team defeated the eighth @-@ ranked Memphis Tigers 73 – 61, lost to the sixth @-@ ranked Duke Blue Devils 82 – 75, and defeated the Pac @-@ 12 favorite UCLA Bruins 79 – 63. Tim Hardaway, Jr. was named the Big Ten Player of the Week, and Trey Burke was named Big Ten Freshman of the Week. In an ACC – Big Ten Challenge game in late November, Michigan lost to Virginia 70 – 58. In its next game, Michigan defeated Iowa State 76 – 66. On December 10, 2011, Michigan beat Oakland 90 – 80, its highest @-@ scoring game since beating Northern Michigan 97 @-@ 50 on November 14, 2009. It was also Michigan's first game since 2002 with three 20 @-@ point scorers ( Hardaway, Burke and Evan Smotrycz ). Burke earned his second Freshman of the Week honor on December 12 after scoring a season @-@ high 20 points and nine assists in the game. On the same day, Michigan was the highest @-@ rated Big Ten team in the Ratings Percentage Index, although the team trailed several schools in the national polls. In the final two non @-@ conference games of the season, Smotrycz scored his first two double @-@ doubles against Alabama A & M and Bradley on December 17 and December 22.
Heading into the Big Ten Conference schedule, both of the teams Michigan had lost to were ranked ( Duke was 7th and 5th in the AP and Coaches'polls and Virginia was 23rd and 24th ). On December 29, Michigan won its first Big Ten Conference opener since 2006 – 07, beating Penn State as Smotrycz extended his double @-@ double streak to three games. On January 2, Burke earned his first Big Ten Conference Player of the Week honor and his third Freshman of the Week honor for his 40 points in Michigan's first two conference games. On December 29 against Penn State he posted 13 points, seven assists, five rebounds and no turnovers. On January 1, 2012, he added a career @-@ high 27 points on 8 @-@ for @-@ 11 shooting with three rebounds and three assists against Minnesota to earn Big Ten Conference Player of the Week the following day.
On January 19, Michigan became the leader in the conference with a 5 – 2 record, thanks to conference wins over ranked Wisconsin and Michigan State teams. Michigan remained in first place until losing to Ohio State ten days later. The team went 5 @-@ 2 in conference in February, including wins over ranked Indiana and Ohio State teams. Michigan lost its final home game of the season to Purdue on February 25 to finish with a 15 – 1 home record. On March 1, the team defeated Illinois for their first road win in Illinois since 1995. During the game, Michigan's 30th of the season, Trey Burke broke Gary Grant's school freshman assists record, set over the course of 30 games in the 1984 @-@ 85 season, by pushing his total to 143.
In the first game of the 2012 Big Ten Conference Men's Basketball Tournament against Minnesota, Burke led the team to victory with a career @-@ high 30 points. Burke's total was a school record for the Big Ten Conference Men's Basketball Tournament. In the semifinal contest, however, Michigan was eliminated by Ohio State for the third year in a row. Michigan entered the 2012 NCAA Men's Division I Basketball Tournament seeded fourth, but lost to the thirteenth @-@ seeded Ohio Bobcats 65 – 60. Burke became Michigan's first Associated Press All @-@ American honoree since Robert Traylor and Louis Bullock in 1998.
Stu Douglass concluded the season as the school's all @-@ time leader in games played, with 136. He surpassed Loy Vaught, who played in 135 games. Novak set the school record in career minutes played with 4 @,@ 357, surpassing Louis Bullock, who played 4 @,@ 356 minutes. Burke had a school record @-@ setting freshman season in assists, ending the year with 156.
= = Statistics = =
The team posted the following statistics :
= = Rankings = =
= = Watchlists and awards = =
= = = Preseason = = =
Five of the 30 nominees for the men's basketball Lowe's Senior CLASS Award were from the Big Ten, including Michigan's Zack Novak.
= = = In @-@ season = = =
Trey Burke was one of nearly 60 Bob Cousy Award candidates named in December 2011. On January 4, Burke was one of 20 finalists. On January 25, Novak was named one of ten finalists for the Lowe's Senior CLASS Award along with three other Big Ten athletes. He was also one of four Big Ten men's basketball players named Academic All @-@ District, putting him among the 40 finalists for the 15 @-@ man Academic All @-@ America team. Novak was named a third team Academic All @-@ American.
= = = Accolades and honors = = =
Trey Burke
CBSSports.com Second Team All @-@ American
Big Ten Freshman of the Year ( Big Ten media )
Co @-@ Big Ten Freshman of the Year ( Sporting News )
All @-@ Big Ten ( second team, coaches and media )
All @-@ Freshman | wikitext_103 | [
426,
4332,
1108,
1249,
11314,
411,
14930,
1100,
1821,
686,
84,
14648,
2285,
426,
4928,
187,
380,
4332,
1108,
1249,
11314,
411,
14930,
1100,
1821,
686,
84,
14648,
2285,
6607,
253,
2499,
273,
11314,
1309,
253,
4332,
1108,
1249,
26865,
9333,
309,
1821,
686,
84,
14648,
2952,
964,
380,
2285,
4546,
697,
1728,
3958,
275,
7359,
1780,
3399,
1157,
11314,
387,
27936,
2146,
5197,
323,
253,
5329,
394,
12640,
807,
964,
733,
574,
247,
33371,
5350,
273,
1249,
1214,
13,
33,
818,
1797,
964,
733,
369,
671,
253,
2285,
686,
84,
5325,
394,
4951,
2952,
347,
247,
3558,
273,
253,
7967,
13728,
12651,
964,
17538,
1214,
14,
33,
807,
1481,
8690,
2516,
2325,
587,
249,
3977,
253,
2285,
1157,
12936,
1876,
1214,
14,
33,
7967,
13728,
3773,
308,
5292,
29053,
1157,
8969,
11366,
12594,
1157,
10512,
15,
285,
1503,
471,
10733,
518,
964,
29053,
369,
4907,
7967,
13728,
30149,
1342,
273,
253,
10519,
285,
369,
11314,
686,
84,
806,
23323,
5687,
1876,
1214,
14,
33,
2448,
4070,
410,
70,
1580,
8065,
964,
2490,
380,
2285,
686,
84,
2952,
3407,
342,
247,
46667,
3420,
1388,
285,
8333,
275,
4437,
4332,
964,
496,
5080,
4050,
1157,
11314,
17386,
27478,
686,
84,
6822,
10850,
15490,
323,
253,
806,
673,
275,
247,
2165,
1411,
10128,
2418,
964,
733,
369,
253,
23738,
673,
247,
7967,
13728,
2285,
17386,
253,
921,
1157,
534,
3407,
275,
5826,
964,
2490,
380,
2285,
369,
275,
253,
3872,
31972,
512,
2952,
285,
7402,
347,
253,
4332,
1108,
1249,
7967,
13728,
820,
1214,
14,
33,
16928,
342,
11314,
2418,
285,
10128,
2418,
964,
733,
574,
1264,
34158,
689,
6671,
17045,
275,
253,
1755,
884,
387,
253,
673,
273,
253,
4804,
313,
23738,
1214,
14,
33,
17045,
33199,
1157,
28023,
1214,
14,
33,
17045,
11314,
2418,
285,
15515,
1214,
14,
33,
17045,
10128,
2418,
2387,
964,
380,
2285,
369,
15560,
453,
456,
387,
1728,
1919,
697,
1390,
1728,
2165,
273,
253,
2952,
964,
11314,
3663,
275,
253,
45406,
10529,
273,
253,
4050,
7967,
13728,
12651,
34947,
285,
33766,
562,
275,
253,
1273,
3790,
273,
253,
4050,
26865,
34947,
281,
990,
253,
2952,
342,
247,
2164,
1214,
14,
33,
884,
1924,
964,
380,
2285,
1912,
253,
2143,
686,
84,
806,
7967,
13728,
12651,
11218,
1580,
253,
12210,
1108,
11614,
2952,
285,
574,
253,
2143,
686,
84,
1682,
7967,
13728,
1924,
313,
2145,
1108,
608,
2387,
1580,
253,
9725,
1108,
11107,
2952,
964,
4928,
187,
426,
426,
5729,
13263,
426,
426,
4928,
19668,
426,
426,
426,
4332,
1108,
1249,
19363,
2285,
2758,
426,
426,
426,
4928,
187,
9613,
253,
2952,
3407,
1157,
1127,
7496,
399,
26548,
17771,
1157,
253,
7967,
13728,
27593,
6657,
275,
253,
4267,
1214,
14,
33,
1903,
2952,
1157,
1669,
253,
2285,
846,
1146,
22390,
407,
253,
8742,
9757,
47374,
964,
380,
19363,
966,
2908,
11197,
1299,
2652,
1504,
3526,
285,
4332,
10128,
2305,
15,
40751,
1127,
7496,
308,
5292,
29053,
964,
6295,
2652,
1504,
3526,
285,
29053,
497,
2190,
42307,
15,
681,
686,
84,
1755,
2233,
3773,
273,
253,
4332,
966,
3706,
2652,
1504,
3526,
17045,
10508,
394,
285,
29053,
17045,
11107,
394,
964,
7903,
6943,
813,
293,
7064,
7730,
281,
11314,
275,
4162,
5747,
521,
2021,
686,
84,
16027,
281,
253,
11545,
45349,
6192,
5391,
964,
11545,
2499,
686,
84,
6943,
813,
293,
7064,
39749,
13500,
16790,
369,
39433,
407,
521,
2021,
964,
322,
2284,
308,
20440,
7080,
1157,
665,
2112,
342,
6943,
813,
293,
7064,
369,
17875,
407,
45397,
6884,
6629,
1157,
9971,
562,
253,
19363,
966,
964,
308,
20440,
7080,
12431,
271,
11073,
26104,
285,
369,
2783,
247,
2940,
1214,
14,
33,
327,
7431,
323,
253,
14648,
2285,
964,
2490,
8969,
11366,
12594,
1157,
10512,
964,
1157,
3347,
273,
3438,
19305,
1876,
1214,
14,
33,
8141,
8969,
11366,
12594,
1157,
4895,
281,
253,
2285,
964,
754,
369,
3551,
745,
247,
33726,
2952,
275,
534,
344,
369,
247,
42293,
7967,
13728,
1876,
1214,
14,
33,
30149,
1342,
1157,
1876,
1214,
14,
33,
7967,
13728,
49448,
3748,
1157,
6822,
968,
1334,
15,
681,
30149,
3767,
1876,
1214,
14,
33,
3968,
285,
10589,
5106,
401,
5472,
34,
530,
746,
4070,
410,
70,
964,
13268,
38004,
1032,
1157,
253,
3347,
273,
17372,
367,
382,
790,
1876,
1214,
14,
33,
8141,
9915,
38004,
1032,
1157,
1669,
253,
2285,
1157,
19936,
295,
29191,
12267,
3374,
964,
4928,
187,
426,
426,
426,
4332,
1108,
1249,
2285,
38136,
426,
426,
426,
4928,
19668,
426,
426,
416,
7337,
426,
426,
4928,
187,
28351,
2285,
3403,
1550,
35382,
1716,
13409,
313,
8441,
1108,
10694,
285,
8210,
1108,
10508,
2387,
285,
330,
15,
43,
15,
8652,
313,
4695,
1108,
15630,
2387,
5608,
347,
6423,
273,
14648,
5871,
285,
10656,
19616,
1157,
2975,
964,
7993,
611,
1240,
2146,
369,
253,
2285,
686,
84,
3492,
30468,
964,
4928,
187,
426,
426,
32946,
285,
1543,
426,
426,
4928,
187,
11314,
6138,
697,
1638,
1214,
14,
33,
2165,
1327,
1214,
14,
33,
8059,
10130,
327,
4223,
337,
1157,
4332,
964,
380,
2285,
3407,
253,
2952,
275,
247,
30074,
456,
27936,
2146,
29410,
1163,
747,
13512,
285,
247,
1029,
1214,
14,
33,
5426,
4868,
4697,
497,
2879,
1157,
533,
33371,
5350,
369,
3777,
281,
1249,
1214,
13,
33,
818,
1797,
432,
2145,
1214,
13,
33,
818,
3712,
275,
253,
2045,
884,
12396,
964,
2490,
11314,
2210,
275,
2626,
1659,
275,
253,
1264,
1214,
14,
33,
2165,
4332,
353,
1952,
74,
17595,
262,
1050,
34947,
875,
4596,
3127,
1108,
3495,
964,
380,
2285,
16473,
253,
23738,
1214,
14,
33,
17045,
33199,
33572,
11087,
1108,
9901,
1157,
3663,
281,
253,
15515,
1214,
14,
33,
17045,
14913,
10063,
8397,
3683,
11487,
1108,
6879,
1157,
285,
16473,
253,
9620,
1214,
14,
33,
1249,
7583,
41742,
12810,
968,
11275,
1108,
9654,
964,
8969,
11366,
12594,
1157,
10512,
15,
369,
4907,
253,
7967,
13728,
20929,
273,
253,
12664,
1157,
285,
308,
5292,
29053,
369,
4907,
7967,
13728,
30149,
1342,
273,
253,
12664,
964,
496,
271,
20413,
1108,
7967,
13728,
26703,
2165,
275,
3563,
4596,
1157,
11314,
3663,
281,
9385,
5571,
1108,
9135,
964,
496,
697,
1735,
2165,
1157,
11314,
16473,
14890,
2418,
10909,
1108,
9523,
964,
1623,
4565,
884,
1157,
4332,
1157,
11314,
7171,
27373,
5091,
1108,
5096,
1157,
697,
4585,
1214,
14,
33,
14755,
2165,
1580,
18019,
11442,
11314,
10694,
1214,
14,
33,
2456,
327,
4596,
1638,
1157,
4748,
964,
733,
369,
671,
11314,
686,
84,
806,
2165,
1580,
6752,
342,
1264,
1384,
1214,
14,
33,
1127,
4868,
2967,
313,
11366,
12594,
1157,
29053,
285,
37144,
3774,
48645,
14617,
2387,
964,
29053,
12431,
521,
1273,
30149,
1342,
273,
253,
12664,
10390,
327,
4565,
1249,
846,
14755,
247,
2952,
1214,
14,
33,
1029,
1384,
2792,
285,
7457,
27593,
275,
253,
2165,
964,
1623,
253,
1072,
1388,
1157,
11314,
369,
253,
4585,
1214,
14,
33,
20139,
7967,
13728,
2285,
275,
253,
18194,
723,
46171,
13193,
1157,
3738,
253,
2285,
1140,
4206,
2067,
6629,
275,
253,
3872,
22207,
964,
496,
253,
2457,
767,
1327,
1214,
14,
33,
8059,
3958,
273,
253,
2952,
1157,
3774,
48645,
14617,
11691,
521,
806,
767,
4021,
1214,
14,
33,
33478,
1411,
15263,
329,
708,
353,
285,
27991,
327,
4565,
1722,
285,
4565,
3307,
964,
2490,
754,
6748,
715,
253,
7967,
13728,
12651,
10130,
1157,
1097,
273,
253,
6671,
11314,
574,
3663,
281,
497,
17045,
313,
14913,
369,
818,
394,
285,
608,
394,
275,
253,
4097,
285,
2434,
3844,
686,
22207,
285,
9385,
369,
3495,
5784,
285,
2164,
394,
2387,
964,
1623,
4565,
3285,
1157,
11314,
1912,
697,
806,
7967,
13728,
12651,
37835,
1580,
5403,
1108,
18188,
1157,
18019,
24263,
2418,
347,
3774,
48645,
14617,
6508,
521,
4021,
1214,
14,
33,
4021,
29642,
281,
1264,
3958,
964,
1623,
4247,
374,
1157,
29053,
12431,
521,
806,
7967,
13728,
12651,
20929,
273,
253,
12664,
10390,
285,
521,
2626,
30149,
1342,
273,
253,
12664,
10390,
323,
521,
3387,
2792,
275,
11314,
686,
84,
806,
767,
8059,
3958,
964,
1623,
4565,
3285,
1411,
24263,
2418,
344,
9269,
2145,
2792,
1157,
5093,
27593,
1157,
2620,
41531,
285,
642,
1614,
12239,
964,
1623,
4247,
337,
1157,
4050,
1157,
344,
2879,
247,
5249,
1214,
14,
33,
1029,
3435,
2792,
327,
854,
1214,
14,
33,
323,
1214,
14,
33,
1903,
9602,
342,
1264,
41531,
285,
1264,
27593,
1411,
14748,
281,
6233,
7967,
13728,
12651,
20929,
273,
253,
12664,
253,
1563,
1388,
964,
2490,
1623,
4247,
655,
1157,
11314,
3395,
253,
6657,
275,
253,
8059,
342,
247,
608,
1108,
374,
1924,
1157,
6701,
281,
8059,
14896,
689,
17045,
15558,
285,
11314,
2418,
6671,
964,
11314,
6376,
275,
806,
1659,
1919,
10305,
281,
10128,
2418,
3578,
1897,
1996,
964,
380,
2285,
2427,
608,
1214,
14,
33,
374,
275,
8059,
275,
5080,
1157,
1690,
14896,
689,
17045,
14614,
285,
10128,
2418,
6671,
964,
11314,
3663,
697,
2457,
1728,
2165,
273,
253,
2952,
281,
367,
11180,
489,
327,
5080,
2030,
281,
8416,
342,
247,
1458,
1108,
337,
1728,
1924,
964,
1623,
3919,
337,
1157,
253,
2285,
16473,
11545,
323,
616,
806,
3971,
3330,
275,
11545,
1580,
8878,
964,
6408,
253,
2165,
1157,
11314,
686,
84,
1884,
394,
273,
253,
2952,
1157,
308,
5292,
29053,
9377,
18975,
13629,
686,
84,
2143,
33726,
27593,
1924,
1157,
873,
689,
253,
2282,
273,
1884,
3958,
275,
253,
12459,
1214,
14,
33,
9330,
2952,
1157,
407,
13383,
521,
2264,
281,
21445,
964,
2490,
496,
253,
806,
2165,
273,
253,
4050,
7967,
13728,
12651,
9730,
686,
84,
40751,
34947,
1411,
14748,
1157,
29053,
3977,
253,
2285,
281,
10170,
342,
247,
5249,
1214,
14,
33,
1029,
1884,
2792,
964,
29053,
686,
84,
2264,
369,
247,
2143,
1924,
323,
253,
7967,
13728,
12651,
9730,
686,
84,
40751,
34947,
964,
496,
253,
45406,
989,
12417,
1157,
2299,
1157,
11314,
369,
17527,
407,
10128,
2418,
323,
253,
2626,
807,
275,
247,
4194,
964,
11314,
5966,
253,
4050,
26865,
9730,
686,
84,
9333,
309,
40751,
34947,
27677,
7002,
1157,
533,
3663,
281,
253,
20960,
16565,
1214,
14,
33,
27677,
10128,
8679,
38718,
7251,
1108,
3925,
964,
29053,
3395,
11314,
686,
84,
806,
23323,
5687,
1876,
1214,
14,
33,
2448,
4070,
410,
70,
1580,
6911,
308,
1402,
3833,
285,
7406,
17346,
825,
275,
8065,
964,
2490,
659,
86,
12572,
14407,
7945,
253,
2952,
347,
253,
2143,
686,
84,
512,
1214,
14,
33,
673,
6657,
275,
3958,
4546,
1157,
342,
14821,
964,
754,
49634,
418,
899,
657,
4551,
1157,
665,
4546,
275,
13620,
3958,
964,
10733,
518,
873,
253,
2143,
1924,
275,
5249,
2909,
4546,
342,
577,
1214,
13,
33,
34506,
1157,
28842,
272,
7406,
17346,
825,
1157,
665,
4546,
577,
1214,
13,
33,
37071,
2909,
964,
29053,
574,
247,
2143,
1924,
1214,
14,
33,
4758,
33726,
2952,
275,
27593,
1157,
12365,
253,
807,
342,
21807,
964,
4928,
187,
426,
426,
23363,
426,
426,
4928,
187,
380,
2285,
9269,
253,
1563,
9990,
1163,
4928,
187,
426,
426,
25299,
723,
426,
426,
4928,
19668,
426,
426,
14179,
28256,
285,
16620,
426,
426,
4928,
19668,
426,
426,
426,
5729,
13263,
426,
426,
426,
4928,
187,
14263,
273,
253,
1884,
7163,
30494,
323,
253,
1821,
686,
84,
14648,
49152,
686,
84,
17696,
28085,
11240,
497,
432,
253,
7967,
13728,
1157,
1690,
11314,
686,
84,
1503,
471,
10733,
518,
964,
4928,
187,
426,
426,
426,
496,
1214,
14,
33,
2952,
426,
426,
426,
4928,
187,
308,
5292,
29053,
369,
581,
273,
4829,
3925,
8679,
45557,
90,
11240,
9183,
4907,
275,
4565,
4332,
964,
1623,
4247,
577,
1157,
29053,
369,
581,
273,
1384,
2457,
1346,
964,
1623,
4247,
2030,
1157,
10733,
518,
369,
4907,
581,
273,
3578,
2457,
1346,
323,
253,
49152,
686,
84,
17696,
28085,
11240,
2112,
342,
1264,
643,
7967,
13728,
17812,
964,
754,
369,
671,
581,
273,
1740,
7967,
13728,
1821,
686,
84,
14648,
3773,
4907,
27878,
1876,
1214,
14,
33,
4412,
1157,
8133,
779,
2190,
253,
3387,
2457,
1346,
323,
253,
1458,
1214,
14,
33,
637,
27878,
1876,
1214,
14,
33,
3968,
2285,
964,
10733,
518,
369,
4907,
247,
2626,
2285,
27878,
1876,
1214,
14,
33,
2448,
964,
4928,
187,
426,
426,
426,
8874,
311,
3355,
285,
34727,
426,
426,
426,
4928,
187,
308,
5292,
29053,
2490,
17933,
3528,
4124,
15,
681,
6347,
10589,
1876,
1214,
14,
33,
2448,
2490,
7967,
13728,
30149,
1342,
273,
253,
10519,
313,
7967,
13728,
3420,
2387,
2490,
2434,
1214,
14,
33,
7967,
13728,
30149,
1342,
273,
253,
10519,
313,
21483,
272,
6317,
2387,
2490,
1876,
1214,
14,
33,
7967,
13728,
313,
1273,
2285,
1157,
19418,
285,
3420,
2387,
2490,
1876,
1214,
14,
33,
30149,
1342
] |
Oka, departed the northern coast of Santa Isabel Island on 2 September. On 4 – 5 September, aircraft from Henderson Field attacked the barge convoy, killing about 90 of the soldiers in the barges and destroying much of the unit's heavy equipment. Most of the remaining 1 @,@ 000 troops were able to land near Kamimbo ( 9 ° 15 ′ 32 ″ S 159 ° 40 ′ 18 ″ E ), west of the Lunga perimeter over the next few days. By 7 September, Kawaguchi had 5 @,@ 200 troops at Taivu Point and 1 @,@ 000 west of the Lunga perimeter. Kawaguchi was confident enough that he could defeat the Allied forces facing him that he declined an offer from the 17th Army for delivery of one more infantry battalion to augment his forces. Kawaguchi believed that there were only about 2 @,@ 000 U.S. Marines on Guadalcanal.
During this time, Vandegrift continued to direct efforts to strengthen and improve the defenses of the Lunga perimeter. Between 21 August and 3 September, he relocated three Marine battalions — including the 1st Raider Battalion, under U.S. Lieutenant Colonel Merritt A. Edson ( Edson's Raiders ), and the 1st Parachute Battalion — from Tulagi and Gavutu to Guadalcanal. These units added about 1 @,@ 500 troops to Vandegrift's original 11 @,@ 000 men defending Henderson Field. The 1st Parachute battalion, which had suffered heavy casualties in the Battle of Tulagi and Gavutu @-@ Tanambogo in August, was placed under Edson's command.
= = Battle = =
= = = Prelude = = =
Kawaguchi set the date for his attack on the Lunga perimeter for 12 September and began marching his forces west from Taivu towards Lunga Point on 5 September. He radioed 17th Army and requested that it carry out air strikes on Henderson Field beginning on 9 September, and that naval warships be stationed off Lunga Point on September 12 to " destroy any Americans who attempted to flee from the island. " On 7 September, Kawaguchi issued his attack plan to " rout and annihilate the enemy in the vicinity of the Guadalcanal Island airfield. " Kawaguchi's plan called for his forces to split into three, approach the Lunga perimeter inland, and launch a surprise night attack. Oka's force would attack the perimeter from the west while Ichiki's Second Echelon — renamed the Kuma Battalion — would attack from the east. The main attack would be by Kawaguchi's " Center Body ", numbering 3 @,@ 000 men in three battalions, from the south of the Lunga perimeter. By 7 September, most of Kawaguchi's troops had started marching from Taivu towards Lunga Point along the coastline. About 250 Japanese troops remained behind to guard the brigade's supply base at Taivu.
Meanwhile, native island scouts — directed by British government official and officer in the British Solomon Islands Protectorate Defence Force, Martin Clemens — told the Marines of Japanese troops at Taivu, near the village of Tasimboko, about 17 mi ( 27 km ) east of Lunga. Edson launched a raid against the Japanese troops at Taivu. Destroyer transports USS McKean and Manley and two patrol boats took 813 of Edson's men to Taivu in two trips. Edson and his first wave of 501 troops landed at Taivu at 05 : 20 ( local time ) on 8 September. Supported by aircraft from Henderson Field and gunfire from the destroyer transports, Edson's men advanced towards Tasimboko village but were slowed by Japanese resistance. At 11 : 00, the rest of Edson's men landed. With this reinforcement and more support from the Henderson Field aircraft, Edson's force pushed into the village. The Japanese defenders, believing a major landing was underway after observing the concurrent approach of an Allied supply ship convoy heading towards Lunga Point, retreated into the jungle, leaving behind 27 dead. Two Marines were killed.
In Tasimboko, Edson's troops discovered the supply base for Kawaguchi's forces, including large stockpiles of food, ammunition and medical supplies, and a shortwave radio. The Marines seized documents, equipment and food supplies, destroyed the rest, and returned to the Lunga perimeter at 17 : 30. The quantities of supplies and intelligence from the captured documents revealed that at least 3 @,@ 000 Japanese troops were on the island and apparently planning an attack.
Edson and Colonel Gerald Thomas, Vandegrift's operations officer, believed that the Japanese attack would come at the Lunga Ridge, a narrow, grassy, 1 @,@ 000 m ( 1 @,@ 100 yd ) long, coral ridge ( 9 ° 26 ′ 39 ″ S 160 ° 2 ′ 50 ″ E ) parallel to the Lunga River just south of Henderson Field. The ridge offered a natural avenue of approach to the airfield, commanded the surrounding area and was almost undefended. Edson and Thomas tried to persuade Vandegrift to move forces to defend the ridge, but Vandegrift refused, believing that the Japanese were more likely to attack along the coast. Finally, Thomas convinced Vandegrift that the ridge was a good location for Edson's Raiders to " rest " from their actions of the preceding month. On 11 September, the 840 men of Edson's unit — including the 1st Raiders and the Paramarines — deployed onto and around the ridge and prepared to defend it.
Kawaguchi's Center Body of troops was planning to attack the Lunga perimeter at the ridge, which they called " the centipede " ( mukade gata ) because of its shape. On 9 September, Kawaguchi's troops left the coast at Koli Point. Split into four columns, they marched into the jungle towards their predesignated attack points south and southeast of the airfield. Lack of good maps, at least one faulty compass, and thick, almost impenetrable jungle caused the Japanese columns to proceed slowly and zigzag, costing a lot of time. At the same time, Oka's troops approached the Lunga perimeter from the west. Oka had some intelligence on the Marine defenses, extracted from a U.S. Army pilot captured on 30 August.
During the day of 12 September, Kawaguchi's troops struggled through the jungle toward their assembly points for that night's attacks. Kawaguchi wanted his three Center Body battalions in place by 14 : 00, but they did not reach their assembly areas until after 22 : 00. Oka was also delayed in his advance towards the Marine lines in the west. Only the Kuma battalion reported that they were in place on time. Despite the problems in reaching the planned attack positions, Kawaguchi was still confident in his attack plan because a captured U.S. pilot disclosed that the ridge was the weakest part of the Marine defenses. Japanese bombers attacked the ridge during daytime on 11 – 12 September, causing a few casualties, including two killed.
= = = First night's action = = =
The Americans knew of the approach of the Japanese forces from reports from native scouts and their own patrols, but did not know exactly where or when they would attack. The ridge around which Edson deployed his men consisted of three distinct hillocks. At the southern tip and surrounded on three sides by thick jungle was Hill 80 ( so named because it rose 80 ft ( 24 m ) above sea level ). Six hundred yards north was Hill 123 ( 123 ft ( 37 m ) high ), the dominant feature on the ridge. The northernmost hillock was unnamed and about 60 ft ( 18 m ) high. Edson placed the five companies from the Raider battalion on the west side of the ridge and the three Parachute battalion companies on the east side, holding positions in depth from Hill 80 back to Hill 123. Two of the five Raider companies, " B " and " C ", held a line between the ridge, a small, swampy lagoon, and the Lunga River. Machine @-@ gun teams from " E " Company, the heavy weapons company, were scattered throughout the defenses. Edson placed his command post on Hill 123.
At 21 : 30 on 12 September, the Japanese cruiser Sendai and three destroyers shelled the Lunga perimeter for 20 minutes and illuminated the ridge with a searchlight. Japanese artillery began shelling the Marine lines, but did little damage. At the same time, scattered groups of Kawaguchi's troops began skirmishing with Marines around the ridge. Kawaguchi's 1st Battalion — led by Major Yukichi Kokusho — attacked the Raider's " C " company between the lagoon and the Lunga River, overrunning at least one platoon and forcing the Marine company to fall back to the ridge. Kokusho's unit became entangled with troops from Kawaguchi's 3rd Battalion under Lieutenant Colonel Kusukichi Watanabe, who were still struggling to reach their attack positions, and the resulting confusion effectively stopped the Japanese attack on the ridge that night. Kawaguchi, who was having trouble locating where he was in relation to the U.S. Marine lines as well as coordinating his troops'attacks, later complained, " Due to the devilish jungle, the brigade was scattered all over and was completely beyond my control. In my whole life | wikitext_103 | [
473,
4530,
1157,
29115,
253,
11186,
8852,
273,
12126,
36139,
8451,
327,
374,
4397,
964,
1623,
577,
1108,
608,
4397,
1157,
9954,
432,
30756,
7327,
13964,
253,
2534,
463,
47005,
1157,
9811,
670,
5091,
273,
253,
9647,
275,
253,
14862,
265,
285,
25473,
1199,
273,
253,
3943,
686,
84,
5536,
6500,
964,
5595,
273,
253,
5780,
337,
1214,
13,
33,
20181,
10824,
497,
2104,
281,
2659,
2822,
21174,
303,
2399,
313,
898,
11758,
1458,
541,
112,
4567,
541,
113,
322,
22769,
11758,
3387,
541,
112,
1283,
541,
113,
444,
2387,
1157,
8935,
273,
253,
37792,
66,
31245,
689,
253,
1735,
1643,
1897,
964,
2896,
818,
4397,
1157,
36288,
356,
26550,
574,
608,
1214,
13,
33,
1052,
10824,
387,
15543,
400,
86,
11149,
285,
337,
1214,
13,
33,
20181,
8935,
273,
253,
37792,
66,
31245,
964,
36288,
356,
26550,
369,
13224,
2217,
326,
344,
812,
13313,
253,
32683,
5621,
10268,
779,
326,
344,
13072,
271,
3959,
432,
253,
1722,
394,
8663,
323,
6742,
273,
581,
625,
32468,
40716,
281,
35919,
521,
5621,
964,
36288,
356,
26550,
6566,
326,
627,
497,
760,
670,
374,
1214,
13,
33,
20181,
530,
15,
52,
15,
34913,
327,
3262,
30277,
5092,
267,
964,
2490,
6408,
436,
673,
1157,
657,
10273,
737,
2094,
4821,
281,
1480,
6031,
281,
17084,
285,
3157,
253,
25774,
273,
253,
37792,
66,
31245,
964,
17842,
3127,
4223,
285,
495,
4397,
1157,
344,
43919,
1264,
18671,
11750,
267,
621,
1905,
1690,
253,
337,
296,
11605,
1334,
35843,
1157,
762,
530,
15,
52,
15,
22389,
20575,
34069,
770,
329,
15,
444,
1397,
251,
313,
444,
1397,
251,
686,
84,
41994,
2387,
1157,
285,
253,
337,
296,
2956,
607,
1137,
35843,
1905,
432,
34075,
28720,
285,
443,
580,
307,
86,
281,
3262,
30277,
5092,
267,
964,
2053,
5085,
2879,
670,
337,
1214,
13,
33,
6783,
10824,
281,
657,
10273,
737,
2094,
686,
84,
3236,
1903,
1214,
13,
33,
20181,
1821,
21449,
30756,
7327,
964,
380,
337,
296,
2956,
607,
1137,
40716,
1157,
534,
574,
9606,
5536,
32853,
275,
253,
15764,
273,
34075,
28720,
285,
443,
580,
307,
86,
1214,
14,
33,
22188,
1369,
24912,
275,
4223,
1157,
369,
4845,
762,
444,
1397,
251,
686,
84,
3923,
964,
4928,
187,
426,
426,
15764,
426,
426,
4928,
19668,
426,
426,
426,
367,
1661,
2496,
426,
426,
426,
4928,
187,
36288,
356,
26550,
873,
253,
3522,
323,
521,
2983,
327,
253,
37792,
66,
31245,
323,
1249,
4397,
285,
3407,
37655,
521,
5621,
8935,
432,
15543,
400,
86,
4404,
37792,
66,
11149,
327,
608,
4397,
964,
754,
5553,
264,
1722,
394,
8663,
285,
9521,
326,
352,
4459,
562,
2329,
18200,
327,
30756,
7327,
5068,
327,
898,
4397,
1157,
285,
326,
25186,
16860,
16458,
320,
38712,
745,
37792,
66,
11149,
327,
4397,
1249,
281,
346,
6909,
667,
7108,
665,
9919,
281,
32645,
432,
253,
8930,
964,
346,
1623,
818,
4397,
1157,
36288,
356,
26550,
6808,
521,
2983,
2098,
281,
346,
5557,
285,
26262,
47602,
253,
9054,
275,
253,
21520,
273,
253,
3262,
30277,
5092,
267,
8451,
2329,
3423,
964,
346,
36288,
356,
26550,
686,
84,
2098,
1925,
323,
521,
5621,
281,
8085,
715,
1264,
1157,
2746,
253,
37792,
66,
31245,
40835,
1157,
285,
8027,
247,
9326,
2360,
2983,
964,
473,
4530,
686,
84,
3490,
651,
2983,
253,
31245,
432,
253,
8935,
1223,
32185,
8678,
686,
84,
6347,
444,
1962,
18640,
1905,
27624,
253,
611,
9307,
35843,
1905,
651,
2983,
432,
253,
9268,
964,
380,
2022,
2983,
651,
320,
407,
36288,
356,
26550,
686,
84,
346,
5197,
18456,
346,
1157,
1180,
272,
495,
1214,
13,
33,
20181,
1821,
275,
1264,
11750,
267,
621,
1157,
432,
253,
6420,
273,
253,
37792,
66,
31245,
964,
2896,
818,
4397,
1157,
954,
273,
36288,
356,
26550,
686,
84,
10824,
574,
3053,
37655,
432,
15543,
400,
86,
4404,
37792,
66,
11149,
2112,
253,
8852,
1282,
964,
11376,
10257,
6692,
10824,
6376,
3212,
281,
7496,
253,
43594,
686,
84,
6186,
2613,
387,
15543,
400,
86,
964,
2490,
16257,
1157,
7925,
8930,
660,
8349,
1905,
6828,
407,
4782,
2208,
3565,
285,
5908,
275,
253,
4782,
31049,
18708,
8694,
1870,
366,
32831,
10627,
1157,
8698,
48930,
561,
1905,
2183,
253,
34913,
273,
6692,
10824,
387,
15543,
400,
86,
1157,
2822,
253,
7773,
273,
35203,
6785,
23988,
1157,
670,
1722,
3641,
313,
3435,
10771,
2387,
9268,
273,
37792,
66,
964,
444,
1397,
251,
10098,
247,
25682,
1411,
253,
6692,
10824,
387,
15543,
400,
86,
964,
20593,
4926,
254,
811,
4124,
47800,
3044,
9499,
266,
285,
3083,
2205,
285,
767,
21820,
19750,
2335,
854,
1012,
273,
444,
1397,
251,
686,
84,
1821,
281,
15543,
400,
86,
275,
767,
19055,
964,
444,
1397,
251,
285,
521,
806,
5149,
273,
28416,
10824,
17735,
387,
15543,
400,
86,
387,
16987,
1163,
1384,
313,
1980,
673,
2387,
327,
854,
4397,
964,
6023,
7551,
407,
9954,
432,
30756,
7327,
285,
5654,
11342,
432,
253,
6909,
254,
811,
4124,
1157,
444,
1397,
251,
686,
84,
1821,
7269,
4404,
35203,
6785,
23988,
7773,
533,
497,
28837,
407,
6692,
5052,
964,
2058,
1903,
1163,
7449,
1157,
253,
1551,
273,
444,
1397,
251,
686,
84,
1821,
17735,
964,
2726,
436,
35221,
285,
625,
1329,
432,
253,
30756,
7327,
9954,
1157,
444,
1397,
251,
686,
84,
3490,
10184,
715,
253,
7773,
964,
380,
6692,
31342,
1157,
22142,
247,
2201,
15165,
369,
30361,
846,
20764,
253,
17336,
2746,
273,
271,
32683,
6186,
6215,
47005,
13590,
4404,
37792,
66,
11149,
1157,
46047,
715,
253,
31500,
1157,
6108,
3212,
3435,
3846,
964,
5761,
34913,
497,
5339,
964,
2490,
496,
35203,
6785,
23988,
1157,
444,
1397,
251,
686,
84,
10824,
6888,
253,
6186,
2613,
323,
36288,
356,
26550,
686,
84,
5621,
1157,
1690,
1781,
5739,
81,
3205,
273,
2739,
1157,
28630,
285,
3739,
13191,
1157,
285,
247,
2159,
15007,
5553,
964,
380,
34913,
17571,
7177,
1157,
6500,
285,
2739,
13191,
1157,
11069,
253,
1551,
1157,
285,
4895,
281,
253,
37792,
66,
31245,
387,
1722,
1163,
1884,
964,
380,
13483,
273,
13191,
285,
9260,
432,
253,
10848,
7177,
4950,
326,
387,
1878,
495,
1214,
13,
33,
20181,
6692,
10824,
497,
327,
253,
8930,
285,
8505,
7219,
271,
2983,
964,
2490,
444,
1397,
251,
285,
20575,
32509,
7195,
1157,
657,
10273,
737,
2094,
686,
84,
5871,
5908,
1157,
6566,
326,
253,
6692,
2983,
651,
1705,
387,
253,
37792,
66,
28188,
1157,
247,
6891,
1157,
10583,
90,
1157,
337,
1214,
13,
33,
20181,
278,
313,
337,
1214,
13,
33,
2233,
340,
69,
2387,
1048,
1157,
34110,
27563,
313,
898,
11758,
3436,
541,
112,
6931,
541,
113,
322,
12036,
11758,
374,
541,
112,
2456,
541,
113,
444,
2387,
7529,
281,
253,
37792,
66,
7121,
816,
6420,
273,
30756,
7327,
964,
380,
27563,
5907,
247,
3626,
39893,
273,
2746,
281,
253,
2329,
3423,
1157,
26814,
253,
8704,
2170,
285,
369,
2761,
46583,
1834,
964,
444,
1397,
251,
285,
7195,
3597,
281,
29720,
657,
10273,
737,
2094,
281,
2118,
5621,
281,
2342,
253,
27563,
1157,
533,
657,
10273,
737,
2094,
9284,
1157,
22142,
326,
253,
6692,
497,
625,
2779,
281,
2983,
2112,
253,
8852,
964,
6610,
1157,
7195,
13762,
657,
10273,
737,
2094,
326,
253,
27563,
369,
247,
1175,
4328,
323,
444,
1397,
251,
686,
84,
41994,
281,
346,
1551,
346,
432,
616,
5231,
273,
253,
17691,
1770,
964,
1623,
1903,
4397,
1157,
253,
854,
1449,
1821,
273,
444,
1397,
251,
686,
84,
3943,
1905,
1690,
253,
337,
296,
41994,
285,
253,
2956,
33830,
1100,
1905,
18329,
4830,
285,
1475,
253,
27563,
285,
5480,
281,
2342,
352,
964,
2490,
36288,
356,
26550,
686,
84,
5197,
18456,
273,
10824,
369,
7219,
281,
2983,
253,
37792,
66,
31245,
387,
253,
27563,
1157,
534,
597,
1925,
346,
253,
1399,
532,
13616,
346,
313,
278,
2788,
796,
305,
682,
2387,
984,
273,
697,
5281,
964,
1623,
898,
4397,
1157,
36288,
356,
26550,
686,
84,
10824,
1669,
253,
8852,
387,
611,
10424,
11149,
964,
43531,
715,
1740,
9930,
1157,
597,
31653,
715,
253,
31500,
4404,
616,
2063,
265,
525,
456,
2983,
2792,
6420,
285,
32253,
273,
253,
2329,
3423,
964,
43702,
273,
1175,
8115,
1157,
387,
1878,
581,
40249,
17066,
1157,
285,
5026,
1157,
2761,
1607,
257,
11656,
494,
31500,
4269,
253,
6692,
9930,
281,
4262,
7808,
285,
48567,
47482,
1157,
45964,
247,
2257,
273,
673,
964,
2058,
253,
1072,
673,
1157,
473,
4530,
686,
84,
10824,
13781,
253,
37792,
66,
31245,
432,
253,
8935,
964,
473,
4530,
574,
690,
9260,
327,
253,
18671,
25774,
1157,
10375,
432,
247,
530,
15,
52,
15,
8663,
11572,
10848,
327,
1884,
4223,
964,
2490,
6408,
253,
1388,
273,
1249,
4397,
1157,
36288,
356,
26550,
686,
84,
10824,
19460,
949,
253,
31500,
2584,
616,
7796,
2792,
323,
326,
2360,
686,
84,
8104,
964,
36288,
356,
26550,
3078,
521,
1264,
5197,
18456,
11750,
267,
621,
275,
1659,
407,
1638,
1163,
7449,
1157,
533,
597,
858,
417,
3986,
616,
7796,
3672,
1919,
846,
3307,
1163,
7449,
964,
473,
4530,
369,
671,
13444,
275,
521,
7170,
4404,
253,
18671,
3104,
275,
253,
8935,
964,
7214,
253,
611,
9307,
40716,
2361,
326,
597,
497,
275,
1659,
327,
673,
964,
9937,
253,
3237,
275,
10922,
253,
9355,
2983,
6887,
1157,
36288,
356,
26550,
369,
1335,
13224,
275,
521,
2983,
2098,
984,
247,
10848,
530,
15,
52,
15,
11572,
10557,
326,
253,
27563,
369,
253,
5075,
383,
629,
273,
253,
18671,
25774,
964,
6692,
42504,
13964,
253,
27563,
1309,
37527,
327,
1903,
1108,
1249,
4397,
1157,
8479,
247,
1643,
32853,
1157,
1690,
767,
5339,
964,
4928,
187,
426,
426,
426,
3973,
2360,
686,
84,
2250,
426,
426,
426,
4928,
187,
380,
7108,
3260,
273,
253,
2746,
273,
253,
6692,
5621,
432,
5012,
432,
7925,
660,
8349,
285,
616,
1211,
21820,
84,
1157,
533,
858,
417,
871,
4555,
835,
390,
672,
597,
651,
2983,
964,
380,
27563,
1475,
534,
444,
1397,
251,
18329,
521,
1821,
14278,
273,
1264,
5799,
13599,
4121,
964,
2058,
253,
11053,
9092,
285,
13750,
327,
1264,
7123,
407,
5026,
31500,
369,
7061,
5096,
313,
594,
4907,
984,
352,
9461,
5096,
23899,
313,
2164,
278,
2387,
1840,
6150,
1268,
2387,
964,
11067,
4289,
11433,
6146,
369,
7061,
15567,
313,
15567,
23899,
313,
5345,
278,
2387,
1029,
2387,
1157,
253,
11360,
4735,
327,
253,
27563,
964,
380,
11186,
2252,
13599,
825,
369,
42540,
285,
670,
3925,
23899,
313,
1283,
278,
2387,
1029,
964,
444,
1397,
251,
4845,
253,
2620,
4413,
432,
253,
11605,
1334,
40716,
327,
253,
8935,
1930,
273,
253,
27563,
285,
253,
1264,
2956,
607,
1137,
40716,
4413,
327,
253,
9268,
1930,
1157,
5877,
6887,
275,
6864,
432,
7061,
5096,
896,
281,
7061,
15567,
964,
5761,
273,
253,
2620,
11605,
1334,
4413,
1157,
346,
378,
346,
285,
346,
330,
346,
1157,
2918,
247,
1386,
875,
253,
27563,
1157,
247,
1355,
1157,
44195,
90,
16653,
3508,
1157,
285,
253,
37792,
66,
7121,
964,
21585,
1214,
14,
33,
5654,
6671,
432,
346,
444,
346,
6487,
1157,
253,
5536,
8914,
2567,
1157,
497,
17485,
4768,
253,
25774,
964,
444,
1397,
251,
4845,
521,
3923,
1501,
327,
7061,
15567,
964,
2490,
2058,
3127,
1163,
1884,
327,
1249,
4397,
1157,
253,
6692,
50148,
23934,
2284,
285,
1264,
6909,
398,
8135,
264,
253,
37792,
66,
31245,
323,
1384,
2909,
285,
34420,
253,
27563,
342,
247,
3186,
3243,
964,
6692,
29923,
3407,
8135,
272,
253,
18671,
3104,
1157,
533,
858,
1652,
4723,
964,
2058,
253,
1072,
673,
1157,
17485,
2390,
273,
36288,
356,
26550,
686,
84,
10824,
3407,
1629,
2683,
3647,
342,
34913,
1475,
253,
27563,
964,
36288,
356,
26550,
686,
84,
337,
296,
35843,
1905,
3977,
407,
11432,
37342,
22208,
47653,
316,
1689,
1905,
13964,
253,
11605,
1334,
686,
84,
346,
330,
346,
2567,
875,
253,
16653,
3508,
285,
253,
37792,
66,
7121,
1157,
689,
24220,
387,
1878,
581,
26588,
3508,
285,
17190,
253,
18671,
2567,
281,
2965,
896,
281,
253,
27563,
964,
47653,
316,
1689,
686,
84,
3943,
3395,
36255,
342,
10824,
432,
36288,
356,
26550,
686,
84,
495,
5784,
35843,
762,
22389,
20575,
611,
316,
2788,
22208,
11327,
266,
12424,
1157,
665,
497,
1335,
15586,
281,
3986,
616,
2983,
6887,
1157,
285,
253,
4795,
13775,
8069,
6331,
253,
6692,
2983,
327,
253,
27563,
326,
2360,
964,
36288,
356,
26550,
1157,
665,
369,
1907,
7596,
43042,
835,
344,
369,
275,
5886,
281,
253,
530,
15,
52,
15,
18671,
3104,
347,
973,
347,
45415,
521,
10824,
686,
8104,
1157,
1996,
19375,
1157,
346,
12571,
281,
253,
22144,
763,
31500,
1157,
253,
43594,
369,
17485,
512,
689,
285,
369,
4336,
4457,
619,
1453,
964,
496,
619,
2644,
1495
] |
= Butterfly World Tour =
The Butterfly World Tour was the third concert tour by American singer @-@ songwriter Mariah Carey. The tour promoted Carey's album at the time, Butterfly ( 1997 ), and included songs from several of her previous albums. The tour visited Asia, Australia and the United States, with rehearsals taking place in December 1997. Starting on January 11, 1998 the tour spanned five shows in Asia, six in Australia, and one in Hawaii, US. Throughout the tour, Carey varied hairstyles and outfits, as well as song selections. The Butterfly World Tour was very successful ; the four dates at Japan's largest stadium, Tokyo Dome, sold out in under one hour, equaling over 200 @,@ 000 tickets, breaking the previous record she held at the stadium for show sell @-@ outs.
The tour was recorded in VHS format, and was titled Around the World. The video featured live performances of Carey at different worldwide venues including New York, Japan, Hawaii and Brisbane. Other scenes are included in the video such as a conversation between Carey and Brenda K. Starr prior to her performance of " I Still Believe ". Prior to the performances in Australia, a scene of Carey swimming with dolphins is shown. Additionally, Olivia Newton @-@ John makes a cameo appearance during their joint performance of Newton @-@ John's song, " Hopelessly Devoted to You ". The video was commercially successful, being certified platinum in the United States by the Recording Industry Association of America ( RIAA ) and gold in Brazil by the Associação Brasileira dos Produtores de Discos ( ABPD ).
= = Background = =
Since her debut in 1990, Carey had not journeyed on a large or extensive tour. In fact, she had not embarked on a tour until her third studio effort, Music Box ( 1993 ), when she performed six arena shows in the United States during the Music Box Tour. The opening night of the tour received scathing reviews, mostly aimed at Carey's deemed " obvious " stage @-@ fright and failure to make a connection with the crowd. Succeeding nights were more favorably reviewed, with critics raving about Carey's vocals. Jon Pareles of The New York Times wrote regarding Carey's live vocals, " Beyond any doubt, Ms. Carey's voice is no studio concoction. Her range extends from a rich, husky alto to dog @-@ whistle high notes ; she can linger over sensual turns, growl with playful confidence, syncopate like a scat singer. " However, after the strong media attention, Carey did not visit the US on her succeeding Daydream World Tour in 1996, visiting only Europe and Asia. The tour in contrast, received critical acclaim from critics and fans alike, as well as breaking ticket sale records. Carey's three shows at Japan's largest stadium, Tokyo Dome, sold out in under three hours, equaling in over 150 @,@ 000 tickets, setting the record of fastest show sellouts in Japan's history. On the Butterfly World Tour, Carey broke the record, selling 200 @,@ 000 tickets in under one hour. During 1997, after the commercially and critically successful release of Butterfly, Carey had not planned to tour once again, due to the long travel times and strain on her voice. However, due to overwhelming demand by fans, Carey agreed to perform in Asia once again, only extending the tour to Taiwan and Australia, as well as one last show in the United States. Rehearsals for the show began shortly after Christmas 1997, extending for a period of two weeks.
= = Concert synopsis = =
The show began with Carey standing on a small elevated centerpiece on stage, surrounded by several long draped curtains. Carey featured three background vocalists throughout the tour, Trey Lorenz, Melodie Daniels and Kelly Price. As the introduction began with " Emotions ", each of the curtains were slowly draped, revealing Carey atop the platform, dressed in a beige mini @-@ dress and matching sheer blouse and stiletto heels. As she began performing " Emotions ", the platform was lowered so Carey could access the other sections of the stage throughout the song's performance. After an intimate performance with dimmed lights for " The Roof ( Back in Time ) ", Carey was joined on @-@ stage by a Peruvian guitar player, who played the Latin @-@ inspired guitar melodies during her performance of " My All ". Afterwards, Carey sang " Close My Eyes ", the only sitting performance of the show. During the song, several male backup dancers performed slow and ample dance routines behind Carey on a higher level of the stage.
For the second part of the show, Carey had the second costume change of the evening, donning a long sequined black gown and semi @-@ teased hair. For the performance of " Dreamlover ", Carey was joined by three female back @-@ up dancers, who mimicked her light dance routines during the song. The next song on the set @-@ list was " Hero ", which featured Carey alone on @-@ stage, without any vocal back @-@ up. After the song's performance, Carey was joined on @-@ stage by Lorenz, who performed " I 'll Be There " alongside her. Next came " Make It Happen ", a song which accompanied yet another wardrobe change for Carey. She donned a short mini @-@ skirt, alongside a sleeveless white blouse and loose golden curls. On @-@ stage, Carey was joined by a full church choir, all dressed in long black garments. After the song's recital, Carey performed " One Sweet Day ", alongside a previously recorded video of Boyz II Men during their live performance of the song with Carey at Madison Square Garden in 1995.
After completing the song, Carey changed to a pair of leg @-@ hugging blue jeans and a tank top. Her next performance was the " Fantasy " remix, featuring Ol'Dirty Bastard on a large projection screen behind the stage, as Carey performed light chair dance @-@ routines alongside several male dancers. The performance featured the most intricate choreography Carey performed on the tour. After a low @-@ key performance of " Babydoll ", or " Whenever You Call " in other countries, Carey was once again joined by several male dancers, as she sang " Honey ", while re @-@ enacting the music video during a small skit. Carey once again changed to a beige ensemble similar to her first outfit before performing her debut single, " Vision of Love ". The final song on the tour was " Butterfly ", which featured large stills of butterflies and flowers projected onto the large screen behind Carey. She donned a long brown sequined gown for the performance, being joined on stage once again by her trio of back @-@ up singers. During the shows in Japan, Carey performed her holiday classic " All I Want for Christmas Is You ", alongside various male and female dancers on stage who performed light dance routines alongside Carey. During the song, Carey donned a Santa suit and matching hat, while being carried on a large stage prop by the dancers.
= = Critical reception = =
Virtually the entire tour was an instant sell @-@ out ; the four shows at Japan's largest stadium, Tokyo Dome, broke Carey's previous ticket @-@ sales record, selling out all 200 @,@ 000 tickets in under one hour. Additionally, the entire Australian leg sold out within hours, leading Carey to extend the tour one more date in the United States. The show at Hawaii's 50 @,@ 000 capacity Aloha Stadium sold out as well, making her one of the few acts in the stadiums history to sell out the entire venue. Aside from its commercial success, fans and critics raved about the show's visuals, as well as Carey's vocal delivery.
= = Broadcasts and recordings = =
During the tour, several bits and performances were filmed and later edited into a VHS and DVD entitled Around the World. The VHS featured performances from Tokyo Dome, Aloha Stadium as well as few other skits and scenes that were later compiled into the video. The film first begins with performances in Hawaii, where the song's recitals are cut into halves, excluding the second verses and bridge to shorten the bulk length of the video. Afterwards, Carey's performance of " My All " is shown in inter @-@ cut scenes from Japan and Taipei. After the conclusion of the song, scenes of Carey conversing with Brenda K. Starr are shown, which eventually lead to a tribute to her at a small and intimate New York club, where Carey performs " I Still Believe ". Soon after, Carey's performance in Japan with Lorenz for " I 'll Be There " is shown, leading to scenes of Carey swimming with dolphins in Australia. the next title on the video is Carey's live rendition of " Hopelessly Devoted To You ", where she is joined by Olivia Newton @-@ John on stage in Melbourne. A scene of a fans gathering outside of a New York City studio is shown, following a performance of " Honey, " and " Hero " at Aloha Stadium. The VHS was a commercial success, being certified platinum by the Recording Industry Association of America ( RIAA ), denoting shipments of over 100 @,@ 000 units. The video was also certified gold in Brazil by the Associação Brasileira dos Produtores de Discos ( ABPD ).
= = Set list = = | wikitext_103 | [
426,
30683,
16247,
3645,
11997,
426,
4928,
187,
380,
30683,
16247,
3645,
11997,
369,
253,
2626,
12699,
4892,
407,
2448,
16057,
1214,
14,
33,
4498,
16360,
2398,
13560,
45377,
964,
380,
4892,
15127,
45377,
686,
84,
5400,
387,
253,
673,
1157,
30683,
16247,
313,
8210,
2387,
1157,
285,
2908,
9575,
432,
2067,
273,
617,
2045,
16258,
964,
380,
4892,
11580,
10497,
1157,
6976,
285,
253,
1986,
2077,
1157,
342,
33558,
932,
3192,
1659,
275,
4565,
8210,
964,
28396,
327,
4247,
1903,
1157,
8065,
253,
4892,
40423,
2620,
2722,
275,
10497,
1157,
2800,
275,
6976,
1157,
285,
581,
275,
22085,
1157,
1982,
964,
28786,
253,
4892,
1157,
45377,
12848,
419,
712,
9250,
285,
46881,
1157,
347,
973,
347,
4498,
36318,
964,
380,
30683,
16247,
3645,
11997,
369,
1077,
5547,
3706,
253,
1740,
12282,
387,
4047,
686,
84,
6253,
21711,
1157,
17413,
399,
485,
1157,
4211,
562,
275,
762,
581,
4964,
1157,
1298,
4052,
689,
1052,
1214,
13,
33,
20181,
14997,
1157,
10155,
253,
2045,
1924,
703,
2918,
387,
253,
21711,
323,
921,
5580,
1214,
14,
33,
20823,
964,
2490,
380,
4892,
369,
5950,
275,
657,
8282,
5981,
1157,
285,
369,
18879,
26134,
253,
3645,
964,
380,
3492,
12819,
3153,
16226,
273,
45377,
387,
1027,
11762,
28966,
1690,
1457,
2816,
1157,
4047,
1157,
22085,
285,
40767,
964,
5131,
13451,
403,
2908,
275,
253,
3492,
824,
347,
247,
7827,
875,
45377,
285,
25063,
1473,
611,
15,
659,
3298,
2720,
281,
617,
3045,
273,
346,
309,
11706,
48678,
346,
964,
13036,
281,
253,
16226,
275,
6976,
1157,
247,
6200,
273,
45377,
17120,
342,
277,
35706,
310,
2011,
964,
9157,
1157,
45790,
19608,
1214,
14,
33,
2516,
2789,
247,
2210,
80,
7286,
1309,
616,
6036,
3045,
273,
19608,
1214,
14,
33,
2516,
686,
84,
4498,
1157,
346,
16890,
6134,
314,
8397,
4225,
281,
1422,
346,
964,
380,
3492,
369,
21917,
5547,
1157,
1146,
18065,
32297,
275,
253,
1986,
2077,
407,
253,
4568,
1573,
25475,
7115,
273,
3968,
313,
29824,
2446,
2387,
285,
5328,
275,
10869,
407,
253,
2903,
406,
571,
7014,
31574,
587,
8432,
9500,
1294,
69,
307,
2324,
372,
15292,
375,
313,
12056,
5414,
2387,
964,
4928,
187,
426,
426,
17720,
426,
426,
4928,
187,
3932,
617,
11386,
275,
7901,
1157,
45377,
574,
417,
9455,
264,
327,
247,
1781,
390,
9470,
4892,
964,
496,
958,
1157,
703,
574,
417,
48053,
327,
247,
4892,
1919,
617,
2626,
11803,
3434,
1157,
11412,
14423,
313,
9725,
2387,
1157,
672,
703,
2684,
2800,
23192,
2722,
275,
253,
1986,
2077,
1309,
253,
11412,
14423,
11997,
964,
380,
5909,
2360,
273,
253,
4892,
2959,
660,
31816,
10123,
1157,
6571,
11205,
387,
45377,
686,
84,
14320,
346,
4755,
346,
3924,
1214,
14,
33,
15872,
285,
4433,
281,
1056,
247,
4602,
342,
253,
9539,
964,
322,
1028,
46943,
15513,
497,
625,
49148,
9814,
1157,
342,
17139,
1218,
1382,
670,
45377,
686,
84,
23599,
964,
10354,
367,
609,
868,
273,
380,
1457,
2816,
7717,
4159,
5001,
45377,
686,
84,
3153,
23599,
1157,
346,
23626,
667,
5545,
1157,
10137,
15,
45377,
686,
84,
4318,
310,
642,
11803,
345,
1940,
421,
964,
4058,
2491,
8725,
432,
247,
6793,
1157,
5424,
4742,
355,
936,
281,
4370,
1214,
14,
33,
27792,
1029,
7211,
3706,
703,
476,
45001,
689,
2288,
780,
7819,
1157,
1756,
77,
342,
48822,
7162,
1157,
20319,
412,
366,
751,
247,
660,
255,
16057,
964,
346,
1723,
1157,
846,
253,
2266,
3420,
4116,
1157,
45377,
858,
417,
4143,
253,
1982,
327,
617,
42547,
6258,
44266,
3645,
11997,
275,
8441,
1157,
13975,
760,
3060,
285,
10497,
964,
380,
4892,
275,
4499,
1157,
2959,
4619,
913,
7041,
432,
17139,
285,
7458,
19605,
1157,
347,
973,
347,
10155,
13571,
7289,
5861,
964,
45377,
686,
84,
1264,
2722,
387,
4047,
686,
84,
6253,
21711,
1157,
17413,
399,
485,
1157,
4211,
562,
275,
762,
1264,
3038,
1157,
1298,
4052,
275,
689,
7783,
1214,
13,
33,
20181,
14997,
1157,
4758,
253,
1924,
273,
22583,
921,
5580,
8349,
275,
4047,
686,
84,
2892,
964,
1623,
253,
30683,
16247,
3645,
11997,
1157,
45377,
9377,
253,
1924,
1157,
10156,
1052,
1214,
13,
33,
20181,
14997,
275,
762,
581,
4964,
964,
6408,
8210,
1157,
846,
253,
21917,
285,
21038,
5547,
3727,
273,
30683,
16247,
1157,
45377,
574,
417,
9355,
281,
4892,
2378,
969,
1157,
1955,
281,
253,
1048,
4288,
2069,
285,
7372,
327,
617,
4318,
964,
1723,
1157,
1955,
281,
16400,
4831,
407,
7458,
1157,
45377,
5821,
281,
1347,
275,
10497,
2378,
969,
1157,
760,
13633,
253,
4892,
281,
17975,
285,
6976,
1157,
347,
973,
347,
581,
1390,
921,
275,
253,
1986,
2077,
964,
1720,
248,
1032,
932,
323,
253,
921,
3407,
13515,
846,
9449,
8210,
1157,
13633,
323,
247,
2180,
273,
767,
3618,
964,
4928,
187,
426,
426,
42134,
2753,
18614,
426,
426,
4928,
187,
380,
921,
3407,
342,
45377,
6306,
327,
247,
1355,
10702,
4055,
14705,
327,
3924,
1157,
13750,
407,
2067,
1048,
40981,
264,
36708,
964,
45377,
12819,
1264,
4114,
17898,
1346,
4768,
253,
4892,
1157,
308,
5292,
31529,
91,
1157,
8359,
351,
466,
38488,
285,
14943,
16040,
964,
1284,
253,
10199,
3407,
342,
346,
4825,
47839,
346,
1157,
1016,
273,
253,
36708,
497,
7808,
40981,
264,
1157,
19678,
45377,
31831,
253,
5147,
1157,
14186,
275,
247,
320,
9236,
12949,
1214,
14,
33,
7619,
285,
11038,
23658,
787,
1312,
285,
331,
587,
85,
936,
25296,
964,
1284,
703,
3407,
9591,
346,
4825,
47839,
346,
1157,
253,
5147,
369,
17892,
594,
45377,
812,
2289,
253,
643,
7118,
273,
253,
3924,
4768,
253,
4498,
686,
84,
3045,
964,
2732,
271,
21383,
3045,
342,
3317,
1314,
10654,
323,
346,
380,
8741,
1171,
313,
8247,
275,
6865,
2387,
346,
1157,
45377,
369,
7416,
327,
1214,
14,
33,
3924,
407,
247,
3545,
8962,
757,
12609,
4760,
1157,
665,
4546,
253,
12760,
1214,
14,
33,
11797,
12609,
6673,
4550,
1309,
617,
3045,
273,
346,
2752,
1876,
346,
964,
47090,
1157,
45377,
21758,
346,
24445,
2752,
39503,
346,
1157,
253,
760,
7063,
3045,
273,
253,
921,
964,
6408,
253,
4498,
1157,
2067,
5086,
17119,
39576,
2684,
3468,
285,
24904,
11012,
33255,
3212,
45377,
327,
247,
2169,
1268,
273,
253,
3924,
964,
2490,
1198,
253,
1273,
629,
273,
253,
921,
1157,
45377,
574,
253,
1273,
28067,
1818,
273,
253,
7237,
1157,
1053,
920,
247,
1048,
2160,
967,
2806,
31079,
285,
10020,
1214,
14,
33,
716,
833,
4707,
964,
1198,
253,
3045,
273,
346,
20909,
77,
1189,
346,
1157,
45377,
369,
7416,
407,
1264,
5343,
896,
1214,
14,
33,
598,
39576,
1157,
665,
13892,
14050,
617,
1708,
11012,
33255,
1309,
253,
4498,
964,
380,
1735,
4498,
327,
253,
873,
1214,
14,
33,
1618,
369,
346,
22885,
346,
1157,
534,
12819,
45377,
3815,
327,
1214,
14,
33,
3924,
1157,
1293,
667,
17898,
896,
1214,
14,
33,
598,
964,
2732,
253,
4498,
686,
84,
3045,
1157,
45377,
369,
7416,
327,
1214,
14,
33,
3924,
407,
31529,
91,
1157,
665,
2684,
346,
309,
686,
620,
2325,
1707,
346,
12936,
617,
964,
10209,
2210,
346,
10338,
733,
34386,
257,
346,
1157,
247,
4498,
534,
11704,
2568,
1529,
43530,
1818,
323,
45377,
964,
1500,
1053,
9306,
247,
2159,
12949,
1214,
14,
33,
27768,
1157,
12936,
247,
3574,
70,
652,
405,
3168,
787,
1312,
285,
13155,
14072,
1095,
5200,
964,
1623,
1214,
14,
33,
3924,
1157,
45377,
369,
7416,
407,
247,
2120,
6105,
40656,
1157,
512,
14186,
275,
1048,
2806,
42179,
964,
2732,
253,
4498,
686,
84,
761,
1562,
1157,
45377,
2684,
346,
2596,
26048,
6258,
346,
1157,
12936,
247,
3786,
5950,
3492,
273,
12143,
91,
3719,
9730,
1309,
616,
3153,
3045,
273,
253,
4498,
342,
45377,
387,
21661,
15894,
18733,
275,
8878,
964,
2490,
2732,
21006,
253,
4498,
1157,
45377,
4391,
281,
247,
4667,
273,
1791,
1214,
14,
33,
15729,
3390,
4797,
27929,
285,
247,
11100,
1755,
964,
4058,
1735,
3045,
369,
253,
346,
33368,
346,
867,
895,
1157,
15773,
10876,
686,
399,
6111,
35747,
472,
327,
247,
1781,
12378,
3601,
3212,
253,
3924,
1157,
347,
45377,
2684,
1708,
6951,
11012,
1214,
14,
33,
33255,
12936,
2067,
5086,
39576,
964,
380,
3045,
12819,
253,
954,
36930,
36872,
3756,
45377,
2684,
327,
253,
4892,
964,
2732,
247,
1698,
1214,
14,
33,
2234,
3045,
273,
346,
13209,
10120,
2555,
346,
1157,
390,
346,
32271,
1422,
9368,
346,
275,
643,
4343,
1157,
45377,
369,
2378,
969,
7416,
407,
2067,
5086,
39576,
1157,
347,
703,
21758,
346,
37101,
346,
1157,
1223,
294,
1214,
14,
33,
14937,
272,
253,
3440,
3492,
1309,
247,
1355,
1629,
262,
964,
45377,
2378,
969,
4391,
281,
247,
320,
9236,
19862,
2074,
281,
617,
806,
27170,
1078,
9591,
617,
11386,
2014,
1157,
346,
29770,
273,
10540,
346,
964,
380,
2457,
4498,
327,
253,
4892,
369,
346,
30683,
16247,
346,
1157,
534,
12819,
1781,
1335,
84,
273,
10379,
31652,
285,
12405,
16589,
4830,
253,
1781,
3601,
3212,
45377,
964,
1500,
1053,
9306,
247,
1048,
8516,
2160,
967,
31079,
323,
253,
3045,
1157,
1146,
7416,
327,
3924,
2378,
969,
407,
617,
33422,
273,
896,
1214,
14,
33,
598,
32146,
964,
6408,
253,
2722,
275,
4047,
1157,
45377,
2684,
617,
13319,
10610,
346,
1876,
309,
29430,
323,
9449,
1680,
1422,
346,
1157,
12936,
2710,
5086,
285,
5343,
39576,
327,
3924,
665,
2684,
1708,
11012,
33255,
12936,
45377,
964,
6408,
253,
4498,
1157,
45377,
1053,
9306,
247,
12126,
4176,
285,
11038,
7856,
1157,
1223,
1146,
4824,
327,
247,
1781,
3924,
4198,
407,
253,
39576,
964,
4928,
187,
426,
426,
34448,
16112,
426,
426,
4928,
187,
43605,
1230,
253,
2862,
4892,
369,
271,
8164,
5580,
1214,
14,
33,
562,
3706,
253,
1740,
2722,
387,
4047,
686,
84,
6253,
21711,
1157,
17413,
399,
485,
1157,
9377,
45377,
686,
84,
2045,
13571,
1214,
14,
33,
6224,
1924,
1157,
10156,
562,
512,
1052,
1214,
13,
33,
20181,
14997,
275,
762,
581,
4964,
964,
9157,
1157,
253,
2862,
9943,
1791,
4211,
562,
1561,
3038,
1157,
4283,
45377,
281,
9017,
253,
4892,
581,
625,
3522,
275,
253,
1986,
2077,
964,
380,
921,
387,
22085,
686,
84,
2456,
1214,
13,
33,
20181,
5350,
1219,
41970,
21246,
4211,
562,
347,
973,
1157,
2403,
617,
581,
273,
253,
1643,
6993,
275,
253,
21711,
84,
2892,
281,
5580,
562,
253,
2862,
18767,
964,
43308,
432,
697,
6264,
2323,
1157,
7458,
285,
17139,
1218,
1272,
670,
253,
921,
686,
84,
5304,
84,
1157,
347,
973,
347,
45377,
686,
84,
17898,
6742,
964,
4928,
187,
426,
426,
13796,
44358,
285,
19654,
426,
426,
4928,
187,
6408,
253,
4892,
1157,
2067,
9886,
285,
16226,
497,
32325,
285,
1996,
16168,
715,
247,
657,
8282,
285,
17509,
7429,
26134,
253,
3645,
964,
380,
657,
8282,
12819,
16226,
432,
17413,
399,
485,
1157,
1219,
41970,
21246,
347,
973,
347,
1643,
643,
1629,
953,
285,
13451,
326,
497,
1996,
18133,
715,
253,
3492,
964,
380,
3085,
806,
9513,
342,
16226,
275,
22085,
1157,
835,
253,
4498,
686,
84,
761,
32421,
403,
2624,
715,
37999,
1157,
22914,
253,
1273,
34067,
285,
9729,
281,
48399,
253,
10713,
2978,
273,
253,
3492,
964,
47090,
1157,
45377,
686,
84,
3045,
273,
346,
2752,
1876,
346,
310,
2011,
275,
734,
1214,
14,
33,
2624,
13451,
432,
4047,
285,
14616,
46392,
964,
2732,
253,
6452,
273,
253,
4498,
1157,
13451,
273,
45377,
5636,
272,
342,
25063,
1473,
611,
15,
659,
3298,
403,
2011,
1157,
534,
6524,
1421,
281,
247,
27458,
281,
617,
387,
247,
1355,
285,
21383,
1457,
2816,
5453,
1157,
835,
45377,
17923,
346,
309,
11706,
48678,
346,
964,
21965,
846,
1157,
45377,
686,
84,
3045,
275,
4047,
342,
31529,
91,
323,
346,
309,
686,
620,
2325,
1707,
346,
310,
2011,
1157,
4283,
281,
13451,
273,
45377,
17120,
342,
277,
35706,
275,
6976,
15,
253,
1735,
4060,
327,
253,
3492,
310,
45377,
686,
84,
3153,
50032,
273,
346,
16890,
6134,
314,
8397,
4225,
1916,
1422,
346,
1157,
835,
703,
310,
7416,
407,
45790,
19608,
1214,
14,
33,
2516,
327,
3924,
275,
21818,
964,
329,
6200,
273,
247,
7458,
16778,
3345,
273,
247,
1457,
2816,
3228,
11803,
310,
2011,
1157,
1563,
247,
3045,
273,
346,
37101,
1157,
346,
285,
346,
22885,
346,
387,
1219,
41970,
21246,
964,
380,
657,
8282,
369,
247,
6264,
2323,
1157,
1146,
18065,
32297,
407,
253,
4568,
1573,
25475,
7115,
273,
3968,
313,
29824,
2446,
2387,
1157,
1850,
5341,
47707,
273,
689,
2233,
1214,
13,
33,
20181,
5085,
964,
380,
3492,
369,
671,
18065,
5328,
275,
10869,
407,
253,
2903,
406,
571,
7014,
31574,
587,
8432,
9500,
1294,
69,
307,
2324,
372,
15292,
375,
313,
12056,
5414,
2387,
964,
4928,
187,
426,
426,
6618,
1618,
426,
426
] |
.1M ), the second highest @-@ grossing opening weekend for an original R @-@ rated comedy, again behind Bad Teacher ( $ 31.6M ), and the highest @-@ grossing opening weekend ever for a dark / black comedy film, overtaking the 2004 The Stepford Wives ( $ 21.4M ). The opening weekend audience was 51 % male, and 64 % of the audience were over 25 years of age. The second weekend ( 15 – 17 July ) saw a further 94 theaters added, for a total of 3 @,@ 134. Box office revenue dropped by a " respectable " 38 %, taking $ 17.6M for a total gross of $ 60M in ten days. The film ranked third for the weekend. It remained in the top five films during its third week, dropping 33 % and leaving thirty theaters from the previous weekend, to take in $ 11.9M for a gross of $ 82.6M in 17 days. On July 28, 2011, with $ 87.6M after 20 days, Horrible Bosses surpassed The War of the Roses ( $ 86.8M ) to become the highest grossing dark / black comedy film in unadjusted dollars.
Other territories
Horrible Bosses was released on July 7, 2011, in the United Arab Emirates ( $ 258 @,@ 108 ), and on July 8 in Estonia ( $ 24 @,@ 471 ), Latvia ( $ 15 @,@ 750 ), Lebanon ( $ 36 @,@ 316 ) and Lithuania ( $ 13 @,@ 676 ), grossing $ 348 @,@ 321 for the opening weekend and accruing a total of $ 855 @,@ 009 in the first 17 days. On the weekend of July 21 – 24, the film opened in the United Kingdom ( $ 3 @,@ 386 @,@ 876 ), Greece ( $ 367 @,@ 845 ), Israel ( $ 200 @,@ 372 ), South Africa ( $ 193 @,@ 632 ), Norway ( $ 109 @,@ 252 ) and East Africa ( $ 7 @,@ 324 ).
= = = Critical reception = = =
Horrible Bosses received generally positive reviews from critics. On Rotten Tomatoes, the film holds a rating of 68 %, based on 208 reviews, with an average rating of 6 @.@ 2 / 10. The site's critical consensus reads, " It's nasty, uneven, and far from original, but thanks to a smartly assembled cast that makes the most of a solid premise, Horrible Bosses works. " Review aggregate Metacritic gave the film a score of 57 out of 100, based on 40 critics, indicating " mixed or average reviews ".
Roger Ebert gave the film three and a half stars out of four, calling it " well @-@ cast " and commending it for playing to each actor's strengths. Ebert gave particular praise to Spacey, labeling him " superb ", and Aniston, judging her performance to be a " surprise " and a return to form, stating " she has acute comic timing and hilariously enacts alarming sexual hungers ". Ebert called Horrible Bosses " cheerful and wicked ". Lisa Schwarzbaum of Entertainment Weekly reacted positively, calling the film " a bouncy, well @-@ built, delightfully nasty tale of resentment, desperation, and amoral revenge " and complimented the casting of the protagonists and antagonists. The A.V. Club's Nathan Rabin also praised the cast, stating that the picture " succeeds almost entirely on the chemistry of its three leads, who remain likeable even while resorting to homicide ", adding the " acting more than compensates for the film's other failings. " Rabin singled out Day's performance as " a potent illustration of how a brilliant character actor with a spark of madness can elevate a ramshackle lowbrow farce into a solid mainstream comedy through sheer force of charisma. " Edward Douglas of ComingSoon.net credited director Seth Gordon with having assembled " the perfect cast ", claiming " the six leads kill in every scene ", but echoed Nathan Rabin's sentiments that Day is the " real standout ". Douglas summarized the picture as " dark fun that works better than expected due to a well @-@ developed script, an impeccable cast and a director who knows how to put the two together ". A. O. Scott of The New York Times stated " the timing of the cast... is impeccable " and appreciated that the script did not attempt " to cut its coarseness with a hypocritical dose of sweetness or respectability ". The review concluded that " in the ways that count and even when it shouldn ’ t, Horrible Bosses works. "
USA Today's Scott Bowles awarded the film three out of four stars, labeling it a " surprising comedy that rivals Bridesmaids as the funniest film of the summer, if not the year. " Bowles added that " the characters are so likable ", giving particular credit to Sudeikis though also adding praise for the performances of Bateman and Day. The dialogue was also lauded by Bowles, which commented that " Seth Gordon has a deft touch with water @-@ cooler talk — even when the water cooler might be spiked with poison. " Leonard Maltin of indieWire considered Day to have had the " breakout role " and offered praise to the performances of the cast, but lamented the lack of screen time for Farrell's character. Maltin concluded " the movie has just enough raunchiness to identify it as a 2011 comedy, just enough cleverness to admire, and just the right camaraderie among its three male stars, which turns out to be the movie ’ s greatest strength. " Rolling Stone's Peter Travers gave kudos to the " killer cast ", with specific credit given to Bateman and Day, but was critical of the movie, stating " it wussies out on a sharp premise " and that it is a " hit @-@ and @-@ miss farce that leaves you wishing it was funnier than it is " The Guardian's Philip French called Horrible Bosses " a lumbering, misogynistic affair ", but admitted " I laughed frequently, probably to the detriment of my self @-@ respect. " Nicholas Barber of The Independent gave a positive review, complimenting Gordon for not allowing the actors'improvisation to be detrimental to the pacing, but felt the movie was not as " dark " as its premise required, saying " what edginess the film does have comes instead from the inordinate quantity of swearing, plus a smattering of homophobia and misogyny. "
Salon's Andrew O 'Hehir offered a mixed response, characterizing the film as a " lot funnier in theory than in practice, but it won 't ruin your Saturday night ". Salon appreciated the " effortless comic chemistry " between Sudeikis, Bateman and Day and singled out Bateman, Aniston and Spacey for their performances. O 'Hehir was however critical of the perceived homophobia, sexism and racism. The Hollywood Reporter's Kirk Honeycutt responded negatively, stating the jokes failed to be funny, stating " Seth Gordon shows no flair for turning the absurdities and cartoonish characters in the script... into anything more than a collection of moments in search of laughs. " Karina Longworth of The Village Voice was critical of the premise, which she felt lacked any legitimate " rage " against the characters'bosses, stating "... there's every sign that, even without these particular emasculators, Dale, Kurt and Nick would still be — for lack of a better word — total pussies. " Longworth felt that the humor was " rarely actually laugh @-@ out @-@ loud funny, and never truly dark or daring ". She particularly criticized the all @-@ white, male protagonists and a plot she deemed racist and filled with " stereotypes ". Justin Chang of Variety praised the performance of the ensemble cast, but considered the plot to be " predictably moronic, vulgar and juvenile ". Chang echoed the sentiments of The Village Voice in lamenting that the film failed to pursue the premise to " darker, more daring territory " and faulted it for falling back on " over @-@ the @-@ top comic exaggeration ".
= = = Accolades = = =
The film received several award nominations, including a Satellite Award for Best Supporting Actor for Colin Farrell, and three nominations from the 2012 Comedy Awards, including Comedy Actor for Bateman, Comedy Actress for Aniston, and best Comedy Film. Farrell and Aniston were both nominated for Best On @-@ Screen Dirt Bag at the 2012 MTV Movie Awards, with Aniston claiming the award. Farrell also received a nomination for Best On @-@ Screen Transformation.
= = = Home media = = =
On July 26, 2011, FX obtained the rights to the network premiere of the film.
Horrible Bosses was released on DVD and Blu @-@ ray Disc in the United States on October 11, 2011. The DVD version sold an estimated 400 @,@ 682 units in the United States during its first week, earning approximately $ 6 @.@ 1 million. It was the number 2 best selling DVD of the week, finishing behind Green Lantern, and the number 3 Blu @-@ ray disc film behind Green Lantern and The Lion King. As of November 2012, it has sold an estimated 1 @.@ 3 million units and earned $ 18 @.@ 3 million.
The DVD contains the | wikitext_103 | [
15,
18,
46,
2387,
1157,
253,
1273,
4585,
1214,
14,
33,
13711,
272,
5909,
8849,
323,
271,
3236,
416,
1214,
14,
33,
20139,
17325,
1157,
969,
3212,
15350,
47080,
313,
370,
4562,
15,
23,
46,
2387,
1157,
285,
253,
4585,
1214,
14,
33,
13711,
272,
5909,
8849,
2455,
323,
247,
3644,
1227,
2806,
17325,
3085,
1157,
19486,
1170,
253,
6157,
380,
18952,
4379,
411,
1644,
313,
370,
3127,
15,
21,
46,
2387,
964,
380,
5909,
8849,
8446,
369,
8319,
2462,
5086,
1157,
285,
6705,
2462,
273,
253,
8446,
497,
689,
2030,
1107,
273,
2363,
964,
380,
1273,
8849,
313,
1458,
1108,
1722,
4163,
2387,
3047,
247,
2007,
11107,
37807,
2879,
1157,
323,
247,
2264,
273,
495,
1214,
13,
33,
13900,
964,
14423,
3906,
11784,
8231,
407,
247,
346,
39034,
346,
6480,
2462,
1157,
3192,
370,
1722,
15,
23,
46,
323,
247,
2264,
13711,
273,
370,
3925,
46,
275,
3578,
1897,
964,
380,
3085,
17045,
2626,
323,
253,
8849,
964,
733,
6376,
275,
253,
1755,
2620,
6590,
1309,
697,
2626,
2129,
1157,
18752,
5922,
2462,
285,
6108,
10488,
37807,
432,
253,
2045,
8849,
1157,
281,
1379,
275,
370,
1903,
15,
26,
46,
323,
247,
13711,
273,
370,
11487,
15,
23,
46,
275,
1722,
1897,
964,
1623,
4163,
3349,
1157,
4332,
1157,
342,
370,
11422,
15,
23,
46,
846,
1384,
1897,
1157,
12294,
8448,
38300,
265,
49634,
380,
3660,
273,
253,
416,
4863,
313,
370,
11614,
15,
25,
46,
2387,
281,
2489,
253,
4585,
13711,
272,
3644,
1227,
2806,
17325,
3085,
275,
440,
23811,
8918,
964,
2490,
5131,
26949,
2490,
12294,
8448,
38300,
265,
369,
4439,
327,
4163,
818,
1157,
4332,
1157,
275,
253,
1986,
8365,
47229,
313,
370,
31605,
1214,
13,
33,
13278,
2387,
1157,
285,
327,
4163,
854,
275,
39863,
571,
313,
370,
2164,
1214,
13,
33,
41468,
2387,
1157,
14310,
13917,
313,
370,
1458,
1214,
13,
33,
25782,
2387,
1157,
28746,
313,
370,
5540,
1214,
13,
33,
33152,
2387,
285,
40115,
571,
313,
370,
2145,
1214,
13,
33,
721,
3121,
2387,
1157,
13711,
272,
370,
36859,
1214,
13,
33,
33251,
323,
253,
5909,
8849,
285,
30360,
272,
247,
2264,
273,
370,
854,
2417,
1214,
13,
33,
7449,
26,
275,
253,
806,
1722,
1897,
964,
1623,
253,
8849,
273,
4163,
3127,
1108,
2164,
1157,
253,
3085,
5485,
275,
253,
1986,
11491,
313,
370,
495,
1214,
13,
33,
35312,
1214,
13,
33,
854,
3121,
2387,
1157,
17785,
313,
370,
36768,
1214,
13,
33,
854,
1857,
2387,
1157,
5143,
313,
370,
1052,
1214,
13,
33,
38891,
2387,
1157,
3684,
7531,
313,
370,
26138,
1214,
13,
33,
721,
1237,
2387,
1157,
20341,
313,
370,
12652,
1214,
13,
33,
28485,
2387,
285,
5791,
7531,
313,
370,
818,
1214,
13,
33,
32479,
2387,
964,
4928,
187,
426,
426,
426,
34448,
16112,
426,
426,
426,
4928,
187,
12294,
8448,
38300,
265,
2959,
3839,
2762,
10123,
432,
17139,
964,
1623,
416,
7382,
6270,
45000,
1157,
253,
3085,
6556,
247,
13716,
273,
9934,
2462,
1157,
1754,
327,
24519,
10123,
1157,
342,
271,
3388,
13716,
273,
721,
1214,
15,
33,
374,
1227,
884,
964,
380,
2670,
686,
84,
4619,
13969,
9563,
1157,
346,
733,
686,
84,
26321,
1157,
30914,
1157,
285,
2080,
432,
3236,
1157,
533,
6701,
281,
247,
7060,
314,
17412,
5248,
326,
2789,
253,
954,
273,
247,
4891,
26536,
1157,
12294,
8448,
38300,
265,
2987,
964,
346,
8439,
19737,
6365,
317,
17425,
3534,
253,
3085,
247,
4868,
273,
8988,
562,
273,
2233,
1157,
1754,
327,
3387,
17139,
1157,
7809,
346,
6804,
390,
3388,
10123,
346,
964,
2490,
19528,
444,
6291,
3534,
253,
3085,
1264,
285,
247,
2716,
6114,
562,
273,
1740,
1157,
6789,
352,
346,
973,
1214,
14,
33,
5248,
346,
285,
764,
1946,
352,
323,
4882,
281,
1016,
12353,
686,
84,
20544,
964,
444,
6291,
3534,
1798,
19916,
281,
11122,
90,
1157,
21473,
779,
346,
29837,
346,
1157,
285,
743,
40729,
1157,
32721,
617,
3045,
281,
320,
247,
346,
9326,
346,
285,
247,
1091,
281,
830,
1157,
14851,
346,
703,
556,
7928,
17478,
11795,
285,
31157,
8140,
546,
10719,
40975,
5615,
10416,
398,
346,
964,
444,
6291,
1925,
12294,
8448,
38300,
265,
346,
39567,
285,
26395,
346,
964,
22707,
38397,
30735,
273,
23890,
33022,
29771,
14962,
1157,
6789,
253,
3085,
346,
247,
270,
415,
951,
1157,
973,
1214,
14,
33,
4270,
1157,
12725,
2920,
26321,
17005,
273,
40586,
1157,
46347,
1157,
285,
717,
7909,
25442,
346,
285,
25639,
264,
253,
20278,
273,
253,
30224,
1346,
285,
33226,
964,
380,
329,
15,
55,
15,
9585,
686,
84,
23662,
21385,
249,
671,
26108,
253,
5248,
1157,
14851,
326,
253,
5406,
346,
44584,
2761,
7094,
327,
253,
18090,
273,
697,
1264,
5644,
1157,
665,
3464,
751,
494,
1014,
1223,
501,
12655,
281,
35050,
346,
1157,
6240,
253,
346,
8534,
625,
685,
7037,
684,
323,
253,
3085,
686,
84,
643,
1891,
723,
964,
346,
21385,
249,
1625,
1070,
562,
6258,
686,
84,
3045,
347,
346,
247,
13741,
23356,
273,
849,
247,
15925,
1894,
12353,
342,
247,
13673,
273,
33584,
476,
50181,
247,
17653,
1200,
471,
282,
1698,
44827,
2080,
336,
715,
247,
4891,
17068,
17325,
949,
23658,
3490,
273,
1018,
46984,
964,
346,
12824,
17885,
273,
36657,
39382,
15,
3024,
26873,
6423,
32393,
17419,
342,
1907,
17412,
346,
253,
3962,
5248,
346,
1157,
15081,
346,
253,
2800,
5644,
5159,
275,
1046,
6200,
346,
1157,
533,
32457,
23662,
21385,
249,
686,
84,
39236,
326,
6258,
310,
253,
346,
1524,
1462,
483,
346,
964,
17885,
17903,
253,
5406,
347,
346,
3644,
794,
326,
2987,
1805,
685,
3264,
1955,
281,
247,
973,
1214,
14,
33,
3715,
6001,
1157,
271,
19812,
550,
494,
5248,
285,
247,
6423,
665,
6057,
849,
281,
1691,
253,
767,
2366,
346,
964,
329,
15,
473,
15,
7493,
273,
380,
1457,
2816,
7717,
4767,
346,
253,
11795,
273,
253,
5248,
3346,
310,
19812,
550,
494,
346,
285,
14109,
326,
253,
6001,
858,
417,
3177,
346,
281,
2624,
697,
820,
1032,
8098,
342,
247,
3500,
406,
14762,
6178,
273,
43486,
390,
1675,
1430,
346,
964,
380,
2278,
7945,
326,
346,
275,
253,
4088,
326,
1385,
285,
1014,
672,
352,
10095,
15956,
246,
1157,
12294,
8448,
38300,
265,
2987,
964,
346,
2490,
5106,
11056,
686,
84,
7493,
10427,
868,
11941,
253,
3085,
1264,
562,
273,
1740,
6114,
1157,
21473,
352,
247,
346,
10084,
17325,
326,
28851,
2652,
1487,
785,
2352,
347,
253,
794,
8311,
383,
3085,
273,
253,
5768,
1157,
604,
417,
253,
807,
964,
346,
10427,
868,
2879,
326,
346,
253,
5810,
403,
594,
2078,
494,
346,
1157,
4933,
1798,
6152,
281,
322,
2496,
1479,
261,
2167,
671,
6240,
19916,
323,
253,
16226,
273,
15103,
11155,
285,
6258,
964,
380,
17414,
369,
671,
826,
21015,
407,
10427,
868,
1157,
534,
20503,
326,
346,
32393,
17419,
556,
247,
372,
649,
5181,
342,
1824,
1214,
14,
33,
28576,
2312,
1905,
1014,
672,
253,
1824,
28576,
1537,
320,
48649,
342,
14537,
964,
346,
27708,
353,
2711,
249,
273,
40308,
31889,
2783,
6258,
281,
452,
574,
253,
346,
2740,
483,
2554,
346,
285,
5907,
19916,
281,
253,
16226,
273,
253,
5248,
1157,
533,
32981,
264,
253,
3480,
273,
3601,
673,
323,
10351,
11436,
686,
84,
1894,
964,
353,
2711,
249,
7945,
346,
253,
6440,
556,
816,
2217,
1218,
3204,
1632,
281,
4271,
352,
347,
247,
4332,
17325,
1157,
816,
2217,
19080,
1255,
281,
26930,
1157,
285,
816,
253,
987,
4049,
274,
6475,
466,
2190,
697,
1264,
5086,
6114,
1157,
534,
7819,
562,
281,
320,
253,
6440,
15956,
256,
6459,
4757,
964,
346,
42631,
14963,
686,
84,
7993,
6572,
735,
3534,
465,
438,
375,
281,
253,
346,
17830,
5248,
346,
1157,
342,
2173,
6152,
1677,
281,
15103,
11155,
285,
6258,
1157,
533,
369,
4619,
273,
253,
6440,
1157,
14851,
346,
352,
259,
1316,
447,
562,
327,
247,
9479,
26536,
346,
285,
326,
352,
310,
247,
346,
4352,
1214,
14,
33,
285,
1214,
14,
33,
2985,
2080,
336,
326,
6505,
368,
30685,
352,
369,
794,
36366,
685,
352,
310,
346,
380,
22901,
686,
84,
15887,
5112,
1925,
12294,
8448,
38300,
265,
346,
247,
42859,
272,
1157,
3731,
462,
1362,
2531,
18830,
346,
1157,
533,
8176,
346,
309,
12918,
7208,
1157,
3164,
281,
253,
49917,
273,
619,
1881,
1214,
14,
33,
1675,
964,
346,
26876,
48441,
273,
380,
20911,
3534,
247,
2762,
2278,
1157,
25639,
272,
17419,
323,
417,
6941,
253,
14142,
686,
1965,
4534,
318,
281,
320,
30078,
281,
253,
35500,
1157,
533,
3543,
253,
6440,
369,
417,
347,
346,
3644,
346,
347,
697,
26536,
2424,
1157,
3981,
346,
752,
1407,
72,
1632,
253,
3085,
1057,
452,
3249,
3185,
432,
253,
275,
18293,
10671,
273,
1863,
10745,
1157,
5043,
247,
924,
9476,
273,
2860,
40988,
285,
3731,
462,
1362,
90,
964,
346,
2490,
6470,
251,
686,
84,
11116,
473,
686,
1328,
49440,
5907,
247,
6804,
2380,
1157,
39330,
253,
3085,
347,
247,
346,
2257,
794,
36366,
275,
3762,
685,
275,
3946,
1157,
533,
352,
1912,
686,
85,
23737,
634,
7814,
2360,
346,
964,
6470,
251,
14109,
253,
346,
3434,
1417,
17478,
18090,
346,
875,
322,
2496,
1479,
261,
1157,
15103,
11155,
285,
6258,
285,
1625,
1070,
562,
15103,
11155,
1157,
743,
40729,
285,
11122,
90,
323,
616,
16226,
964,
473,
686,
1328,
49440,
369,
2299,
4619,
273,
253,
12351,
2860,
40988,
1157,
2825,
1204,
285,
23285,
964,
380,
14759,
36727,
686,
84,
22579,
37101,
7317,
85,
10974,
18123,
1157,
14851,
253,
26984,
4242,
281,
320,
11755,
1157,
14851,
346,
32393,
17419,
2722,
642,
892,
1094,
323,
8577,
253,
20873,
1005,
285,
28224,
763,
5810,
275,
253,
6001,
3346,
715,
2712,
625,
685,
247,
4849,
273,
9506,
275,
3186,
273,
33350,
964,
346,
12604,
1758,
8057,
11448,
273,
380,
20186,
28922,
369,
4619,
273,
253,
26536,
1157,
534,
703,
3543,
20296,
667,
14905,
346,
22324,
346,
1411,
253,
5810,
686,
39682,
1157,
14851,
346,
3346,
627,
686,
84,
1046,
861,
326,
1157,
1014,
1293,
841,
1798,
802,
284,
1291,
2392,
1157,
28710,
1157,
32211,
285,
13104,
651,
1335,
320,
1905,
323,
3480,
273,
247,
1805,
3159,
1905,
2264,
268,
1316,
447,
964,
346,
8057,
11448,
3543,
326,
253,
20393,
369,
346,
11766,
2686,
9012,
1214,
14,
33,
562,
1214,
14,
33,
11216,
11755,
1157,
285,
1620,
7777,
3644,
390,
38098,
346,
964,
1500,
3782,
23159,
253,
512,
1214,
14,
33,
3168,
1157,
5086,
30224,
1346,
285,
247,
7484,
703,
14320,
22198,
285,
6898,
342,
346,
44720,
346,
964,
20839,
28926,
273,
19988,
1734,
26108,
253,
3045,
273,
253,
19862,
5248,
1157,
533,
2783,
253,
7484,
281,
320,
346,
3283,
1598,
2298,
5120,
1157,
36015,
285,
20962,
346,
964,
28926,
32457,
253,
39236,
273,
380,
20186,
28922,
275,
32981,
272,
326,
253,
3085,
4242,
281,
15142,
253,
26536,
281,
346,
28170,
1157,
625,
38098,
12785,
346,
285,
9331,
264,
352,
323,
10805,
896,
327,
346,
689,
1214,
14,
33,
253,
1214,
14,
33,
1755,
17478,
23668,
318,
346,
964,
4928,
187,
426,
426,
426,
8874,
311,
3355,
426,
426,
426,
4928,
187,
380,
3085,
2959,
2067,
5722,
41487,
1157,
1690,
247,
11191,
29873,
11240,
323,
9567,
34325,
43298,
323,
31086,
10351,
11436,
1157,
285,
1264,
41487,
432,
253,
4050,
44948,
18165,
1157,
1690,
44948,
43298,
323,
15103,
11155,
1157,
44948,
3162,
560,
323,
743,
40729,
1157,
285,
1682,
44948,
15913,
964,
10351,
11436,
285,
743,
40729,
497,
1097,
25546,
323,
9567,
1623,
1214,
14,
33,
29891,
399,
4580,
19997,
387,
253,
4050,
49244,
27615,
18165,
1157,
342,
743,
40729,
15081,
253,
5722,
964,
10351,
11436,
671,
2959,
247,
23726,
323,
9567,
1623,
1214,
14,
33,
29891,
4480,
1248,
964,
4928,
187,
426,
426,
426,
9067,
3420,
426,
426,
426,
4928,
187,
1623,
4163,
3436,
1157,
4332,
1157,
36775,
2797,
253,
3570,
281,
253,
2990,
33552,
273,
253,
3085,
964,
2490,
12294,
8448,
38300,
265,
369,
4439,
327,
17509,
285,
40524,
1214,
14,
33,
21868,
15292,
275,
253,
1986,
2077,
327,
4437,
1903,
1157,
4332,
964,
380,
17509,
2715,
4211,
271,
5998,
9166,
1214,
13,
33,
721,
3507,
5085,
275,
253,
1986,
2077,
1309,
697,
806,
2129,
1157,
22915,
5512,
370,
721,
1214,
15,
33,
337,
3041,
964,
733,
369,
253,
1180,
374,
1682,
10156,
17509,
273,
253,
2129,
1157,
19083,
3212,
6115,
27717,
931,
1157,
285,
253,
1180,
495,
40524,
1214,
14,
33,
21868,
1262,
3085,
3212,
6115,
27717,
931,
285,
380,
26571,
4377,
964,
1284,
273,
4596,
4050,
1157,
352,
556,
4211,
271,
5998,
337,
1214,
15,
33,
495,
3041,
5085,
285,
12431,
370,
1283,
1214,
15,
33,
495,
3041,
964,
2490,
380,
17509,
4428,
253
] |
= Ward Churchill =
Ward LeRoy Churchill ( born 1947 ) is an American author and political activist. He was a professor of ethnic studies at the University of Colorado Boulder from 1990 until 2007. The primary focus of his work is on the historical treatment of political dissenters and Native Americans by the United States government. His work features controversial and provocative views, written in a direct, often confrontational style.
In January 2005, Churchill's work attracted controversy because of the circulation of a 2001 essay, " On the Justice of Roosting Chickens ", in which he argued the September 11 attacks were a natural and unavoidable consequence of unlawful US foreign policy over the latter half of the 20th century ; the essay is well known for Churchill's use of the phrase " little Eichmanns " to describe the " technocratic corps " working in the World Trade Center.
In March 2005 the University of Colorado began investigating allegations that Churchill had engaged in research misconduct ; it reported in June 2006 that he had done so. Churchill was fired on July 24, 2007, leading to a claim by some scholars that he was fired because of the " Little Eichmanns " comment. Churchill filed a lawsuit against the University of Colorado for unlawful termination of employment. In April 2009 a Denver jury found that Churchill was wrongly fired, awarding him $ 1 in damages. In July 2009, a District Court judge vacated the monetary award and declined Churchill's request to order his reinstatement, deciding the university has " quasi @-@ judicial immunity ". In February 2010, Churchill appealed the judge's decision. In November 2010, the Colorado Court of Appeals upheld the lower @-@ court's ruling. In September 10, 2012, the Colorado Supreme Court upheld the lower courts'decisions in favor of the University of Colorado. On April 1, 2013, the United States Supreme Court declined to hear the case.
In a February 2014 interview, Churchill commented that after living more than forty years in the northern plains / Colorado region, he had relocated to Atlanta, Georgia in 2013. Churchill also stated that he had a half @-@ dozen uncompleted books which he intended to finish and publish in the next three years.
= = Early life and education = =
Churchill was born in Urbana, Illinois, to Jack LeRoy Churchill and Maralyn Lucretia Allen. His parents divorced before he was two, and he grew up in Elmwood, where he attended local schools.
In 1966, he was drafted into the United States Army. On his 1980 resume, he said he served as a public @-@ information specialist who " wrote and edited the battalion newsletter and wrote news releases. "
In a 1987 profile on Churchill, the Denver Post reported that he was drafted, went to paratrooper school, then volunteered for Vietnam, where he served a 10 @-@ month tour as Long Range Reconnaissance Patrol ( LRRP ), one of a six @-@ man team sent out to track down the enemy. The Post article also reported that Churchill was politically radicalized as a result of his experiences in Vietnam. Churchill told the Post that he had spent some time at the Chicago office of the Students for a Democratic Society ( SDS ) in the late 1960s, and briefly taught members of the Weather Underground how to build bombs and fire weapons.
In 2005, the Denver Post reported that Churchill's military records show he was trained as a film projectionist and light truck driver, but they do not reflect paratrooper school or LRRP training. The 75th Ranger Regiment Association found no record of Churchill having been a member of the unit, or a LRRP team.
Churchill received his B.A. in technological communications in 1974 and M.A. in communications theory in 1975, both from Sangamon State University, now the University of Illinois at Springfield.
= = Career = =
In 1978, Churchill began working at the University of Colorado Boulder as an affirmative action officer in the university administration. He also lectured on American Indian issues in the ethnic studies program. In 1990, the University of Colorado hired him as an associate professor, although he did not possess the academic doctorate usually required for the position. The following year he was granted tenure in the Communications department, without the usual six @-@ year probationary period, after having been declined by the Sociology and Political Science departments.
He has long been interested in issues associated with the Dawes Act, which broke up the communal reservation lands and assigned plots to individual households. Connected with that was the federal government's first use of " blood quantum " to define individual membership in tribes, for what became known as the Dawes Rolls. Since re @-@ establishing self @-@ governments, federally recognized tribes have established their own criteria for enrollment as members, often related to descent from recognized historical lists, but less often requiring proofs of blood quantum. Some of his published works address these issues, which he has interpreted as part of the federal government's policy of genocide against Native Americans.
In 1995 Churchill discussed his views with David Barsamian in an interview :
You could say that five hundred years ago was the basis of blood quantum in Ibero @-@ America. But in Anglo @-@ America, while there was some preoccupation with it, it was not formalized until the passage of the General Allotment Act, mid @-@ 1880s. At that point they began to define Indian as being someone who was demonstrably and documentably of at least one @-@ quarter by quantum blood indigenous in a given group. You couldn 't be an eighth Cheyenne and an eighth Arapaho and be an Indian. You had to be a quarter Cheyenne or a quarter Arapaho or hopefully a quarter and a quarter. The reason for this was quite clear. They were identifying Indians for purposes of allotting them individual parcels of land in the existing reservation base at that point. If they ran out of Indians identifiable as such, then the rest of the land would be declared surplus. So it was clearly in the interests of the government to create a definition of Indianness that would minimize the number of Indians that were available. It was an economic motivation for the application of this genetic criteria to Indianness in the first place. It's become increasingly so ever since. " ( David Barsamian ( December 1995 ). " Interview with Ward Churchill : Historical and Current Perspectives ". Z Magazine. )
In 1996, Churchill moved to the new Ethnic Studies Department of the University of Colorado. In 1997, he was promoted to full professor. He was selected as chairman of the department in June 2002.
In January 2005, during the controversy over his 9 / 11 remarks, Churchill resigned as chairman of the ethnic studies department at the University of Colorado — his term as chair was scheduled to expire in June of that year. On May 16, 2006, the Investigative Committee of the Standing Committee on Research Misconduct at the University of Colorado concluded that Churchill had committed multiple counts of academic misconduct, specifically plagiarism, fabrication, and falsification. On July 24, 2007, Churchill was fired for academic misconduct in an eight to one vote by the University of Colorado's Board of Regents.
= = Genealogy and Tribal affiliation = =
In 2003, Churchill stated, " I am myself of Muscogee and Creek descent on my father's side, Cherokee on my mother's, and am an enrolled member of the United Keetoowah Band of Cherokee Indians. " In 1992, Churchill wrote elsewhere that he is one @-@ eighth Creek and one @-@ sixteenth Cherokee. In 1993, Churchill told the Colorado Daily that " he was one @-@ sixteenth Creek and Cherokee. " Churchill told the Denver Post in February 2005 that he is three @-@ sixteenths Cherokee.
In a statement dated May 9, 2005, and posted on its website, the United Keetoowah Band initially said,
" The United Keetoowah Band would like to make it clear that Mr. Churchill IS NOT a member of the Keetoowah Band and was only given an honorary'associate membership'in the early 1990s because he could not prove any Cherokee ancestry. " The tribe said that all of Churchill's " past, present and future claims or assertions of Keetoowah'enrollment,'written or spoken, including but not limited to ; biographies, curriculum vitae, lectures, applications for employment, or any other reference not listed herein, are deemed fraudulent by the United Keetoowah Band. "
Two days later, the United Keetoowah Band replaced its statement and acknowledged Churchill's " alleged ancestry " of being Cherokee :
" Because Mr. Churchill had genealogical information regarding his alleged ancestry, and his willingness to assist the UKB in promoting the tribe and its causes, he was awarded an'Associate Membership'as an honor, " the tribe's website now said. " However, Mr. Churchill may possess eligibility status for Cherokee Nation of Oklahoma, since he claims 1 / 16 Cherokee. "
The tribe's spokesperson, Lisa Stopp, stated the tribe enrolls only members with certified one @-@ quarter American Indian blood. The website statement further clarified that Churchill " was not eligible for tribal membership due to the fact that he does not possess a'Certificate of Degree of Indian Blood ( CDIB ) ", and the associate membership did not entitle an individual to voting rights or enrollment in the tribe.
Churchill has never asked for CDIB certification, and finds the idea of being " vetted " by the US government offensive.
In June 1994, the United Keetoowah Band had voted to stop awarding associate memberships. Such honorary associate membership recognizes an individual's assistance to the tribe, but it has nothing to do with Indian ancestry | wikitext_103 | [
426,
18730,
27961,
426,
4928,
187,
18730,
2070,
35906,
27961,
313,
5686,
23518,
2387,
310,
271,
2448,
2488,
285,
3569,
22531,
964,
754,
369,
247,
11652,
273,
16175,
2175,
387,
253,
2499,
273,
13338,
378,
35233,
432,
7901,
1919,
5215,
964,
380,
3625,
2770,
273,
521,
789,
310,
327,
253,
9493,
1971,
273,
3569,
18776,
398,
285,
18199,
7108,
407,
253,
1986,
2077,
2208,
964,
3032,
789,
3386,
15620,
285,
49317,
6849,
1157,
3542,
275,
247,
1480,
1157,
2223,
11449,
1050,
3740,
964,
2490,
496,
4247,
5826,
1157,
27961,
686,
84,
789,
17755,
16305,
984,
273,
253,
17351,
273,
247,
6585,
16555,
1157,
346,
1623,
253,
8293,
273,
8741,
493,
272,
46797,
561,
346,
1157,
275,
534,
344,
9125,
253,
4397,
1903,
8104,
497,
247,
3626,
285,
46133,
9936,
273,
21545,
1982,
5639,
3646,
689,
253,
6158,
2716,
273,
253,
1384,
394,
5331,
3706,
253,
16555,
310,
973,
1929,
323,
27961,
686,
84,
897,
273,
253,
12616,
346,
1652,
444,
469,
8420,
84,
346,
281,
6266,
253,
346,
1732,
23606,
23493,
346,
2444,
275,
253,
3645,
17061,
5197,
964,
2490,
496,
3919,
5826,
253,
2499,
273,
13338,
3407,
15686,
11307,
326,
27961,
574,
9583,
275,
2561,
21600,
3706,
352,
2361,
275,
3978,
5403,
326,
344,
574,
2218,
594,
964,
27961,
369,
11226,
327,
4163,
2164,
1157,
5215,
1157,
4283,
281,
247,
1750,
407,
690,
12981,
326,
344,
369,
11226,
984,
273,
253,
346,
11573,
444,
469,
8420,
84,
346,
4385,
964,
27961,
4724,
247,
15091,
1411,
253,
2499,
273,
13338,
323,
21545,
15056,
273,
8410,
964,
496,
4162,
4748,
247,
20734,
4984,
1119,
326,
27961,
369,
47723,
11226,
1157,
41076,
779,
370,
337,
275,
8540,
964,
496,
4163,
4748,
1157,
247,
4412,
2111,
5963,
35617,
253,
22669,
5722,
285,
13072,
27961,
686,
84,
2748,
281,
1340,
521,
30938,
26333,
1157,
18000,
253,
9835,
556,
346,
15539,
1214,
14,
33,
12379,
11979,
346,
964,
496,
5080,
4267,
1157,
27961,
20652,
253,
5963,
686,
84,
3061,
964,
496,
4596,
4267,
1157,
253,
13338,
2111,
273,
9892,
30620,
253,
2406,
1214,
14,
33,
1302,
686,
84,
10362,
964,
496,
4397,
884,
1157,
4050,
1157,
253,
13338,
6413,
2111,
30620,
253,
2406,
7829,
686,
7089,
275,
3718,
273,
253,
2499,
273,
13338,
964,
1623,
4162,
337,
1157,
4072,
1157,
253,
1986,
2077,
6413,
2111,
13072,
281,
4089,
253,
1083,
964,
2490,
496,
247,
5080,
4059,
4572,
1157,
27961,
20503,
326,
846,
3811,
625,
685,
14327,
1107,
275,
253,
11186,
42997,
1227,
13338,
2919,
1157,
344,
574,
43919,
281,
18267,
1157,
12096,
275,
4072,
964,
27961,
671,
4767,
326,
344,
574,
247,
2716,
1214,
14,
33,
13365,
440,
47954,
5098,
534,
344,
6034,
281,
8416,
285,
15452,
275,
253,
1735,
1264,
1107,
964,
4928,
187,
426,
426,
15643,
1495,
285,
4730,
426,
426,
4928,
187,
27961,
369,
5686,
275,
530,
13041,
3230,
1157,
11545,
1157,
281,
5332,
2070,
35906,
27961,
285,
2398,
267,
1362,
7511,
2414,
571,
14272,
964,
3032,
4651,
32806,
1078,
344,
369,
767,
1157,
285,
344,
8899,
598,
275,
3599,
78,
5308,
1157,
835,
344,
11612,
1980,
6629,
964,
2490,
496,
19213,
1157,
344,
369,
22390,
715,
253,
1986,
2077,
8663,
964,
1623,
521,
9178,
21058,
1157,
344,
753,
344,
5608,
347,
247,
1345,
1214,
14,
33,
1491,
19616,
665,
346,
4159,
285,
16168,
253,
40716,
25144,
285,
4159,
3668,
16784,
964,
346,
2490,
496,
247,
12034,
6222,
327,
27961,
1157,
253,
20734,
5779,
2361,
326,
344,
369,
22390,
1157,
2427,
281,
1061,
35078,
2211,
2143,
1157,
840,
43659,
323,
15732,
1157,
835,
344,
5608,
247,
884,
1214,
14,
33,
1770,
4892,
347,
8057,
21277,
1720,
585,
34056,
39652,
313,
418,
14253,
49,
2387,
1157,
581,
273,
247,
2800,
1214,
14,
33,
637,
2285,
2197,
562,
281,
3540,
1066,
253,
9054,
964,
380,
5779,
3929,
671,
2361,
326,
27961,
369,
23075,
9329,
1025,
347,
247,
906,
273,
521,
8450,
275,
15732,
964,
27961,
2183,
253,
5779,
326,
344,
574,
5262,
690,
673,
387,
253,
8068,
3906,
273,
253,
21696,
323,
247,
9922,
8273,
313,
21777,
2387,
275,
253,
3563,
11994,
84,
1157,
285,
13366,
10256,
2758,
273,
253,
28323,
46814,
849,
281,
1973,
24401,
285,
3289,
8914,
964,
2490,
496,
5826,
1157,
253,
20734,
5779,
2361,
326,
27961,
686,
84,
4668,
5861,
921,
344,
369,
10166,
347,
247,
3085,
12378,
382,
285,
1708,
9988,
6254,
1157,
533,
597,
513,
417,
4887,
1061,
35078,
2211,
2143,
390,
418,
14253,
49,
3733,
964,
380,
6879,
394,
46444,
30068,
7115,
1119,
642,
1924,
273,
27961,
1907,
644,
247,
3558,
273,
253,
3943,
1157,
390,
247,
418,
14253,
49,
2285,
964,
2490,
27961,
2959,
521,
378,
15,
34,
15,
275,
20417,
10924,
275,
15788,
285,
353,
15,
34,
15,
275,
10924,
3762,
275,
14752,
1157,
1097,
432,
38236,
19451,
2418,
2499,
1157,
1024,
253,
2499,
273,
11545,
387,
42669,
964,
4928,
187,
426,
426,
42258,
426,
426,
4928,
187,
496,
14304,
1157,
27961,
3407,
2444,
387,
253,
2499,
273,
13338,
378,
35233,
347,
271,
25712,
2250,
5908,
275,
253,
9835,
5286,
964,
754,
671,
11873,
1520,
327,
2448,
5396,
3374,
275,
253,
16175,
2175,
2086,
964,
496,
7901,
1157,
253,
2499,
273,
13338,
14565,
779,
347,
271,
15629,
11652,
1157,
3738,
344,
858,
417,
7081,
253,
11073,
7345,
366,
3798,
2424,
323,
253,
1899,
964,
380,
1563,
807,
344,
369,
7169,
28135,
275,
253,
21506,
7811,
1157,
1293,
253,
7312,
2800,
1214,
14,
33,
807,
19077,
552,
2180,
1157,
846,
1907,
644,
13072,
407,
253,
33962,
1497,
285,
23132,
6875,
20036,
964,
2490,
754,
556,
1048,
644,
6110,
275,
3374,
2330,
342,
253,
27080,
265,
3162,
1157,
534,
9377,
598,
253,
40378,
28930,
13446,
285,
7922,
14777,
281,
2060,
18294,
964,
11055,
2356,
342,
326,
369,
253,
4400,
2208,
686,
84,
806,
897,
273,
346,
2614,
6318,
346,
281,
4853,
2060,
14199,
275,
23206,
1157,
323,
752,
3395,
1929,
347,
253,
27080,
265,
21508,
84,
964,
3932,
294,
1214,
14,
33,
14631,
1881,
1214,
14,
33,
13001,
1157,
46381,
595,
7478,
23206,
452,
4232,
616,
1211,
6866,
323,
29158,
347,
2758,
1157,
2223,
2905,
281,
18499,
432,
7478,
9493,
10894,
1157,
533,
1679,
2223,
10568,
27947,
273,
2614,
6318,
964,
3808,
273,
521,
3863,
2987,
2953,
841,
3374,
1157,
534,
344,
556,
12814,
347,
629,
273,
253,
4400,
2208,
686,
84,
3646,
273,
42604,
1411,
18199,
7108,
964,
2490,
496,
8878,
27961,
5469,
521,
6849,
342,
5119,
39400,
312,
757,
275,
271,
4572,
1163,
2490,
1422,
812,
1333,
326,
2620,
4289,
1107,
3622,
369,
253,
3720,
273,
2614,
6318,
275,
309,
589,
80,
1214,
14,
33,
3968,
964,
1292,
275,
33252,
1214,
14,
33,
3968,
1157,
1223,
627,
369,
690,
638,
20774,
318,
342,
352,
1157,
352,
369,
417,
7473,
1025,
1919,
253,
10056,
273,
253,
4214,
1876,
302,
420,
3162,
1157,
4260,
1214,
14,
33,
32626,
84,
964,
2058,
326,
1127,
597,
3407,
281,
4853,
5396,
347,
1146,
3095,
665,
369,
2837,
1598,
285,
3389,
1598,
273,
387,
1878,
581,
1214,
14,
33,
7150,
407,
6318,
2614,
24984,
275,
247,
1677,
1387,
964,
1422,
4571,
686,
85,
320,
271,
23738,
4661,
90,
22217,
285,
271,
23738,
329,
1761,
22278,
285,
320,
271,
5396,
964,
1422,
574,
281,
320,
247,
7150,
4661,
90,
22217,
390,
247,
7150,
329,
1761,
22278,
390,
18670,
247,
7150,
285,
247,
7150,
964,
380,
1921,
323,
436,
369,
3240,
2590,
964,
1583,
497,
12488,
16869,
323,
6378,
273,
512,
302,
1076,
731,
2060,
1061,
35430,
273,
2659,
275,
253,
5368,
28930,
2613,
387,
326,
1127,
964,
1310,
597,
6337,
562,
273,
16869,
38640,
347,
824,
1157,
840,
253,
1551,
273,
253,
2659,
651,
320,
8884,
30868,
964,
1893,
352,
369,
4518,
275,
253,
6284,
273,
253,
2208,
281,
2794,
247,
5426,
273,
5396,
1255,
326,
651,
15338,
253,
1180,
273,
16869,
326,
497,
2130,
964,
733,
369,
271,
5054,
16038,
323,
253,
2898,
273,
436,
6380,
6866,
281,
5396,
1255,
275,
253,
806,
1659,
964,
733,
686,
84,
2489,
9592,
594,
2455,
1580,
964,
346,
313,
5119,
39400,
312,
757,
313,
4565,
8878,
2387,
964,
346,
31466,
342,
18730,
27961,
1163,
27424,
285,
11604,
10400,
20813,
346,
964,
1503,
20308,
964,
2387,
2490,
496,
8441,
1157,
27961,
4395,
281,
253,
747,
10570,
9335,
11709,
4487,
273,
253,
2499,
273,
13338,
964,
496,
8210,
1157,
344,
369,
15127,
281,
2120,
11652,
964,
754,
369,
4236,
347,
16782,
273,
253,
7811,
275,
3978,
6752,
964,
2490,
496,
4247,
5826,
1157,
1309,
253,
16305,
689,
521,
898,
1227,
1903,
16157,
1157,
27961,
25036,
347,
16782,
273,
253,
16175,
2175,
7811,
387,
253,
2499,
273,
13338,
1905,
521,
1307,
347,
6951,
369,
11526,
281,
43106,
275,
3978,
273,
326,
807,
964,
1623,
2552,
1668,
1157,
5403,
1157,
253,
32668,
800,
7039,
273,
253,
37496,
7039,
327,
5489,
29056,
11018,
387,
253,
2499,
273,
13338,
7945,
326,
27961,
574,
7730,
2709,
9372,
273,
11073,
21600,
1157,
5742,
32929,
11158,
1204,
1157,
22911,
1157,
285,
21649,
1877,
964,
1623,
4163,
2164,
1157,
5215,
1157,
27961,
369,
11226,
323,
11073,
21600,
275,
271,
4314,
281,
581,
6273,
407,
253,
2499,
273,
13338,
686,
84,
5986,
273,
3667,
592,
964,
4928,
187,
426,
426,
15763,
267,
15514,
285,
15637,
267,
37846,
426,
426,
4928,
187,
496,
6469,
1157,
27961,
4767,
1157,
346,
309,
717,
4266,
273,
4878,
68,
462,
1796,
285,
16611,
18499,
327,
619,
3392,
686,
84,
1930,
1157,
50009,
327,
619,
3101,
686,
84,
1157,
285,
717,
271,
17692,
3558,
273,
253,
1986,
6018,
16713,
319,
1240,
16804,
273,
50009,
16869,
964,
346,
496,
9748,
1157,
27961,
4159,
11358,
326,
344,
310,
581,
1214,
14,
33,
23738,
16611,
285,
581,
1214,
14,
33,
2800,
16565,
50009,
964,
496,
9725,
1157,
27961,
2183,
253,
13338,
13992,
326,
346,
344,
369,
581,
1214,
14,
33,
2800,
16565,
16611,
285,
50009,
964,
346,
27961,
2183,
253,
20734,
5779,
275,
5080,
5826,
326,
344,
310,
1264,
1214,
14,
33,
2800,
16565,
84,
50009,
964,
2490,
496,
247,
3908,
15483,
2552,
898,
1157,
5826,
1157,
285,
9269,
327,
697,
4422,
1157,
253,
1986,
6018,
16713,
319,
1240,
16804,
8523,
753,
1157,
2490,
346,
380,
1986,
6018,
16713,
319,
1240,
16804,
651,
751,
281,
1056,
352,
2590,
326,
2305,
15,
27961,
4110,
5803,
247,
3558,
273,
253,
6018,
16713,
319,
1240,
16804,
285,
369,
760,
1677,
271,
10390,
552,
686,
15629,
14199,
686,
275,
253,
2393,
7901,
84,
984,
344,
812,
417,
5276,
667,
50009,
38408,
964,
346,
380,
22184,
753,
326,
512,
273,
27961,
686,
84,
346,
2469,
1157,
1246,
285,
2852,
3916,
390,
33184,
273,
6018,
16713,
319,
1240,
686,
29158,
1157,
686,
3542,
390,
13452,
1157,
1690,
533,
417,
3710,
281,
3706,
1794,
41400,
1157,
24642,
9084,
3348,
1157,
29608,
1157,
4893,
323,
8410,
1157,
390,
667,
643,
3806,
417,
7117,
11249,
1157,
403,
14320,
25447,
407,
253,
1986,
6018,
16713,
319,
1240,
16804,
964,
346,
2490,
5761,
1897,
1996,
1157,
253,
1986,
6018,
16713,
319,
1240,
16804,
7932,
697,
3908,
285,
14969,
27961,
686,
84,
346,
5575,
38408,
346,
273,
1146,
50009,
1163,
2490,
346,
4923,
2305,
15,
27961,
574,
49584,
38721,
1491,
5001,
521,
5575,
38408,
1157,
285,
521,
24741,
281,
10073,
253,
5591,
35,
275,
14312,
253,
22184,
285,
697,
5997,
1157,
344,
369,
11941,
271,
686,
34692,
20530,
1456,
686,
347,
271,
10390,
1157,
346,
253,
22184,
686,
84,
4422,
1024,
753,
964,
346,
1723,
1157,
2305,
15,
27961,
778,
7081,
26281,
3708,
323,
50009,
15963,
273,
17360,
1157,
1580,
344,
3916,
337,
1227,
1668,
50009,
964,
346,
2490,
380,
22184,
686,
84,
28179,
1157,
22707,
659,
10468,
1157,
4767,
253,
22184,
22773,
84,
760,
2758,
342,
18065,
581,
1214,
14,
33,
7150,
2448,
5396,
2614,
964,
380,
4422,
3908,
2007,
31637,
326,
27961,
346,
369,
417,
13410,
323,
26903,
14199,
1955,
281,
253,
958,
326,
344,
1057,
417,
7081,
247,
686,
39711,
273,
46997,
273,
5396,
14169,
313,
3437,
5472,
2387,
346,
1157,
285,
253,
15629,
14199,
858,
417,
994,
2404,
271,
2060,
281,
13423,
3570,
390,
29158,
275,
253,
22184,
964,
2490,
27961,
556,
1620,
2546,
323,
3437,
5472,
21612,
1157,
285,
9010,
253,
2934,
273,
1146,
346,
362,
37883,
346,
407,
253,
1982,
2208,
13413,
964,
2490,
496,
3978,
9354,
1157,
253,
1986,
6018,
16713,
319,
1240,
16804,
574,
14285,
281,
3523,
41076,
15629,
14199,
84,
964,
6102,
10390,
552,
15629,
14199,
25153,
271,
2060,
686,
84,
8385,
281,
253,
22184,
1157,
533,
352,
556,
2717,
281,
513,
342,
5396,
38408
] |
in the Sinai, although the pace of the advance was governed by the speed by which the railway and water pipeline could be constructed from the Suez Canal. Rafa was captured on 9 January 1917, while the last of the small Turkish garrisons in the Sinai were eliminated in February.
The advance entered Palestine and an initial, unsuccessful attempt was made to capture Gaza on 26 March 1917, while a second and equally unsuccessful attempt was launched on 19 April. A third assault occurred between 31 October and 7 November and this time both the Anzac Mounted Division and the Australian Mounted Division took part. The battle was a complete success for the British, over @-@ running the Gaza @-@ Beersheba line and capturing 12 @,@ 000 Turkish soldiers. The critical moment was the capture of Beersheba on the first day, after the Australian 4th Light Horse Brigade charged more than 4 miles ( 6 @.@ 4 km ). The Turkish trenches were overrun, with the Australians capturing the wells at Beersheeba and securing the valuable water they contained along with over 700 prisoners for the loss of 31 killed and 36 wounded. Later, Australian troops assisted in pushing the Turkish forces out of Palestine and took part in actions at Mughar Ridge, Jerusalem and the Megiddo. The Turkish government surrendered on 30 October 1918. Units of the Light Horse were subsequently used to help put down a nationalist revolt in Egypt in 1919 and did so with efficiency and brutality, although they suffered a number of fatalities in the process.
Meanwhile, the AFC had undergone remarkable development, and its independence as a separate national force was unique among the Dominions. Deploying just a single aircraft to German New Guinea in 1914, the first operational flight did not occur until 27 May 1915 however, when the Mesopotamian Half Flight was called upon to assist in protecting British oil interests in Iraq. The AFC was soon expanded and four squadrons later saw action in Egypt, Palestine and on the Western Front, where they performed well.
= = = Western Front = = =
Five infantry divisions of the AIF saw action in France and Belgium, leaving Egypt in March 1916. I Anzac Corps subsequently took up positions in a quiet sector south of Armentières on 7 April 1916 and for the next two and a half years the AIF participated in most of the major battles on the Western Front, earning a formidable reputation. Although spared from the disastrous first day of the Battle of the Somme, within weeks four Australian divisions had been committed. The 5th Division, positioned on the left flank, was the first in action during the Battle of Fromelles on 19 July 1916, suffering 5 @,@ 533 casualties in a single day. The 1st Division entered the line on 23 July, assaulting Pozieres, and by the time that they were relieved by the 2nd Division on 27 July, they had suffered 5 @,@ 286 casualties. Mouquet Farm was attacked in August, with casualties totalling 6 @,@ 300 men. By the time the AIF was withdrawn from the Somme to re @-@ organise, they had suffered 23 @,@ 000 casualties in just 45 days.
In March 1917, the 2nd and 5th Divisions pursued the Germans back to the Hindenburg Line, capturing the town of Bapaume. On 11 April, the 4th Division assaulted the Hindenburg Line in the disastrous First Battle of Bullecourt, losing over 3 @,@ 000 casualties and 1 @,@ 170 captured. On 15 April, the 1st and 2nd Divisions were counter @-@ attacked near Lagnicourt and were forced to abandon the town, before recapturing it again. The 2nd Division then took part in the Second Battle of Bullecourt, beginning on 3 May, and succeeded in taking sections of the Hindenburg Line and holding them until relieved by the 1st Division. Finally, on 7 May the 5th Division relieved the 1st, remaining in the line until the battle ended in mid @-@ May. Combined these efforts cost 7 @,@ 482 Australian casualties.
On 7 June 1917, the II Anzac Corps — along with two British corps — launched an operation in Flanders to eliminate a salient south of Ypres. The attack commenced with the detonation of a million pounds ( 454 @,@ 545 kg ) of explosives that had been placed underneath the Messines ridge, destroying the German trenches. The advance was virtually unopposed, and despite strong German counterattacks the next day, it succeeded. Australian casualties during the Battle of Messines included nearly 6 @,@ 800 men. I Anzac Corps then took part in the Third Battle of Ypres in Belgium as part of the campaign to capture the Gheluvelt Plateau, between September and November 1917. Individual actions took place at Menin Road, Polygon Wood, Broodseinde, Poelcappelle and Passchendaele and over the course of eight weeks fighting the Australians suffered 38 @,@ 000 casualties.
On 21 March 1918 the German Army launched its Spring Offensive in a last @-@ ditched effort to win the war, unleashing sixty @-@ three divisions over a 70 miles ( 110 km ) front. As the Allies fell back the 3rd and 4th Divisions were rushed south to Amiens on the Somme. The offensive lasted for the next five months and all five AIF divisions in France were engaged in the attempt to stem the tide. By late May the Germans had pushed to within 50 miles ( 80 km ) of Paris. During this time the Australians fought at Dernacourt, Morlancourt, Villers @-@ Bretonneux, Hangard Wood, Hazebrouck, and Hamel. At Hamel the commander of the Australian Corps, Lieutenant General John Monash, successfully used combined arms — including aircraft, artillery and armour — in an attack for the first time.
The German offensive ground to a halt in mid @-@ July and a brief lull followed, during which the Australians undertook a series of raids, known as Peaceful Penetrations. The Allies soon launched their own offensive — the Hundred Days Offensive — ultimately ending the war. Beginning on 8 August 1918 the offensive included four Australian divisions striking at Amiens. Using the combined arms techniques developed earlier at Hamel, significant gains were made on what became known as the " Black Day " of the German Army. The offensive continued for four months, and during Second Battle of the Somme the Australian Corps fought actions at Lihons, Etinehem, Proyart, Chuignes, and Mont St Quentin, before their final engagement of the war on 5 October 1918 at Montbrehain. The AIF was subsequently out of the line when the armistice was declared on 11 November 1918.
In all 416 @,@ 806 Australians enlisted in the AIF during the war and 333 @,@ 000 served overseas. 61 @,@ 508 were killed and another 155 @,@ 000 were wounded ( a total casualty rate of 65 % ). The financial cost to the Australian government was calculated at £ 376 @,@ 993 @,@ 052. Two referendums on conscription for overseas service had been defeated during the war, preserving the volunteer status of the Australian force, but stretching the reserves of manpower available, particularly towards the end of the fighting. Consequently, Australia remained one of only two armies on either side not to resort to conscription during the war.
The war had a profound effect on Australian society in other ways also. Indeed, for many Australians the nation's involvement is seen as a symbol of its emergence as an international actor, while many of the notions of Australian character and nationhood that exist today have their origins in the war. 64 Australians were awarded the Victoria Cross during the First World War.
= = Inter @-@ war years = =
= = = Russian Civil War, 1918 – 19 = = =
The Russian Civil War began after the Russian provisional government collapsed and the Bolshevik party assumed power in October 1917. Following the end of the First World War, the western powers — including Britain — intervened, giving half @-@ hearted support to the pro @-@ tsarist, anti @-@ Bolshevik White Russian forces. Although the Australian government refused to commit forces, many Australians serving with the British Army became involved in the fighting. A small number served as advisors to White Russian units with the North Russian Expeditionary Force ( NREF ). Awaiting repatriation in England, about 150 Australians subsequently enlisted in the British North Russia Relief Force ( NRRF ), where they were involved in a number of sharp battles and several were killed.
The Royal Australian Navy destroyer HMAS Swan was also briefly engaged, carrying out an intelligence gathering mission in the Black Sea in late 1918. Other Australians served as advisers with the British Military Mission to the White Russian General, Anton Denikin in South Russia, while several more advised Admiral Aleksandr Kolchak in Siberia. Later, they also served in Mesopotamia as part of Dunsterforce and the Malleson Mission, although these missions were aimed at preventing Turkish access to the Middle East and India, and did little fighting.
Although the motivations of those Australian's that volunteered to fight in Russia can only be guessed at, it seems unlikely to have been political. Regardless, they confirmed a reputation for audacity and courage, winning the only two Victoria Crosses of the land campaign, despite their small numbers. Yet Australian involvement was barely noticed at home at the time and made little difference to the outcome of the war. Total casualties included 10 killed and 40 wounded, with most deaths being from disease during operations in Mesopotamia.
= = = Malaita, 1927 | wikitext_103 | [
275,
253,
322,
45194,
1157,
3738,
253,
13870,
273,
253,
7170,
369,
17886,
407,
253,
3885,
407,
534,
253,
18217,
285,
1824,
15722,
812,
320,
8818,
432,
253,
322,
17761,
33042,
964,
28962,
66,
369,
10848,
327,
898,
4247,
27062,
1157,
1223,
253,
1390,
273,
253,
1355,
18416,
305,
3298,
10047,
275,
253,
322,
45194,
497,
17527,
275,
5080,
964,
2490,
380,
7170,
5966,
29313,
285,
271,
3302,
1157,
28008,
3177,
369,
1160,
281,
9232,
24076,
327,
3436,
3919,
27062,
1157,
1223,
247,
1273,
285,
9696,
28008,
3177,
369,
10098,
327,
655,
4162,
964,
329,
2626,
9222,
5866,
875,
4562,
4437,
285,
818,
4596,
285,
436,
673,
1097,
253,
743,
91,
317,
8352,
264,
9333,
285,
253,
9943,
8352,
264,
9333,
2335,
629,
964,
380,
6680,
369,
247,
3426,
2323,
323,
253,
4782,
1157,
689,
1214,
14,
33,
3515,
253,
24076,
1214,
14,
33,
2325,
398,
248,
5830,
1386,
285,
26475,
1249,
1214,
13,
33,
20181,
18416,
9647,
964,
380,
4619,
2774,
369,
253,
9232,
273,
2325,
398,
248,
5830,
327,
253,
806,
1388,
1157,
846,
253,
9943,
577,
394,
10315,
27950,
34412,
6636,
625,
685,
577,
6574,
313,
721,
1214,
15,
33,
577,
10771,
2387,
964,
380,
18416,
44297,
497,
689,
6321,
1157,
342,
253,
45373,
26475,
253,
21443,
387,
2325,
398,
248,
43937,
285,
24682,
253,
9865,
1824,
597,
6221,
2112,
342,
689,
18450,
16154,
323,
253,
2957,
273,
4562,
5339,
285,
5540,
16545,
964,
14772,
1157,
9943,
10824,
21075,
275,
13383,
253,
18416,
5621,
562,
273,
29313,
285,
2335,
629,
275,
5231,
387,
44534,
9432,
28188,
1157,
17913,
285,
253,
18694,
2016,
80,
964,
380,
18416,
2208,
41594,
327,
1884,
4437,
26052,
964,
47623,
273,
253,
10315,
27950,
497,
9674,
908,
281,
1361,
1691,
1066,
247,
38204,
36733,
275,
10253,
275,
29145,
285,
858,
594,
342,
6733,
285,
48083,
1157,
3738,
597,
9606,
247,
1180,
273,
15444,
1005,
275,
253,
1232,
964,
2490,
16257,
1157,
253,
329,
6739,
574,
29518,
13406,
2440,
1157,
285,
697,
14275,
347,
247,
4858,
3872,
3490,
369,
4451,
2190,
253,
19307,
621,
964,
1605,
1667,
272,
816,
247,
2014,
9954,
281,
5685,
1457,
34410,
275,
26478,
1157,
253,
806,
15942,
8630,
858,
417,
2826,
1919,
3435,
2552,
27698,
2299,
1157,
672,
253,
19926,
43191,
312,
757,
23177,
29726,
369,
1925,
2220,
281,
10073,
275,
15233,
4782,
4166,
6284,
275,
9256,
964,
380,
329,
6739,
369,
3517,
11848,
285,
1740,
13487,
9036,
1996,
3047,
2250,
275,
10253,
1157,
29313,
285,
327,
253,
6359,
15808,
1157,
835,
597,
2684,
973,
964,
4928,
187,
426,
426,
426,
6359,
15808,
426,
426,
426,
4928,
187,
14263,
32468,
22387,
273,
253,
329,
3801,
3047,
2250,
275,
6181,
285,
22785,
1157,
6108,
10253,
275,
3919,
31246,
964,
309,
743,
91,
317,
17729,
9674,
2335,
598,
6887,
275,
247,
7107,
8776,
6420,
273,
1780,
420,
74,
26444,
327,
818,
4162,
31246,
285,
323,
253,
1735,
767,
285,
247,
2716,
1107,
253,
329,
3801,
13640,
275,
954,
273,
253,
2201,
20303,
327,
253,
6359,
15808,
1157,
22915,
247,
36418,
12681,
964,
4129,
40335,
432,
253,
37359,
806,
1388,
273,
253,
15764,
273,
253,
27516,
1405,
1157,
1561,
3618,
1740,
9943,
22387,
574,
644,
7730,
964,
380,
608,
394,
9333,
1157,
15471,
327,
253,
1669,
21499,
1157,
369,
253,
806,
275,
2250,
1309,
253,
15764,
273,
4325,
18502,
327,
655,
4163,
31246,
1157,
9958,
608,
1214,
13,
33,
44504,
32853,
275,
247,
2014,
1388,
964,
380,
337,
296,
9333,
5966,
253,
1386,
327,
3495,
4163,
1157,
9222,
272,
367,
6002,
466,
373,
1157,
285,
407,
253,
673,
326,
597,
497,
24192,
407,
253,
374,
2109,
9333,
327,
3435,
4163,
1157,
597,
574,
9606,
608,
1214,
13,
33,
32526,
32853,
964,
353,
276,
21118,
15162,
369,
13964,
275,
4223,
1157,
342,
32853,
1931,
11822,
721,
1214,
13,
33,
7469,
1821,
964,
2896,
253,
673,
253,
329,
3801,
369,
26924,
432,
253,
27516,
1405,
281,
294,
1214,
14,
33,
1963,
885,
1157,
597,
574,
9606,
3495,
1214,
13,
33,
20181,
32853,
275,
816,
5329,
1897,
964,
2490,
496,
3919,
27062,
1157,
253,
374,
2109,
285,
608,
394,
6852,
3836,
23321,
253,
20003,
896,
281,
253,
15713,
40260,
10243,
1157,
26475,
253,
3874,
273,
378,
24470,
2123,
964,
1623,
1903,
4162,
1157,
253,
577,
394,
9333,
37576,
253,
15713,
40260,
10243,
275,
253,
37359,
3973,
15764,
273,
13289,
282,
13550,
1157,
10305,
689,
495,
1214,
13,
33,
20181,
32853,
285,
337,
1214,
13,
33,
18672,
10848,
964,
1623,
1458,
4162,
1157,
253,
337,
296,
285,
374,
2109,
6852,
3836,
497,
4828,
1214,
14,
33,
13964,
2822,
418,
1530,
280,
950,
285,
497,
6726,
281,
9488,
253,
3874,
1157,
1078,
48928,
981,
352,
969,
964,
380,
374,
2109,
9333,
840,
2335,
629,
275,
253,
6347,
15764,
273,
13289,
282,
13550,
1157,
5068,
327,
495,
2552,
1157,
285,
17288,
275,
3192,
7118,
273,
253,
15713,
40260,
10243,
285,
5877,
731,
1919,
24192,
407,
253,
337,
296,
9333,
964,
6610,
1157,
327,
818,
2552,
253,
608,
394,
9333,
24192,
253,
337,
296,
1157,
5780,
275,
253,
1386,
1919,
253,
6680,
7402,
275,
4260,
1214,
14,
33,
2552,
964,
37395,
841,
6031,
2105,
818,
1214,
13,
33,
43823,
9943,
32853,
964,
2490,
1623,
818,
3978,
27062,
1157,
253,
3719,
743,
91,
317,
17729,
1905,
2112,
342,
767,
4782,
23493,
1905,
10098,
271,
4254,
275,
401,
39950,
281,
13469,
247,
43066,
6420,
273,
714,
10192,
964,
380,
2983,
24488,
342,
253,
43072,
318,
273,
247,
3041,
12511,
313,
37788,
1214,
13,
33,
42974,
15841,
2387,
273,
42403,
326,
574,
644,
4845,
21281,
253,
15551,
1100,
27563,
1157,
25473,
253,
5685,
44297,
964,
380,
7170,
369,
14257,
440,
10468,
1700,
1157,
285,
5747,
2266,
5685,
4828,
1595,
7305,
253,
1735,
1388,
1157,
352,
17288,
964,
9943,
32853,
1309,
253,
15764,
273,
15551,
1100,
2908,
4829,
721,
1214,
13,
33,
14212,
1821,
964,
309,
743,
91,
317,
17729,
840,
2335,
629,
275,
253,
12245,
15764,
273,
714,
10192,
275,
22785,
347,
629,
273,
253,
4544,
281,
9232,
253,
443,
2955,
86,
19194,
31773,
1952,
1157,
875,
4397,
285,
4596,
27062,
964,
21330,
5231,
2335,
1659,
387,
9730,
249,
8669,
1157,
3130,
37325,
9002,
1157,
4819,
351,
339,
25313,
1157,
8081,
293,
68,
1212,
4415,
285,
11271,
5756,
1473,
11177,
285,
689,
253,
2282,
273,
4314,
3618,
8615,
253,
45373,
9606,
6480,
1214,
13,
33,
20181,
32853,
964,
2490,
1623,
3127,
3919,
26052,
253,
5685,
8663,
10098,
697,
10039,
5566,
3134,
275,
247,
1390,
1214,
14,
33,
16465,
2147,
3434,
281,
3330,
253,
2137,
1157,
33243,
3834,
21116,
1214,
14,
33,
1264,
22387,
689,
247,
5571,
6574,
313,
9199,
10771,
2387,
2914,
964,
1284,
253,
48907,
6497,
896,
253,
495,
5784,
285,
577,
394,
6852,
3836,
497,
20906,
6420,
281,
3052,
44209,
327,
253,
27516,
1405,
964,
380,
13413,
20578,
323,
253,
1735,
2620,
2607,
285,
512,
2620,
329,
3801,
22387,
275,
6181,
497,
9583,
275,
253,
3177,
281,
8424,
253,
26816,
964,
2896,
3563,
2552,
253,
20003,
574,
10184,
281,
1561,
2456,
6574,
313,
5096,
10771,
2387,
273,
7785,
964,
6408,
436,
673,
253,
45373,
13465,
387,
399,
1808,
317,
950,
1157,
4922,
77,
1377,
950,
1157,
13758,
398,
1214,
14,
33,
43624,
44215,
2310,
1157,
39008,
472,
9002,
1157,
388,
8879,
1288,
276,
777,
1157,
285,
5516,
293,
964,
2058,
5516,
293,
253,
17747,
273,
253,
9943,
17729,
1157,
22389,
4214,
2516,
4200,
1225,
1157,
8379,
908,
5678,
6174,
1905,
1690,
9954,
1157,
29923,
285,
44878,
1905,
275,
271,
2983,
323,
253,
806,
673,
964,
2490,
380,
5685,
13413,
3216,
281,
247,
19086,
275,
4260,
1214,
14,
33,
4163,
285,
247,
4864,
298,
962,
3560,
1157,
1309,
534,
253,
45373,
42201,
247,
2962,
273,
39395,
1157,
1929,
347,
20000,
1020,
7009,
11656,
569,
964,
380,
48907,
3517,
10098,
616,
1211,
13413,
1905,
253,
35942,
23264,
5566,
3134,
1905,
9142,
12365,
253,
2137,
964,
43312,
327,
854,
4223,
26052,
253,
13413,
2908,
1740,
9943,
22387,
13631,
387,
3052,
44209,
964,
6915,
253,
5678,
6174,
5609,
3715,
4321,
387,
5516,
293,
1157,
1534,
15988,
497,
1160,
327,
752,
3395,
1929,
347,
253,
346,
5418,
6258,
346,
273,
253,
5685,
8663,
964,
380,
13413,
4821,
323,
1740,
2607,
1157,
285,
1309,
6347,
15764,
273,
253,
27516,
1405,
253,
9943,
17729,
13465,
5231,
387,
418,
6356,
790,
1157,
17218,
460,
3296,
1157,
1294,
90,
435,
1157,
48012,
525,
265,
1157,
285,
7812,
659,
3277,
41319,
1157,
1078,
616,
2457,
13226,
273,
253,
2137,
327,
608,
4437,
26052,
387,
7812,
3381,
73,
404,
964,
380,
329,
3801,
369,
9674,
562,
273,
253,
1386,
672,
253,
4430,
382,
547,
369,
8884,
327,
1903,
4596,
26052,
964,
2490,
496,
512,
35272,
1214,
13,
33,
854,
3071,
45373,
42969,
275,
253,
329,
3801,
1309,
253,
2137,
285,
30057,
1214,
13,
33,
20181,
5608,
21344,
964,
9901,
1214,
13,
33,
38820,
497,
5339,
285,
1529,
20029,
1214,
13,
33,
20181,
497,
16545,
313,
247,
2264,
15120,
555,
2281,
273,
7251,
2462,
2387,
964,
380,
4832,
2105,
281,
253,
9943,
2208,
369,
5118,
387,
8157,
38516,
1214,
13,
33,
898,
4590,
1214,
13,
33,
470,
3583,
964,
5761,
10591,
5047,
7640,
327,
772,
3459,
323,
21344,
2579,
574,
644,
16473,
1309,
253,
2137,
1157,
24279,
253,
20848,
3708,
273,
253,
9943,
3490,
1157,
533,
23148,
253,
23003,
273,
637,
9177,
2130,
1157,
3782,
4404,
253,
990,
273,
253,
8615,
964,
13162,
1157,
6976,
6376,
581,
273,
760,
767,
29894,
327,
2057,
1930,
417,
281,
17942,
281,
772,
3459,
1309,
253,
2137,
964,
2490,
380,
2137,
574,
247,
15585,
1055,
327,
9943,
5948,
275,
643,
4088,
671,
964,
8079,
1157,
323,
1142,
45373,
253,
5674,
686,
84,
10171,
310,
2326,
347,
247,
9484,
273,
697,
21313,
347,
271,
5213,
12353,
1157,
1223,
1142,
273,
253,
27367,
273,
9943,
1894,
285,
5674,
3639,
326,
2226,
3063,
452,
616,
20801,
275,
253,
2137,
964,
6705,
45373,
497,
11941,
253,
16225,
10547,
1309,
253,
3973,
3645,
3660,
964,
4928,
187,
426,
426,
5383,
1214,
14,
33,
2137,
1107,
426,
426,
4928,
19668,
426,
426,
426,
7247,
10109,
3660,
1157,
26052,
1108,
655,
426,
426,
426,
4928,
187,
380,
7247,
10109,
3660,
3407,
846,
253,
7247,
50010,
2208,
21900,
285,
253,
378,
3017,
248,
30127,
3128,
8025,
1612,
275,
4437,
27062,
964,
11977,
253,
990,
273,
253,
3973,
3645,
3660,
1157,
253,
10439,
9136,
1905,
1690,
9643,
1905,
16070,
264,
1157,
4933,
2716,
1214,
14,
33,
2798,
264,
1329,
281,
253,
354,
1214,
14,
33,
28669,
274,
382,
1157,
3270,
1214,
14,
33,
378,
3017,
248,
30127,
5219,
7247,
5621,
964,
4129,
253,
9943,
2208,
9284,
281,
4514,
5621,
1157,
1142,
45373,
9417,
342,
253,
4782,
8663,
3395,
3206,
275,
253,
8615,
964,
329,
1355,
1180,
5608,
347,
47267,
281,
5219,
7247,
5085,
342,
253,
3729,
7247,
45626,
539,
552,
10627,
313,
427,
15619,
2387,
964,
329,
14061,
272,
1234,
26628,
318,
275,
5854,
1157,
670,
7783,
45373,
9674,
42969,
275,
253,
4782,
3729,
7422,
38799,
10627,
313,
427,
14253,
39,
2387,
1157,
835,
597,
497,
3206,
275,
247,
1180,
273,
9479,
20303,
285,
2067,
497,
5339,
964,
2490,
380,
10043,
9943,
13669,
6909,
254,
20307,
1719,
35359,
369,
671,
13366,
9583,
1157,
8785,
562,
271,
9260,
16778,
7517,
275,
253,
5418,
11936,
275,
3563,
26052,
964,
5131,
45373,
5608,
347,
41920,
342,
253,
4782,
20884,
22368,
281,
253,
5219,
7247,
4214,
1157,
12705,
7682,
1479,
249,
275,
3684,
7422,
1157,
1223,
2067,
625,
15140,
28244,
16660,
661,
395,
83,
24688,
348,
518,
275,
46634,
571,
964,
14772,
1157,
597,
671,
5608,
275,
19926,
43191,
312,
571,
347,
629,
273,
12221,
2971,
4774,
285,
253,
21984,
45336,
22368,
1157,
3738,
841,
21468,
497,
11205,
387,
13538,
18416,
2289,
281,
253,
10515,
5791,
285,
5427,
1157,
285,
858,
1652,
8615,
964,
2490,
4129,
253,
42852,
273,
1110,
9943,
686,
84,
326,
43659,
281,
3819,
275,
7422,
476,
760,
320,
30346,
387,
1157,
352,
3133,
11543,
281,
452,
644,
3569,
964,
31565,
1157,
597,
5783,
247,
12681,
323,
3820,
10757,
285,
15838,
1157,
9880,
253,
760,
767,
16225,
10547,
265,
273,
253,
2659,
4544,
1157,
5747,
616,
1355,
3904,
964,
9110,
9943,
10171,
369,
12345,
8344,
387,
1728,
387,
253,
673,
285,
1160,
1652,
3064,
281,
253,
6454,
273,
253,
2137,
964,
12266,
32853,
2908,
884,
5339,
285,
3387,
16545,
1157,
342,
954,
8923,
1146,
432,
2728,
1309,
5871,
275,
19926,
43191,
312,
571,
964,
4928,
187,
426,
426,
426,
5979,
1942,
66,
1157,
31687
] |
= Battle of the Hongorai River =
The Battle of the Hongorai River took place during the Second World War and involved Australian, New Zealand and Japanese forces. Part of the wider Bougainville Campaign of the Pacific theatre, the battle was fought in the southern sector of Bougainville Island. Coming after the Battle of Slater's Knoll in which a strong Japanese counterattack was defeated, the battle occurred in two distinct periods between 17 April and 22 May 1945, as elements of the Australian 15th Brigade advanced south along the Buin Road.
The initial phase saw the Australians advance towards the Hongorai River. Following the end of the early fighting, the Australian advance towards the main Japanese concentration at Buin continued as they struck out towards the Hari and Mivo Rivers. This continued until torrential rain and flooding brought the advance to a halt short of the objective, washing away many bridges and roads upon which the Australians relied for supplies. As the Australian advance stalled, the Japanese began harassing the Australian line of communications, and as the rain stopped and the flooding subsided in late @-@ July and into August, the Australians began making preparations to resume the advance towards Buin again. Ultimately, though, the war came to an end before the final Australian advance began, bringing the campaign to an end.
= = Background = =
= = = Strategic situation = = =
Japanese forces had landed on Bougainville in early 1942, capturing it from the small force of Australians garrisoning the island. They had subsequently developed several airbases on the island, using it to conduct operations in the northern Solomon Islands and to attack the Allied lines of communication between the United States, Australia and the Southwest Pacific Area. These bases also helped protect Rabaul, the major Japanese garrison and naval base in Papua New Guinea, and throughout 1943, Allied planners determined that Bougainville was vital for neutralising the Japanese base around Rabaul.
US Marines conducted an amphibious landing at Cape Torokina, on the western coast of the island, north of Empress Augusta Bay, in November 1943. After an initial counter @-@ attack, the US Marines had been replaced by a garrison of US Army troops who began consolidating their position around Torokina, establishing a strong perimeter. In March 1944, the Japanese launched a heavy counter @-@ attack, which was turned back with heavy casualties. After this, the situation on Bougainville became largely static, as the Japanese focused primarily on subsistence, and the US forces chose to adopt a mainly defensive posture focused on maintaining the perimeter around Torokina.
In late 1944, as part of plans to free US troops up for the Philippines campaign, the Australian II Corps — consisting of mainly Militia troops under the command of Lieutenant General Stanley Savige — took over responsibility for Allied operations on Bougainville from the American XIV Corps. Australian forces began arriving on the island between November and December 1944, initially establishing themselves around the US base at Torokina. Due to inaccurate intelligence, Savige mistakenly believed that the Japanese forces on the island numbered just 17 @,@ 500 men, and he consequently decided that the Australians would pursue an aggressive campaign to clear the Japanese from Bougainville in order to free their troops for subsequent operations elsewhere, rather than maintaining the defensive posture the US forces had adopted. However, Allied estimates of Japanese strength were later found to be grossly inaccurate and after the war it was found that the number of Japanese on the island at this time was closer to 40 @,@ 000.
The campaign that Australian planners developed entailed three separate drives : in the north, it was planned that Japanese forces would be forced into the narrow Bonis Peninsula and contained ; in the centre the seizure of Pearl Ridge would give the Australians control of the east – west avenues of approach, as well as affording them protection against further counter @-@ attacks, while also opening the way for a drive to the east coast ; and the main campaign in the south, where the bulk of the Japanese forces were concentrated around Buin.
= = = Preliminary moves = = =
Following the capture of Pearl Ridge in December 1944, the Australian 7th Brigade had been moved south and allocated to the drive towards Buin. In late March and early April 1945, they had fought the Battle of Slater's Knoll after which a brief lull followed as the Australians paused to shorten their supply lines. Meanwhile, the survivors of the Japanese force, heavily demoralised by their defeat, withdrew towards the Hongorai River. The Australian 3rd Division was then ordered to resume its advance south, being tasked with capturing the Hari River, while the Hongorai was also included as an " intermediate objective ". Japanese strength in the southern sector was estimated by the Australians at about 10 @,@ 500 men, of which 2 @,@ 300 were believed to be directly opposing the 3rd Division. The 15th Brigade was considered to be the most experienced of the Australian units on Bougainville at the time and was moved up to relieve the 7th Brigade, which was in need of rest.
Under the command of Brigadier Heathcote Hammer the 15th Brigade consisted of three infantry battalions as well as two troops of tanks from the 2 / 4th Armoured Regiment, engineers from the 15th Field Company, a battery of 155 @-@ mm guns from'U'Heavy Battery, field artillery from the 2nd Field Regiment, and a number of smaller support units. The 58th / 59th Infantry Battalion took over responsibility for Slater's Knoll replacing the 25th Infantry Battalion while the 24th Infantry Battalion took up a position across the Buin Road. The brigade's third battalion — the 57th / 60th Infantry Battalion — did not join them until the beginning of May, and so the 7th Brigade's 9th Infantry Battalion continued patrolling operations north of the Huio River, in the Rumiki area, until the 57th / 60th could dispatch elements to relieve them. Further inland, the 2 / 8th Commando Squadron advanced in a wide arc to the south @-@ east, defending the brigade's left, or eastern, flank.
The Japanese forces opposing the Australians belonged to the 6th Division, under the command of Lieutenant General Tsutomu Akinaga. Akinaga had been ordered to delay the Australian advance between the Hongorai and the Hari for as long as possible, and with these orders in mind he had installed a number of strong points along the Australian's expected line of advance. The division's infantry had suffered heavily in the previous battle around Slater's Knoll and as a consequence, several units had to be reorganized or amalgamated. The front line positions were assigned to the 6th Field Artillery Regiment, while the 13th Infantry Regiment was to hold five strongpoints to their rear along and astride the Buin Road, designated'A'through to'E '. The 6th Field and 4th Field Heavy Artillery Regiments both held strongpoints further back, designated'F'and'G '. The 23rd Infantry Regiment was placed in the rear, where it was being reconstituted following losses suffered during the attack on Slater's Knoll.
= = Battle = =
= = = Advance to the Hongorai = = =
The 15th Brigade took over the forward positions from the 7th Brigade on 17 April. Initial dispositions had the 24th Infantry Battalion on the Buin Road around Kero Creek, with the 58th / 59th around Barara, north @-@ east of Slater's Knoll, and the 57th / 60th, when it arrived to relieve the 9th, would be positioned further east astride a secondary, parallel track known to the Australians as the Commando Road. Two days later, Hammer received the order to commence the advance towards the Hongorai from Savige, who offered him the support of the 29th Brigade as a mobile reserve in case of sudden counter @-@ attack. In a change to the tactics that the Australians had previously employed prior to the fighting around Slater's Knoll, from early May they advanced on a two @-@ battalion front, instead of one. The 24th Infantry Battalion was in the van, moving along the Buin Road with the 58th / 59th protecting its flank and rear ; while 5 @,@ 000 yd ( 4 @,@ 600 m ) further inland the 57th / 60th Infantry Battalion, commencing on 3 May, advanced along the Commando Road from Rumiki, after taking over from the 9th Infantry Battalion.
Moving forward under a creeping barrage as they moved beyond Tokinotu, the 24th Infantry Battalion was the first to contact the Japanese, carrying out an attack against Japanese positions around Dawe's Creek on 17 April. Supported by a troop of Matilda tanks from the 2 / 4th Armoured Regiment, an artillery barrage which fired over 700 shells, two infantry companies —'C'and'D'— from the 24th attacked the position while another —'A'Company — carried out a flanking manoeuvre to cut another track further north towards Kindara and Hatai. The left forward company —'D'Company — reached its objective without trouble ; however,'C'Company — on the right along with the troop of tanks — came up against stiff Japanese resistance and became bogged down.'A'Company also became embroiled in heavy fighting along the Hatai track. In support of'A'Company, Matilidas came forward and raked the jungle, hacking through the undergrowth to reveal several Japanese pillboxes, which were destroyed by the Australian armour. As night fell,'C'Company dug in before resuming the attack | wikitext_103 | [
426,
15764,
273,
253,
14025,
263,
2284,
7121,
426,
4928,
187,
380,
15764,
273,
253,
14025,
263,
2284,
7121,
2335,
1659,
1309,
253,
6347,
3645,
3660,
285,
3206,
9943,
1157,
1457,
12123,
285,
6692,
5621,
964,
3512,
273,
253,
14200,
378,
529,
404,
6169,
27069,
273,
253,
11553,
20021,
1157,
253,
6680,
369,
13465,
275,
253,
11053,
8776,
273,
378,
529,
404,
6169,
8451,
964,
36657,
846,
253,
15764,
273,
7335,
727,
686,
84,
10381,
2555,
275,
534,
247,
2266,
6692,
4828,
35946,
369,
16473,
1157,
253,
6680,
5866,
275,
767,
5799,
9894,
875,
1722,
4162,
285,
3307,
2552,
18824,
1157,
347,
3603,
273,
253,
9943,
1458,
394,
34412,
7269,
6420,
2112,
253,
11262,
249,
8669,
964,
2490,
380,
3302,
3408,
3047,
253,
45373,
7170,
4404,
253,
14025,
263,
2284,
7121,
964,
11977,
253,
990,
273,
253,
2393,
8615,
1157,
253,
9943,
7170,
4404,
253,
2022,
6692,
4719,
387,
11262,
249,
4821,
347,
597,
10903,
562,
4404,
253,
388,
1792,
285,
353,
6073,
28160,
964,
831,
4821,
1919,
38163,
451,
9313,
285,
28037,
3982,
253,
7170,
281,
247,
19086,
2159,
273,
253,
8103,
1157,
17392,
1977,
1142,
24853,
285,
13939,
2220,
534,
253,
45373,
15494,
323,
13191,
964,
1284,
253,
9943,
7170,
48283,
1157,
253,
6692,
3407,
15598,
272,
253,
9943,
1386,
273,
10924,
1157,
285,
347,
253,
9313,
6331,
285,
253,
28037,
8790,
1356,
275,
3563,
1214,
14,
33,
4163,
285,
715,
4223,
1157,
253,
45373,
3407,
2403,
20724,
281,
21058,
253,
7170,
4404,
11262,
249,
969,
964,
33975,
1157,
2167,
1157,
253,
2137,
2210,
281,
271,
990,
1078,
253,
2457,
9943,
7170,
3407,
1157,
9745,
253,
4544,
281,
271,
990,
964,
4928,
187,
426,
426,
17720,
426,
426,
4928,
19668,
426,
426,
426,
40456,
4112,
426,
426,
426,
4928,
187,
6692,
5621,
574,
17735,
327,
378,
529,
404,
6169,
275,
2393,
22420,
1157,
26475,
352,
432,
253,
1355,
3490,
273,
45373,
49564,
272,
253,
8930,
964,
1583,
574,
9674,
3715,
2067,
2329,
67,
1169,
327,
253,
8930,
1157,
970,
352,
281,
2589,
5871,
275,
253,
11186,
31049,
18708,
285,
281,
2983,
253,
32683,
3104,
273,
5511,
875,
253,
1986,
2077,
1157,
6976,
285,
253,
35287,
11553,
14564,
964,
2053,
14395,
671,
6518,
4017,
416,
10442,
335,
1157,
253,
2201,
6692,
49564,
285,
25186,
2613,
275,
17206,
5738,
1457,
34410,
1157,
285,
4768,
23430,
1157,
32683,
499,
23217,
3413,
326,
378,
529,
404,
6169,
369,
12232,
323,
9238,
2182,
253,
6692,
2613,
1475,
416,
10442,
335,
964,
2490,
1982,
34913,
5196,
271,
49195,
784,
15165,
387,
20904,
7608,
536,
1758,
1157,
327,
253,
10439,
8852,
273,
253,
8930,
1157,
6146,
273,
11274,
560,
4223,
66,
6912,
1157,
275,
4596,
23430,
964,
2732,
271,
3302,
4828,
1214,
14,
33,
2983,
1157,
253,
1982,
34913,
574,
644,
7932,
407,
247,
49564,
273,
1982,
8663,
10824,
665,
3407,
16932,
839,
616,
1899,
1475,
7608,
536,
1758,
1157,
14631,
247,
2266,
31245,
964,
496,
3919,
21930,
1157,
253,
6692,
10098,
247,
5536,
4828,
1214,
14,
33,
2983,
1157,
534,
369,
3531,
896,
342,
5536,
32853,
964,
2732,
436,
1157,
253,
4112,
327,
378,
529,
404,
6169,
3395,
8127,
4228,
1157,
347,
253,
6692,
7106,
8558,
327,
8790,
11347,
1157,
285,
253,
1982,
5621,
9703,
281,
5283,
247,
7194,
14397,
28112,
7106,
327,
11850,
253,
31245,
1475,
7608,
536,
1758,
964,
2490,
496,
3563,
21930,
1157,
347,
629,
273,
5827,
281,
1959,
1982,
10824,
598,
323,
253,
22075,
4544,
1157,
253,
9943,
3719,
17729,
1905,
11253,
273,
7194,
353,
6133,
571,
10824,
762,
253,
3923,
273,
22389,
4214,
20923,
12933,
9236,
1905,
2335,
689,
8294,
323,
32683,
5871,
327,
378,
529,
404,
6169,
432,
253,
2448,
1594,
3252,
17729,
964,
9943,
5621,
3407,
20948,
327,
253,
8930,
875,
4596,
285,
4565,
21930,
1157,
8523,
14631,
3746,
1475,
253,
1982,
2613,
387,
7608,
536,
1758,
964,
12571,
281,
31215,
9260,
1157,
12933,
9236,
49294,
6566,
326,
253,
6692,
5621,
327,
253,
8930,
31050,
816,
1722,
1214,
13,
33,
6783,
1821,
1157,
285,
344,
17912,
4425,
326,
253,
45373,
651,
15142,
271,
13847,
4544,
281,
2590,
253,
6692,
432,
378,
529,
404,
6169,
275,
1340,
281,
1959,
616,
10824,
323,
6774,
5871,
11358,
1157,
2581,
685,
11850,
253,
14397,
28112,
253,
1982,
5621,
574,
8671,
964,
1723,
1157,
32683,
8197,
273,
6692,
4757,
497,
1996,
1119,
281,
320,
13711,
314,
31215,
285,
846,
253,
2137,
352,
369,
1119,
326,
253,
1180,
273,
6692,
327,
253,
8930,
387,
436,
673,
369,
8003,
281,
3387,
1214,
13,
33,
20181,
964,
2490,
380,
4544,
326,
9943,
499,
23217,
3715,
994,
7193,
1264,
4858,
14137,
1163,
275,
253,
6146,
1157,
352,
369,
9355,
326,
6692,
5621,
651,
320,
6726,
715,
253,
6891,
11228,
261,
33489,
285,
6221,
3706,
275,
253,
9145,
253,
21935,
273,
29169,
28188,
651,
1918,
253,
45373,
1453,
273,
253,
9268,
1108,
8935,
44201,
273,
2746,
1157,
347,
973,
347,
2438,
1573,
731,
6055,
1411,
2007,
4828,
1214,
14,
33,
8104,
1157,
1223,
671,
5909,
253,
1039,
323,
247,
4446,
281,
253,
9268,
8852,
3706,
285,
253,
2022,
4544,
275,
253,
6420,
1157,
835,
253,
10713,
273,
253,
6692,
5621,
497,
16761,
1475,
11262,
249,
964,
4928,
187,
426,
426,
426,
46296,
9727,
426,
426,
426,
4928,
187,
11977,
253,
9232,
273,
29169,
28188,
275,
4565,
21930,
1157,
253,
9943,
818,
394,
34412,
574,
644,
4395,
6420,
285,
18564,
281,
253,
4446,
4404,
11262,
249,
964,
496,
3563,
3919,
285,
2393,
4162,
18824,
1157,
597,
574,
13465,
253,
15764,
273,
7335,
727,
686,
84,
10381,
2555,
846,
534,
247,
4864,
298,
962,
3560,
347,
253,
45373,
19925,
281,
48399,
616,
6186,
3104,
964,
16257,
1157,
253,
19404,
273,
253,
6692,
3490,
1157,
11306,
1471,
7909,
1701,
407,
616,
13313,
1157,
29504,
4404,
253,
14025,
263,
2284,
7121,
964,
380,
9943,
495,
5784,
9333,
369,
840,
6960,
281,
21058,
697,
7170,
6420,
1157,
1146,
42603,
342,
26475,
253,
388,
1792,
7121,
1157,
1223,
253,
14025,
263,
2284,
369,
671,
2908,
347,
271,
346,
10444,
8103,
346,
964,
6692,
4757,
275,
253,
11053,
8776,
369,
5998,
407,
253,
45373,
387,
670,
884,
1214,
13,
33,
6783,
1821,
1157,
273,
534,
374,
1214,
13,
33,
7469,
497,
6566,
281,
320,
3587,
18327,
253,
495,
5784,
9333,
964,
380,
1458,
394,
34412,
369,
2783,
281,
320,
253,
954,
7407,
273,
253,
9943,
5085,
327,
378,
529,
404,
6169,
387,
253,
673,
285,
369,
4395,
598,
281,
29522,
253,
818,
394,
34412,
1157,
534,
369,
275,
878,
273,
1551,
964,
2490,
6166,
253,
3923,
273,
20202,
47176,
35578,
68,
1584,
44591,
253,
1458,
394,
34412,
14278,
273,
1264,
32468,
11750,
267,
621,
347,
973,
347,
767,
10824,
273,
20470,
432,
253,
374,
1227,
577,
394,
5360,
9698,
30068,
1157,
19414,
432,
253,
1458,
394,
7327,
6487,
1157,
247,
9378,
273,
20029,
1214,
14,
33,
5823,
11942,
432,
686,
530,
686,
32592,
45733,
1157,
1673,
29923,
432,
253,
374,
2109,
7327,
30068,
1157,
285,
247,
1180,
273,
4577,
1329,
5085,
964,
380,
9135,
394,
1227,
8978,
394,
33166,
35843,
2335,
689,
8294,
323,
7335,
727,
686,
84,
10381,
2555,
15706,
253,
2030,
394,
33166,
35843,
1223,
253,
2164,
394,
33166,
35843,
2335,
598,
247,
1899,
2439,
253,
11262,
249,
8669,
964,
380,
43594,
686,
84,
2626,
40716,
1905,
253,
8988,
394,
1227,
3925,
394,
33166,
35843,
1905,
858,
417,
6604,
731,
1919,
253,
5068,
273,
2552,
1157,
285,
594,
253,
818,
394,
34412,
686,
84,
898,
394,
33166,
35843,
4821,
869,
19891,
5871,
6146,
273,
253,
16251,
900,
7121,
1157,
275,
253,
35290,
8678,
2170,
1157,
1919,
253,
8988,
394,
1227,
3925,
394,
812,
27883,
3603,
281,
29522,
731,
964,
3840,
40835,
1157,
253,
374,
1227,
854,
394,
11293,
6575,
36365,
7269,
275,
247,
4618,
12423,
281,
253,
6420,
1214,
14,
33,
9268,
1157,
21449,
253,
43594,
686,
84,
1669,
1157,
390,
14730,
1157,
21499,
964,
2490,
380,
6692,
5621,
18327,
253,
45373,
20651,
281,
253,
721,
394,
9333,
1157,
762,
253,
3923,
273,
22389,
4214,
20613,
307,
297,
86,
329,
5914,
12727,
964,
329,
5914,
12727,
574,
644,
6960,
281,
5778,
253,
9943,
7170,
875,
253,
14025,
263,
2284,
285,
253,
388,
1792,
323,
347,
1048,
347,
1896,
1157,
285,
342,
841,
7367,
275,
2564,
344,
574,
8038,
247,
1180,
273,
2266,
2792,
2112,
253,
9943,
686,
84,
3264,
1386,
273,
7170,
964,
380,
9025,
686,
84,
32468,
574,
9606,
11306,
275,
253,
2045,
6680,
1475,
7335,
727,
686,
84,
10381,
2555,
285,
347,
247,
9936,
1157,
2067,
5085,
574,
281,
320,
294,
34092,
390,
47780,
312,
456,
964,
380,
2914,
1386,
6887,
497,
7922,
281,
253,
721,
394,
7327,
3975,
21347,
30068,
1157,
1223,
253,
2145,
394,
33166,
30068,
369,
281,
2186,
2620,
2266,
10801,
281,
616,
10581,
2112,
285,
15395,
504,
253,
11262,
249,
8669,
1157,
13205,
686,
329,
686,
949,
281,
686,
444,
686,
964,
380,
721,
394,
7327,
285,
577,
394,
7327,
32592,
3975,
21347,
3667,
3825,
1097,
2918,
2266,
10801,
2007,
896,
1157,
13205,
686,
401,
686,
285,
686,
443,
686,
964,
380,
3495,
5784,
33166,
30068,
369,
4845,
275,
253,
10581,
1157,
835,
352,
369,
1146,
8756,
23572,
1563,
11655,
9606,
1309,
253,
2983,
327,
7335,
727,
686,
84,
10381,
2555,
964,
4928,
187,
426,
426,
15764,
426,
426,
4928,
19668,
426,
426,
426,
36808,
281,
253,
14025,
263,
2284,
426,
426,
426,
4928,
187,
380,
1458,
394,
34412,
2335,
689,
253,
3579,
6887,
432,
253,
818,
394,
34412,
327,
1722,
4162,
964,
23280,
46491,
574,
253,
2164,
394,
33166,
35843,
327,
253,
11262,
249,
8669,
1475,
611,
2771,
16611,
1157,
342,
253,
9135,
394,
1227,
8978,
394,
1475,
4033,
4595,
1157,
6146,
1214,
14,
33,
9268,
273,
7335,
727,
686,
84,
10381,
2555,
1157,
285,
253,
8988,
394,
1227,
3925,
394,
1157,
672,
352,
7244,
281,
29522,
253,
898,
394,
1157,
651,
320,
15471,
2007,
9268,
15395,
504,
247,
6561,
1157,
7529,
3540,
1929,
281,
253,
45373,
347,
253,
11293,
6575,
8669,
964,
5761,
1897,
1996,
1157,
44591,
2959,
253,
1340,
281,
25301,
253,
7170,
4404,
253,
14025,
263,
2284,
432,
12933,
9236,
1157,
665,
5907,
779,
253,
1329,
273,
253,
3285,
394,
34412,
347,
247,
6109,
15917,
275,
1083,
273,
5982,
4828,
1214,
14,
33,
2983,
964,
496,
247,
1818,
281,
253,
21041,
326,
253,
45373,
574,
3786,
7091,
2720,
281,
253,
8615,
1475,
7335,
727,
686,
84,
10381,
2555,
1157,
432,
2393,
2552,
597,
7269,
327,
247,
767,
1214,
14,
33,
40716,
2914,
1157,
3185,
273,
581,
964,
380,
2164,
394,
33166,
35843,
369,
275,
253,
3889,
1157,
4886,
2112,
253,
11262,
249,
8669,
342,
253,
9135,
394,
1227,
8978,
394,
15233,
697,
21499,
285,
10581,
3706,
1223,
608,
1214,
13,
33,
20181,
340,
69,
313,
577,
1214,
13,
33,
12891,
278,
2387,
2007,
40835,
253,
8988,
394,
1227,
3925,
394,
33166,
35843,
1157,
764,
5537,
327,
495,
2552,
1157,
7269,
2112,
253,
11293,
6575,
8669,
432,
35290,
8678,
1157,
846,
3192,
689,
432,
253,
898,
394,
33166,
35843,
964,
2490,
39207,
3579,
762,
247,
49801,
2534,
14372,
347,
597,
4395,
4457,
14391,
249,
302,
86,
1157,
253,
2164,
394,
33166,
35843,
369,
253,
806,
281,
3057,
253,
6692,
1157,
8785,
562,
271,
2983,
1411,
6692,
6887,
1475,
12073,
664,
686,
84,
16611,
327,
1722,
4162,
964,
6023,
7551,
407,
247,
34883,
273,
6397,
34223,
20470,
432,
253,
374,
1227,
577,
394,
5360,
9698,
30068,
1157,
271,
29923,
2534,
14372,
534,
11226,
689,
18450,
24383,
1157,
767,
32468,
4413,
1905,
686,
330,
686,
285,
686,
399,
686,
1905,
432,
253,
2164,
394,
13964,
253,
1899,
1223,
1529,
1905,
686,
329,
686,
6487,
1905,
4824,
562,
247,
47152,
637,
3703,
38527,
281,
2624,
1529,
3540,
2007,
6146,
4404,
29552,
4595,
285,
388,
682,
74,
964,
380,
1669,
3579,
2567,
1905,
686,
399,
686,
6487,
1905,
4925,
697,
8103,
1293,
7596,
3706,
2299,
1157,
686,
330,
686,
6487,
1905,
327,
253,
987,
2112,
342,
253,
34883,
273,
20470,
1905,
2210,
598,
1411,
13827,
6692,
5052,
285,
3395,
30743,
2400,
1066,
964,
686,
329,
686,
6487,
671,
3395,
32957,
4206,
275,
5536,
8615,
2112,
253,
388,
682,
74,
3540,
964,
496,
1329,
273,
686,
329,
686,
6487,
1157,
6397,
300,
21400,
2210,
3579,
285,
1218,
16386,
253,
31500,
1157,
35565,
949,
253,
762,
25869,
281,
10313,
2067,
6692,
12575,
28904,
1157,
534,
497,
11069,
407,
253,
9943,
44878,
964,
1284,
2360,
6497,
1157,
686,
330,
686,
6487,
25640,
275,
1078,
501,
14583,
253,
2983
] |
= New Jersey Route 29 =
Route 29 is a state highway in the U.S. state of New Jersey. It runs 34 @.@ 76 mi ( 55 @.@ 94 km ) from an interchange with Interstate 295 ( I @-@ 295 ) in Hamilton Township in Mercer County, where it continues as I @-@ 195, to Route 12 ( Bridge Street / Race Street ) in Frenchtown, Hunterdon County. Between the southern terminus and I @-@ 95, the route is a mix of freeway and four @-@ lane divided highway that runs along the Delaware River through Trenton. This section includes a truck @-@ restricted tunnel that was built along the river near historic houses and Riverview Cemetery. North of I @-@ 95, Route 29 turns into a scenic and mostly two @-@ lane highway. North of the South Trenton Tunnel, it is designated the Delaware River Scenic Byway, a New Jersey Scenic Byway and National Scenic Byway, that follows the Delaware River in mostly rural sections of Mercer County and Hunterdon County. The obsolete Delaware & Raritan Canal usually stands between the river and the highway. Most sections of this portion of Route 29 are completely shaded due to the tree canopy. Route 29 also has a spur, Route 129, which connects Route 29 to U.S. Route 1 ( US 1 ) in Trenton.
Route 29 was initially designated in 1927 to run from downtown Trenton to Newark, following present @-@ day Route 179 and US 202 between Lambertville and Somerville and US 22 between Somerville and Newark. The route between Lambertville and Frenchtown was originally Route 29A. In 1953, Route 29 was shifted to follow the alignment of Route 29A to avoid the concurrencies with the U.S. Routes. Route 29 between South Warren Street in Trenton and I @-@ 95 in Ewing Township was upgraded to a four @-@ lane highway, with a portion of freeway, in the 1950s and 1960s. In 1995, the southern freeway part of Route 29 between I @-@ 195 / I @-@ 295 and Route 129 in Hamilton Township was completed. This freeway section was linked to the rest of Route 29 by a tunnel completed in 2002. A realignment of Route 29 in Lambertville by the 2000s made the route concurrent with the entire length of 0 @.@ 26 @-@ mile @-@ long ( 0 @.@ 42 km ) Route 165.
= = Route description = =
= = = Mercer County = = =
Route 29 begins at a modified cloverleaf interchange with Interstate 195 and Interstate 295 in Hamilton Township, and it serves as the western continuation of Interstate 195, heading to the northwest as a six @-@ lane freeway. The route interchanges with Route 129, a spur of Route 29 which connects to U.S. Route 1, at a partial interchange with a northbound exit and southbound entrance. Route 29 narrows to four lanes past this interchange and crosses into Trenton. The route comes to a southbound exit and entrance for Lamberton Road. At this point, Route 29 becomes the Delaware River Scenic Byway, a state scenic byway that was also designated a National Scenic Byway in 2009. Route 29 runs along the bank of the Delaware River and enters a truck @-@ restricted tunnel that passes by historic houses and Riverview Cemetery. Within this tunnel, Route 29 features a southbound exit and northbound entrance for Lalor Street. The route emerges from the tunnel as the John Fitch Parkway, passes by Arm & Hammer Park, and comes to a traffic light at Thunder Road / Cass Street where it widens back to six lanes. Route 29 meets South Warren Street at another traffic light. The median widens and it passes under the Morrisville @-@ Trenton Railroad Bridge, which carries the Amtrak Northeast Corridor over the Delaware River.
Route 29 passes under the Trenton @-@ Morrisville Toll Bridge, which carries U.S. Route 1 over the Delaware River. Access to U.S. Route 1 southbound is provided by ramps from Route 29 while access to Route 29 from northbound U.S. Route 1 is provided by South Warren Street. Route 29 passes under the Lower Trenton Bridge and the median narrows again. It interchanges with Market Street, which provides access to Route 33, and then features an interchange which provides access to the New Jersey State House with a northbound exit and southbound entrance. Route 29 crosses the Assunpink Creek and features an interchange which provides access to South Warren Street with exits in both directions but only a northbound entrance. Route 29 continues to a cloverleaf interchange with Calhoun Street ( County Route 653 ), which provides access to the Calhoun Street Bridge over the Delaware River. Riverside Avenue exits as a frontage road paralleling the northbound lanes of Route 29 before the road features a northbound exit for Hermitage Avenue. Route 29 comes to a partial interchange with Parkside Avenue, with a northbound exit and southbound entrance, and then features a northbound exit for South Eastfield Avenue.
The freeway portion of Route 29 ends at the intersection with Lee Avenue and it continues northwest along the Delaware River as a four @-@ lane divided highway. The route meets the southern terminus of County Route 579 ( Sullivan Way ). The median widens again and then narrows as the route meets the southern terminus of Route 175, a former alignment of Route 29 that currently serves as a frontage road. Route 29 crosses into Ewing Township and becomes the Daniel Bray Highway. It passes under the West Trenton Railroad Bridge, which carries CSX and SEPTA ’ s West Trenton Line over the Delaware River. Route 29 intersects Route 175 again and then comes to a complex interchange with Interstate 95, with the ramps within the median of Route 29, just to the east of the Scudder Falls Bridge.
Upon crossing the Delaware and Raritan Canal, Route 29 narrows down to a two @-@ lane undivided road called River Road. It continues along the Delaware River, next to the Delaware and Raritan Canal, which runs between Route 29 and the river. The route intersects the northern terminus of Route 175. Farther north, Route 29 enters Hopewell Township and continues into a more rural setting shaded with trees. Route 29 heads to Washington Crossing State Park, where it intersects County Route 546, which heads east on Washington Crossing @-@ Pennington Road, and the approach to the Washington Crossing Bridge, which continues into Pennsylvania as Pennsylvania Route 532. Route 29 continues north along the Delaware River through Titusville, passing by Washington Crossing State Park.
= = = Hunterdon County = = =
Route 29 crosses into West Amwell Township in Hunterdon County. It enters Lambertville, where Route 29 becomes a four @-@ lane divided highway. At the intersection of South Main Street, Route 29 becomes concurrent with Route 165. The route becomes an undivided highway again and meets the western terminus of County Route 518 ( Brunswick Street ). It meets Route 179 ( Bridge Street ), where Route 165 ends and Route 29 turns west for a one @-@ block wrong @-@ way concurrency with the two @-@ lane, undivided Route 179, lasting to the intersection of Main Street, where Route 29 turns north on Main Street.
Route 29 follows Main Street north through Lambertville, crossing into Delaware Township. It comes to an interchange with U.S. Route 202 just east of the New Hope @-@ Lambertville Toll Bridge, with access to northbound U.S. Route 202 and from southbound U.S. Route 202 provided by way of Alexauken Creek Road. Route 29 continues along the Delaware River and enters Stockton. The route intersects Bridge Street, which crosses the Delaware River on the Centre Bridge @-@ Stockton Bridge and continues into Pennsylvania as Pennsylvania Route 263. Shortly after that intersection, Route 29 intersects the southern terminus of County Route 523 ( Stockton @-@ Flemington Road ). Route 29 crosses back into Delaware Township, where it meets the southern terminus of County Route 519 ( Kingwood @-@ Stockton Road ).
Route 29 makes a sharp left turn and heads west along the river as a rural road, crossing into Kingwood Township, where the name of the road changes from Main Street to Daniel Bray Highway. Here, it intersects with County Route 651 ( Byram @-@ Kingwood Road ). The route bends to the north and continues along the Delaware River for several miles, crossing into Frenchtown, where the route becomes Trenton Road. Upon entering Frenchtown, an end shield for northbound Route 29 is posted to mark the end of state maintenance, which officially ends at the Washington Street intersection, where maintenance is transferred to the county. Despite this, Route 29 officially continues farther north along Trenton Road to its northern terminus at Route 12 ( Bridge Street / Race Street ), a short distance east of Route 12 ’ s western terminus at the Uhlerstown @-@ Frenchtown Bridge. The southern terminus of County Route 513 is located a block north of the northern terminus of Route 29 along Route 12.
= = History = =
The current route was originally legislated in 1911 as part of the Delaware River Drive, a named state highway that was proposed to run from along the Delaware River from Trenton to the New York border in Montague Township. Route 29 was originally defined in 1927 to run from Trenton to Newark. The original route ran from downtown Trenton along State Street and Sanhican Drive. From there, it followed its current alignment to Lambertville, where it followed present @-@ day Route 179 to Ringoes to present @- | wikitext_103 | [
426,
1457,
8911,
22720,
3285,
426,
4928,
187,
22720,
3285,
310,
247,
1375,
17657,
275,
253,
530,
15,
52,
15,
1375,
273,
1457,
8911,
964,
733,
6613,
5910,
1214,
15,
33,
10909,
3641,
313,
7288,
1214,
15,
33,
11107,
10771,
2387,
432,
271,
28961,
342,
40874,
28195,
313,
309,
1214,
14,
33,
28195,
2387,
275,
9516,
26469,
275,
7612,
1209,
3928,
1157,
835,
352,
7788,
347,
309,
1214,
14,
33,
23627,
1157,
281,
22720,
1249,
313,
15454,
5720,
1227,
23752,
5720,
2387,
275,
5112,
10700,
1157,
20189,
9903,
3928,
964,
17842,
253,
11053,
43259,
285,
309,
1214,
14,
33,
5325,
1157,
253,
7622,
310,
247,
5878,
273,
1959,
1106,
285,
1740,
1214,
14,
33,
18209,
4272,
17657,
326,
6613,
2112,
253,
25794,
7121,
949,
34722,
251,
964,
831,
2593,
3797,
247,
9988,
1214,
14,
33,
11096,
16583,
326,
369,
4270,
2112,
253,
8281,
2822,
14464,
9910,
285,
7121,
1374,
36839,
964,
3729,
273,
309,
1214,
14,
33,
5325,
1157,
22720,
3285,
7819,
715,
247,
49647,
285,
6571,
767,
1214,
14,
33,
18209,
17657,
964,
3729,
273,
253,
3684,
34722,
251,
308,
35989,
1157,
352,
310,
13205,
253,
25794,
7121,
1810,
23876,
2896,
1106,
1157,
247,
1457,
8911,
1810,
23876,
2896,
1106,
285,
3313,
1810,
23876,
2896,
1106,
1157,
326,
3637,
253,
25794,
7121,
275,
6571,
11393,
7118,
273,
7612,
1209,
3928,
285,
20189,
9903,
3928,
964,
380,
40072,
25794,
708,
416,
274,
10157,
33042,
3798,
9572,
875,
253,
8281,
285,
253,
17657,
964,
5595,
7118,
273,
436,
5110,
273,
22720,
3285,
403,
4336,
37042,
1955,
281,
253,
5202,
39625,
964,
22720,
3285,
671,
556,
247,
36057,
1157,
22720,
17181,
1157,
534,
23417,
22720,
3285,
281,
530,
15,
52,
15,
22720,
337,
313,
1982,
337,
2387,
275,
34722,
251,
964,
2490,
22720,
3285,
369,
8523,
13205,
275,
31687,
281,
1408,
432,
17207,
34722,
251,
281,
35699,
1157,
1563,
1246,
1214,
14,
33,
1388,
22720,
24062,
285,
1982,
22038,
875,
40233,
6169,
285,
27516,
43382,
285,
1982,
3307,
875,
27516,
43382,
285,
35699,
964,
380,
7622,
875,
40233,
6169,
285,
5112,
10700,
369,
8927,
22720,
3285,
34,
964,
496,
24113,
1157,
22720,
3285,
369,
14728,
281,
956,
253,
12420,
273,
22720,
3285,
34,
281,
3693,
253,
15038,
24034,
342,
253,
530,
15,
52,
15,
30852,
265,
964,
22720,
3285,
875,
3684,
17966,
5720,
275,
34722,
251,
285,
309,
1214,
14,
33,
5325,
275,
444,
7706,
26469,
369,
29101,
281,
247,
1740,
1214,
14,
33,
18209,
17657,
1157,
342,
247,
5110,
273,
1959,
1106,
1157,
275,
253,
13918,
84,
285,
11994,
84,
964,
496,
8878,
1157,
253,
11053,
1959,
1106,
629,
273,
22720,
3285,
875,
309,
1214,
14,
33,
23627,
1227,
309,
1214,
14,
33,
28195,
285,
22720,
17181,
275,
9516,
26469,
369,
6312,
964,
831,
1959,
1106,
2593,
369,
7939,
281,
253,
1551,
273,
22720,
3285,
407,
247,
16583,
6312,
275,
6752,
964,
329,
1524,
5930,
273,
22720,
3285,
275,
40233,
6169,
407,
253,
5307,
84,
1160,
253,
7622,
17336,
342,
253,
2862,
2978,
273,
470,
1214,
15,
33,
3436,
1214,
14,
33,
13915,
1214,
14,
33,
1048,
313,
470,
1214,
15,
33,
5976,
10771,
2387,
22720,
19939,
964,
4928,
187,
426,
426,
22720,
5740,
426,
426,
4928,
19668,
426,
426,
426,
7612,
1209,
3928,
426,
426,
426,
4928,
187,
22720,
3285,
9513,
387,
247,
7321,
502,
1189,
26342,
28961,
342,
40874,
23627,
285,
40874,
28195,
275,
9516,
26469,
1157,
285,
352,
11029,
347,
253,
10439,
26272,
273,
40874,
23627,
1157,
13590,
281,
253,
29979,
347,
247,
2800,
1214,
14,
33,
18209,
1959,
1106,
964,
380,
7622,
734,
31973,
342,
22720,
17181,
1157,
247,
36057,
273,
22720,
3285,
534,
23417,
281,
530,
15,
52,
15,
22720,
337,
1157,
387,
247,
7898,
28961,
342,
247,
6146,
9458,
10463,
285,
6420,
9458,
13032,
964,
22720,
3285,
6891,
84,
281,
1740,
24914,
2469,
436,
28961,
285,
25808,
715,
34722,
251,
964,
380,
7622,
3249,
281,
247,
6420,
9458,
10463,
285,
13032,
323,
418,
7272,
1299,
8669,
964,
2058,
436,
1127,
1157,
22720,
3285,
4916,
253,
25794,
7121,
1810,
23876,
2896,
1106,
1157,
247,
1375,
49647,
407,
1106,
326,
369,
671,
13205,
247,
3313,
1810,
23876,
2896,
1106,
275,
4748,
964,
22720,
3285,
6613,
2112,
253,
4310,
273,
253,
25794,
7121,
285,
19413,
247,
9988,
1214,
14,
33,
11096,
16583,
326,
11999,
407,
14464,
9910,
285,
7121,
1374,
36839,
964,
15092,
436,
16583,
1157,
22720,
3285,
3386,
247,
6420,
9458,
10463,
285,
6146,
9458,
13032,
323,
48877,
263,
5720,
964,
380,
7622,
32361,
432,
253,
16583,
347,
253,
2516,
401,
2682,
4913,
1106,
1157,
11999,
407,
5360,
708,
44591,
4913,
1157,
285,
3249,
281,
247,
7137,
1708,
387,
27926,
8669,
1227,
16211,
5720,
835,
352,
5261,
561,
896,
281,
2800,
24914,
964,
22720,
3285,
16382,
3684,
17966,
5720,
387,
1529,
7137,
1708,
964,
380,
8876,
5261,
561,
285,
352,
11999,
762,
253,
17771,
6169,
1214,
14,
33,
34722,
251,
31606,
15454,
1157,
534,
15814,
253,
3052,
7604,
76,
40996,
3094,
6992,
263,
689,
253,
25794,
7121,
964,
2490,
22720,
3285,
11999,
762,
253,
34722,
251,
1214,
14,
33,
17771,
6169,
308,
2555,
15454,
1157,
534,
15814,
530,
15,
52,
15,
22720,
337,
689,
253,
25794,
7121,
964,
13135,
281,
530,
15,
52,
15,
22720,
337,
6420,
9458,
310,
2530,
407,
391,
11441,
432,
22720,
3285,
1223,
2289,
281,
22720,
3285,
432,
6146,
9458,
530,
15,
52,
15,
22720,
337,
310,
2530,
407,
3684,
17966,
5720,
964,
22720,
3285,
11999,
762,
253,
20672,
34722,
251,
15454,
285,
253,
8876,
6891,
84,
969,
964,
733,
734,
31973,
342,
15111,
5720,
1157,
534,
3400,
2289,
281,
22720,
5922,
1157,
285,
840,
3386,
271,
28961,
534,
3400,
2289,
281,
253,
1457,
8911,
2418,
3995,
342,
247,
6146,
9458,
10463,
285,
6420,
9458,
13032,
964,
22720,
3285,
25808,
253,
2903,
328,
49723,
16611,
285,
3386,
271,
28961,
534,
3400,
2289,
281,
3684,
17966,
5720,
342,
39852,
275,
1097,
10746,
533,
760,
247,
6146,
9458,
13032,
964,
22720,
3285,
7788,
281,
247,
502,
1189,
26342,
28961,
342,
2263,
73,
415,
5720,
313,
3928,
22720,
721,
3357,
2387,
1157,
534,
3400,
2289,
281,
253,
2263,
73,
415,
5720,
15454,
689,
253,
25794,
7121,
964,
28160,
504,
14216,
39852,
347,
247,
2914,
486,
3971,
29736,
1981,
253,
6146,
9458,
24914,
273,
22720,
3285,
1078,
253,
3971,
3386,
247,
6146,
9458,
10463,
323,
19423,
13638,
14216,
964,
22720,
3285,
3249,
281,
247,
7898,
28961,
342,
31493,
504,
14216,
1157,
342,
247,
6146,
9458,
10463,
285,
6420,
9458,
13032,
1157,
285,
840,
3386,
247,
6146,
9458,
10463,
323,
3684,
5791,
3423,
14216,
964,
2490,
380,
1959,
1106,
5110,
273,
22720,
3285,
7637,
387,
253,
15171,
342,
8652,
14216,
285,
352,
7788,
29979,
2112,
253,
25794,
7121,
347,
247,
1740,
1214,
14,
33,
18209,
4272,
17657,
964,
380,
7622,
16382,
253,
11053,
43259,
273,
3928,
22720,
608,
2787,
313,
26211,
10834,
2387,
964,
380,
8876,
5261,
561,
969,
285,
840,
6891,
84,
347,
253,
7622,
16382,
253,
11053,
43259,
273,
22720,
20105,
1157,
247,
3438,
12420,
273,
22720,
3285,
326,
4390,
11029,
347,
247,
2914,
486,
3971,
964,
22720,
3285,
25808,
715,
444,
7706,
26469,
285,
4916,
253,
10213,
378,
1402,
21788,
964,
733,
11999,
762,
253,
4255,
34722,
251,
31606,
15454,
1157,
534,
15814,
9404,
57,
285,
6725,
5736,
34,
15956,
256,
4255,
34722,
251,
10243,
689,
253,
25794,
7121,
964,
22720,
3285,
23965,
84,
22720,
20105,
969,
285,
840,
3249,
281,
247,
2570,
28961,
342,
40874,
5325,
1157,
342,
253,
391,
11441,
1561,
253,
8876,
273,
22720,
3285,
1157,
816,
281,
253,
9268,
273,
253,
1810,
438,
491,
24618,
15454,
964,
2490,
15797,
14270,
253,
25794,
285,
416,
274,
10157,
33042,
1157,
22720,
3285,
6891,
84,
1066,
281,
247,
767,
1214,
14,
33,
18209,
440,
2154,
1356,
3971,
1925,
7121,
8669,
964,
733,
7788,
2112,
253,
25794,
7121,
1157,
1735,
281,
253,
25794,
285,
416,
274,
10157,
33042,
1157,
534,
6613,
875,
22720,
3285,
285,
253,
8281,
964,
380,
7622,
23965,
84,
253,
11186,
43259,
273,
22720,
20105,
964,
401,
435,
379,
6146,
1157,
22720,
3285,
19413,
15541,
4714,
26469,
285,
7788,
715,
247,
625,
11393,
4758,
37042,
342,
7139,
964,
22720,
3285,
9851,
281,
5041,
10547,
272,
2418,
4913,
1157,
835,
352,
23965,
84,
3928,
22720,
43229,
1157,
534,
9851,
9268,
327,
5041,
10547,
272,
1214,
14,
33,
7009,
920,
1299,
8669,
1157,
285,
253,
2746,
281,
253,
5041,
10547,
272,
15454,
1157,
534,
7788,
715,
11637,
347,
11637,
22720,
40062,
964,
22720,
3285,
7788,
6146,
2112,
253,
25794,
7121,
949,
308,
13865,
6169,
1157,
8136,
407,
5041,
10547,
272,
2418,
4913,
964,
4928,
187,
426,
426,
426,
20189,
9903,
3928,
426,
426,
426,
4928,
187,
22720,
3285,
25808,
715,
4255,
3052,
4714,
26469,
275,
20189,
9903,
3928,
964,
733,
19413,
40233,
6169,
1157,
835,
22720,
3285,
4916,
247,
1740,
1214,
14,
33,
18209,
4272,
17657,
964,
2058,
253,
15171,
273,
3684,
11505,
5720,
1157,
22720,
3285,
4916,
17336,
342,
22720,
19939,
964,
380,
7622,
4916,
271,
440,
2154,
1356,
17657,
969,
285,
16382,
253,
10439,
43259,
273,
3928,
22720,
43111,
313,
41813,
5720,
2387,
964,
733,
16382,
22720,
24062,
313,
15454,
5720,
2387,
1157,
835,
22720,
19939,
7637,
285,
22720,
3285,
7819,
8935,
323,
247,
581,
1214,
14,
33,
2972,
3430,
1214,
14,
33,
1039,
15038,
7549,
342,
253,
767,
1214,
14,
33,
18209,
1157,
440,
2154,
1356,
22720,
24062,
1157,
21692,
281,
253,
15171,
273,
11505,
5720,
1157,
835,
22720,
3285,
7819,
6146,
327,
11505,
5720,
964,
2490,
22720,
3285,
3637,
11505,
5720,
6146,
949,
40233,
6169,
1157,
14270,
715,
25794,
26469,
964,
733,
3249,
281,
271,
28961,
342,
530,
15,
52,
15,
22720,
22038,
816,
9268,
273,
253,
1457,
15541,
1214,
14,
33,
40233,
6169,
308,
2555,
15454,
1157,
342,
2289,
281,
6146,
9458,
530,
15,
52,
15,
22720,
22038,
285,
432,
6420,
9458,
530,
15,
52,
15,
22720,
22038,
2530,
407,
1039,
273,
6539,
1952,
3612,
16611,
8669,
964,
22720,
3285,
7788,
2112,
253,
25794,
7121,
285,
19413,
15725,
1299,
964,
380,
7622,
23965,
84,
15454,
5720,
1157,
534,
25808,
253,
25794,
7121,
327,
253,
12169,
15454,
1214,
14,
33,
15725,
1299,
15454,
285,
7788,
715,
11637,
347,
11637,
22720,
32515,
964,
35775,
846,
326,
15171,
1157,
22720,
3285,
23965,
84,
253,
11053,
43259,
273,
3928,
22720,
33485,
313,
15725,
1299,
1214,
14,
33,
48585,
1299,
8669,
2387,
964,
22720,
3285,
25808,
896,
715,
25794,
26469,
1157,
835,
352,
16382,
253,
11053,
43259,
273,
3928,
22720,
45502,
313,
4377,
5308,
1214,
14,
33,
15725,
1299,
8669,
2387,
964,
2490,
22720,
3285,
2789,
247,
9479,
1669,
1614,
285,
9851,
8935,
2112,
253,
8281,
347,
247,
11393,
3971,
1157,
14270,
715,
4377,
5308,
26469,
1157,
835,
253,
1416,
273,
253,
3971,
2544,
432,
11505,
5720,
281,
10213,
378,
1402,
21788,
964,
3856,
1157,
352,
23965,
84,
342,
3928,
22720,
721,
3712,
313,
2896,
3358,
1214,
14,
33,
4377,
5308,
8669,
2387,
964,
380,
7622,
270,
1727,
281,
253,
6146,
285,
7788,
2112,
253,
25794,
7121,
323,
2067,
6574,
1157,
14270,
715,
5112,
10700,
1157,
835,
253,
7622,
4916,
34722,
251,
8669,
964,
15797,
11734,
5112,
10700,
1157,
271,
990,
12831,
323,
6146,
9458,
22720,
3285,
310,
9269,
281,
1616,
253,
990,
273,
1375,
9363,
1157,
534,
15335,
7637,
387,
253,
5041,
5720,
15171,
1157,
835,
9363,
310,
9495,
281,
253,
9635,
964,
9937,
436,
1157,
22720,
3285,
15335,
7788,
21816,
6146,
2112,
34722,
251,
8669,
281,
697,
11186,
43259,
387,
22720,
1249,
313,
15454,
5720,
1227,
23752,
5720,
2387,
1157,
247,
2159,
4181,
9268,
273,
22720,
1249,
15956,
256,
10439,
43259,
387,
253,
41932,
2146,
39225,
1214,
14,
33,
5112,
10700,
15454,
964,
380,
11053,
43259,
273,
3928,
22720,
40959,
310,
4441,
247,
2972,
6146,
273,
253,
11186,
43259,
273,
22720,
3285,
2112,
22720,
1249,
964,
4928,
187,
426,
426,
9541,
426,
426,
4928,
187,
380,
1655,
7622,
369,
8927,
8269,
456,
275,
34283,
347,
629,
273,
253,
25794,
7121,
19672,
1157,
247,
4907,
1375,
17657,
326,
369,
4081,
281,
1408,
432,
2112,
253,
25794,
7121,
432,
34722,
251,
281,
253,
1457,
2816,
5680,
275,
7812,
3611,
26469,
964,
22720,
3285,
369,
8927,
2931,
275,
31687,
281,
1408,
432,
34722,
251,
281,
35699,
964,
380,
3236,
7622,
6337,
432,
17207,
34722,
251,
2112,
2418,
5720,
285,
5003,
73,
9593,
19672,
964,
4325,
627,
1157,
352,
3560,
697,
1655,
12420,
281,
40233,
6169,
1157,
835,
352,
3560,
1246,
1214,
14,
33,
1388,
22720,
24062,
281,
22668,
13347,
281,
1246,
1214,
14
] |
= Shikamaru Nara =
Shikamaru Nara ( 奈良 シカマル, Nara Shikamaru ) is a fictional character in the Naruto manga and anime series created by Masashi Kishimoto. In the anime and manga, Shikamaru is a ninja affiliated with the village of Konohagakure. He is a member of Team 10, a group of ninja consisting of himself, Choji Akimichi, Ino Yamanaka, and team leader Asuma Sarutobi. Shikamaru is portrayed as a lazy character, unwilling to apply his prodigious intelligence ; Kishimoto has noted that he likes Shikamaru due to his easygoing nature. Outside of the Naruto anime and manga, Shikamaru has appeared in four of the feature films in the series, as well as several other media relating to the series, including video games and original video animations.
Numerous anime and manga publications have commented on Shikamaru's character. Many reviewers commented on his laziness and intelligence, and noted his transformation into a leader ; Anime News Network celebrated Shikamaru's emergence as " an unlikely hero " in the Naruto storyline. Shikamaru has also been highly popular with the Naruto reader base, placing high in several popularity polls. Merchandise based on Shikamaru has been released, including action figures, key chains, and patches.
= = Creation and conception = =
Masashi Kishimoto has noted that he likes Shikamaru due to his easygoing nature despite being a genius, and contrasted him against Sasuke Uchiha's intelligent but abrasive personality. Kishimoto also comically remarked that he would marry Shikamaru if he were a girl, noting that Shikamaru would likely be successful in life. When designing Shikamaru's Part II appearance, Kishimoto wanted to give Shikamaru a unique appearance despite drawing him with a vest that several other ninja wear in the series. As a result, he drew his forehead protector on his arm in order to not obscure his hair.
= = Appearances = =
= = = In Naruto = = =
Shikamaru first major appearance in the series is during the Chunin Exams, bi @-@ yearly exams for ninja who wish to advance in rank. He is part of Team 10 alongside Choji Akimichi and Ino Yamanaka. He is a highly unenthusiastic person, and he attempts to go through life with minimum effort. Contrary to his lazy tendencies, Shikamaru is extremely intelligent ; his teacher, Asuma Sarutobi, determined that Shikamaru's IQ was over 200. Shikamaru's abilities are based on the Shadow Imitation Technique ( 影真似の術, Kagemane no Jutsu, English TV : " Shadow Possession Jutsu " ), the signature technique of his clan, with which he merges his shadow with an opponent's shadow, making them immobilized and forced to mimic Shikamaru's movements. As the series progresses, Shikamaru becomes able to manipulate his shadow in new ways. By Part II of the series, Shikamaru is capable of utilizing multiple shadow @-@ based techniques at once and can lift his shadow from the ground in order to interact with physical objects ; for instance, he can pierce enemies with the shadow tendrils or use them to throw weapons.
Shikamaru approaches the exams with a sense of apathy ; when he battles the Sunagakure ninja Temari, he defeats her but forfeits his match to her, due to his chakra being low. Despite this loss, he is the only ninja among his peers to be promoted to the rank of Chunin, as the overseers of the exams were impressed by the insight and intelligence he demonstrated against Temari. As a Chunin, Shikamaru is appointed the leader of a team to prevent Sasuke Uchiha from defecting to the village of Otogakure. Although Shikamaru's team manages to defeat the Otogakure ninja barring their way, Sasuke manages to escape.
In Part II of the series, Shikamaru is assigned the task of locating two members of the criminal organization Akatsuki. While his team manages to find their targets, the immortal Akatsuki member Hidan kills Asuma Sarutobi during the course of the battle despite Shikamaru's best efforts. After Asuma's funeral, Shikamaru sets out with the surviving members of Team 10 to avenge their mentor with the aid of Kakashi Hatake. As the other deal with Hidan's partner Kakuzu, Shikamaru avenges Asuma by defeating Hidan and making sure the Akatsuki member's body is never found. Following the fight, Shikamaru vows to protect Kurenai Yuhi and Asuma's newborn daughter. He is later assigned to the Fourth Division alongside Temari and Chōji. He is named a proxy general under Gaara. In the series epilogue, stating his personal desire during the series of final battles, Shikamaru becomes advisor to the Seventh Hokage Naruto after marrying Temari and gaining a son in Shikadai Nara.
= = = Appearances in other media = = =
Besides the Naruto anime and manga, Shikamaru is featured in seven of the featured films in the series : in the second film, he aids Naruto Uzumaki and Sakura Haruno in fighting against Haido, a utopian idealist seeking to rule the world with a power called Gelel ; in the fourth, Shikamaru appears in a brief sequence, fighting against a large group of stone soldiers ; in the fifth, Shikamaru is sent alongside Kakashi and Sai in search of the base of the Land of Sky, who plans to invade Konoha ; in the sixth, Shikamaru, alongside Sakura and Sai battle the chimera beast summoned by Hiruko ; in the eight, Shikamaru participates in the battle against the demon Satori ; in the ninth, the Limited Tsukuyomi universe presents a portly Shikamaru, the exact opposite of his teammate, Choji, who becomes the team strategist instead ; and in the tenth, Shikamaru leads the team consisting of himself, Naruto, Sakura, Sai, and Hinata Hyuga that is sent to rescue Hinata's younger sister, Hanabi, who was kidnapped by Toneri Otsutsuki. He is also present in the third original video animation, in which he participates in a tournament. Shikamaru is a playable character in nearly all Naruto video games, including the Clash of Ninja series and the Ultimate Ninja series. In some games, he utilizes variations of his Shadow Imitation Technique not seen in the anime or manga. Naruto Shippūden : Gekitō Ninja Taisen! EX 2 marks the first appearance of Shikamaru in his Part II appearance in a video game.
A light novel titled Shikamaru Hiden : A Cloud Drifting in Silent Darkness, written by Takashi Yano and illustrated by Kishimoto, stars Shikamaru as the main character and narrator. The novel is set two years after the Fourth Ninja War, focusing on Shikamaru's assignment as organizer of the newly formed Shinobi Union to capture a rogue ninja who rules over the distant Land of Silence and attempts to establish a new world order ruled by the common people. It also explores his growing relationship with Temari, culminating in him struggling to name his child with her, years after the end of the novel.
= = Reception = =
Shikamaru has ranked highly in the Weekly Shōnen Jump popularity polls for the series, continuously placing in the top ten and reaching fourth place in one poll. The last such poll was in 2011, in which Shikamaru was in ninth place, behind Sasori and ahead of Hinata. Merchandise based on Shikamaru has also been released, including action figures, key chains, and patches in both his Part I and Part II appearance. NTT customers voted him as their sixteenth favorite black haired male anime character. CyberConnect2 CEO Hiroshi Matsuyama referred to Shikamaru as one of his favorite characters from Naruto.
Several publications for manga, anime, video games, and other related media have commented on Shikamaru's character. IGN stated that Shikamaru was one of their favorite characters in the series, and referred to him as " the poster child for any card @-@ carrying member of Generation X " due to his general lack of enthusiasm and his unwillingness to utilize his potential. In a review of episode 110, IGN praised how Shikamaru managed to transcend his lazy nature in order to take on the mantle of a leader when assigned to lead a team in order to retrieve Sasuke Uchiha and agreed that the decision to make him Chunin was fair. Anime News Network also commented on this development, calling Shikamaru's emergence as " an unlikely hero " one of the highlights of the arc. In a subsequent review of episode 135, in which the mission to retrieve Sasuke has failed and the members of Shikamaru's team were critically injured, IGN lauded the | wikitext_103 | [
426,
1608,
1479,
312,
29883,
427,
4595,
426,
4928,
187,
1608,
1479,
312,
29883,
427,
4595,
313,
209,
17474,
219,
32417,
109,
209,
22545,
28779,
31229,
16509,
1157,
427,
4595,
1608,
1479,
312,
29883,
2387,
310,
247,
29934,
1894,
275,
253,
26417,
14345,
38788,
285,
29326,
2962,
3562,
407,
12962,
17850,
611,
763,
45459,
964,
496,
253,
29326,
285,
38788,
1157,
1608,
1479,
312,
29883,
310,
247,
295,
34483,
27312,
342,
253,
7773,
273,
21928,
1368,
356,
518,
459,
964,
754,
310,
247,
3558,
273,
10589,
884,
1157,
247,
1387,
273,
295,
34483,
11253,
273,
2994,
1157,
13999,
8020,
14181,
303,
22208,
1157,
496,
80,
714,
14990,
10573,
1157,
285,
2285,
6657,
1284,
9307,
9997,
307,
19111,
964,
1608,
1479,
312,
29883,
310,
30804,
347,
247,
22658,
1894,
1157,
27086,
281,
4647,
521,
48864,
784,
9260,
3706,
611,
763,
45459,
556,
4879,
326,
344,
13052,
1608,
1479,
312,
29883,
1955,
281,
521,
3477,
5681,
3753,
964,
35469,
273,
253,
26417,
14345,
29326,
285,
38788,
1157,
1608,
1479,
312,
29883,
556,
5420,
275,
1740,
273,
253,
4735,
6590,
275,
253,
2962,
1157,
347,
973,
347,
2067,
643,
3420,
12600,
281,
253,
2962,
1157,
1690,
3492,
3958,
285,
3236,
3492,
43588,
964,
2490,
43275,
29326,
285,
38788,
16516,
452,
20503,
327,
1608,
1479,
312,
29883,
686,
84,
1894,
964,
6676,
30628,
20503,
327,
521,
826,
91,
1632,
285,
9260,
1157,
285,
4879,
521,
9261,
715,
247,
6657,
3706,
743,
553,
6317,
10701,
19651,
1608,
1479,
312,
29883,
686,
84,
21313,
347,
346,
271,
11543,
8080,
346,
275,
253,
26417,
14345,
44803,
964,
1608,
1479,
312,
29883,
556,
671,
644,
4122,
4633,
342,
253,
26417,
14345,
9414,
2613,
1157,
15606,
1029,
275,
2067,
18395,
22207,
964,
7612,
348,
395,
885,
1754,
327,
1608,
1479,
312,
29883,
556,
644,
4439,
1157,
1690,
2250,
8442,
1157,
2234,
13178,
1157,
285,
20412,
964,
4928,
187,
426,
426,
42087,
285,
22086,
426,
426,
4928,
187,
12962,
17850,
611,
763,
45459,
556,
4879,
326,
344,
13052,
1608,
1479,
312,
29883,
1955,
281,
521,
3477,
5681,
3753,
5747,
1146,
247,
21242,
1157,
285,
48397,
779,
1411,
322,
284,
17936,
530,
4635,
3227,
686,
84,
17497,
533,
45105,
422,
13216,
964,
611,
763,
45459,
671,
389,
1037,
25995,
326,
344,
651,
17129,
1608,
1479,
312,
29883,
604,
344,
497,
247,
3226,
1157,
15806,
326,
1608,
1479,
312,
29883,
651,
2779,
320,
5547,
275,
1495,
964,
2091,
20462,
1608,
1479,
312,
29883,
686,
84,
3512,
3719,
7286,
1157,
611,
763,
45459,
3078,
281,
1918,
1608,
1479,
312,
29883,
247,
4451,
7286,
5747,
10263,
779,
342,
247,
20229,
326,
2067,
643,
295,
34483,
8251,
275,
253,
2962,
964,
1284,
247,
906,
1157,
344,
12491,
521,
22977,
47398,
327,
521,
4430,
275,
1340,
281,
417,
26591,
521,
4707,
964,
4928,
187,
426,
426,
7650,
274,
1972,
426,
426,
4928,
19668,
426,
426,
426,
496,
26417,
14345,
426,
426,
426,
4928,
187,
1608,
1479,
312,
29883,
806,
2201,
7286,
275,
253,
2962,
310,
1309,
253,
775,
328,
249,
1889,
1317,
1157,
1794,
1214,
14,
33,
35126,
34666,
323,
295,
34483,
665,
5730,
281,
7170,
275,
5958,
964,
754,
310,
629,
273,
10589,
884,
12936,
13999,
8020,
14181,
303,
22208,
285,
496,
80,
714,
14990,
10573,
964,
754,
310,
247,
4122,
440,
7385,
28954,
3258,
1436,
1157,
285,
344,
9437,
281,
564,
949,
1495,
342,
5927,
3434,
964,
42748,
281,
521,
22658,
37725,
1157,
1608,
1479,
312,
29883,
310,
6685,
17497,
3706,
521,
9732,
1157,
1284,
9307,
9997,
307,
19111,
1157,
3413,
326,
1608,
1479,
312,
29883,
686,
84,
29147,
369,
689,
1052,
964,
1608,
1479,
312,
29883,
686,
84,
15277,
403,
1754,
327,
253,
28258,
309,
2225,
318,
6439,
2271,
313,
209,
14318,
111,
48561,
13127,
122,
3917,
10716,
230,
1157,
611,
31646,
1351,
642,
500,
307,
3467,
1157,
4383,
5579,
1163,
346,
28258,
23443,
2738,
500,
307,
3467,
346,
2387,
1157,
253,
11118,
5853,
273,
521,
31924,
1157,
342,
534,
344,
14041,
265,
521,
12195,
342,
271,
16871,
686,
84,
12195,
1157,
2403,
731,
41559,
285,
6726,
281,
25066,
1608,
1479,
312,
29883,
686,
84,
11438,
964,
1284,
253,
2962,
42851,
1157,
1608,
1479,
312,
29883,
4916,
2104,
281,
26526,
521,
12195,
275,
747,
4088,
964,
2896,
3512,
3719,
273,
253,
2962,
1157,
1608,
1479,
312,
29883,
310,
7032,
273,
17617,
2709,
12195,
1214,
14,
33,
1754,
5609,
387,
2378,
285,
476,
8488,
521,
12195,
432,
253,
3216,
275,
1340,
281,
8008,
342,
3520,
5113,
3706,
323,
4227,
1157,
344,
476,
18753,
336,
13948,
342,
253,
12195,
5257,
44784,
390,
897,
731,
281,
4710,
8914,
964,
2490,
1608,
1479,
312,
29883,
7274,
253,
34666,
342,
247,
3282,
273,
1049,
7822,
3706,
672,
344,
20303,
253,
4146,
356,
518,
459,
295,
34483,
8582,
1792,
1157,
344,
49204,
617,
533,
24184,
953,
521,
3761,
281,
617,
1157,
1955,
281,
521,
448,
42705,
1146,
1698,
964,
9937,
436,
2957,
1157,
344,
310,
253,
760,
295,
34483,
2190,
521,
21736,
281,
320,
15127,
281,
253,
5958,
273,
775,
328,
249,
1157,
347,
253,
18182,
398,
273,
253,
34666,
497,
17847,
407,
253,
12288,
285,
9260,
344,
5183,
1411,
8582,
1792,
964,
1284,
247,
775,
328,
249,
1157,
1608,
1479,
312,
29883,
310,
11162,
253,
6657,
273,
247,
2285,
281,
3657,
322,
284,
17936,
530,
4635,
3227,
432,
7071,
272,
281,
253,
7773,
273,
14389,
462,
518,
459,
964,
4129,
1608,
1479,
312,
29883,
686,
84,
2285,
26091,
281,
13313,
253,
14389,
462,
518,
459,
295,
34483,
2534,
804,
616,
1039,
1157,
322,
284,
17936,
26091,
281,
8773,
964,
2490,
496,
3512,
3719,
273,
253,
2962,
1157,
1608,
1479,
312,
29883,
310,
7922,
253,
4836,
273,
43042,
767,
2758,
273,
253,
6424,
6003,
14181,
1832,
19385,
964,
3900,
521,
2285,
26091,
281,
1089,
616,
8571,
1157,
253,
34677,
14181,
1832,
19385,
3558,
388,
31945,
26280,
1284,
9307,
9997,
307,
19111,
1309,
253,
2282,
273,
253,
6680,
5747,
1608,
1479,
312,
29883,
686,
84,
1682,
6031,
964,
2732,
1284,
9307,
686,
84,
20915,
1157,
1608,
1479,
312,
29883,
5239,
562,
342,
253,
21548,
2758,
273,
10589,
884,
281,
32349,
463,
616,
31854,
342,
253,
8596,
273,
611,
518,
17850,
23676,
640,
964,
1284,
253,
643,
2968,
342,
388,
31945,
686,
84,
7832,
611,
518,
7958,
86,
1157,
1608,
1479,
312,
29883,
1323,
1205,
265,
1284,
9307,
407,
38774,
388,
31945,
285,
2403,
2119,
253,
14181,
1832,
19385,
3558,
686,
84,
2133,
310,
1620,
1119,
964,
11977,
253,
3819,
1157,
1608,
1479,
312,
29883,
362,
5811,
281,
4017,
22509,
445,
2284,
23888,
5801,
285,
1284,
9307,
686,
84,
23066,
6122,
964,
754,
310,
1996,
7922,
281,
253,
16650,
9333,
12936,
8582,
1792,
285,
775,
13293,
8020,
964,
754,
310,
4907,
247,
17335,
2087,
762,
12146,
4595,
964,
496,
253,
2962,
2563,
300,
14873,
1157,
14851,
521,
3367,
8327,
1309,
253,
2962,
273,
2457,
20303,
1157,
1608,
1479,
312,
29883,
4916,
31149,
281,
253,
33808,
388,
536,
486,
26417,
14345,
846,
45906,
8582,
1792,
285,
21896,
247,
3347,
275,
1608,
1479,
324,
2284,
427,
4595,
964,
4928,
187,
426,
426,
426,
7650,
274,
1972,
275,
643,
3420,
426,
426,
426,
4928,
187,
15222,
253,
26417,
14345,
29326,
285,
38788,
1157,
1608,
1479,
312,
29883,
310,
12819,
275,
5093,
273,
253,
12819,
6590,
275,
253,
2962,
1163,
275,
253,
1273,
3085,
1157,
344,
34253,
26417,
14345,
530,
91,
360,
11938,
285,
29869,
5650,
3972,
26162,
275,
8615,
1411,
10664,
7112,
1157,
247,
2780,
40113,
7445,
382,
8445,
281,
4086,
253,
1533,
342,
247,
1612,
1925,
3096,
282,
77,
3706,
275,
253,
7002,
1157,
1608,
1479,
312,
29883,
4620,
275,
247,
4864,
3425,
1157,
8615,
1411,
247,
1781,
1387,
273,
8805,
9647,
3706,
275,
253,
10720,
1157,
1608,
1479,
312,
29883,
310,
2197,
12936,
611,
518,
17850,
285,
322,
2284,
275,
3186,
273,
253,
2613,
273,
253,
8565,
273,
16194,
1157,
665,
5827,
281,
42879,
21928,
41970,
3706,
275,
253,
15515,
1157,
1608,
1479,
312,
29883,
1157,
12936,
29869,
5650,
285,
322,
2284,
6680,
253,
19114,
3525,
22878,
34150,
407,
30739,
2788,
80,
3706,
275,
253,
4314,
1157,
1608,
1479,
312,
29883,
45347,
275,
253,
6680,
1411,
253,
2725,
322,
1080,
74,
3706,
275,
253,
28023,
1157,
253,
22397,
20613,
2788,
7352,
21206,
10325,
10262,
247,
2245,
314,
1608,
1479,
312,
29883,
1157,
253,
3242,
7285,
273,
521,
43827,
1157,
13999,
8020,
1157,
665,
4916,
253,
2285,
3483,
382,
3185,
3706,
285,
275,
253,
28081,
1157,
1608,
1479,
312,
29883,
5644,
253,
2285,
11253,
273,
2994,
1157,
26417,
14345,
1157,
29869,
5650,
1157,
322,
2284,
1157,
285,
388,
249,
682,
8305,
41745,
326,
310,
2197,
281,
14471,
388,
249,
682,
686,
84,
9243,
7586,
1157,
13594,
18754,
1157,
665,
369,
41802,
407,
24839,
25933,
473,
1641,
14298,
19385,
964,
754,
310,
671,
1246,
275,
253,
2626,
3236,
3492,
16904,
1157,
275,
534,
344,
45347,
275,
247,
14811,
964,
1608,
1479,
312,
29883,
310,
247,
1132,
494,
1894,
275,
4829,
512,
26417,
14345,
3492,
3958,
1157,
1690,
253,
1639,
1225,
273,
427,
34483,
2962,
285,
253,
37648,
427,
34483,
2962,
964,
496,
690,
3958,
1157,
344,
29820,
10575,
273,
521,
28258,
309,
2225,
318,
6439,
2271,
417,
2326,
275,
253,
29326,
390,
38788,
964,
26417,
14345,
1608,
5265,
15248,
3354,
1163,
443,
1441,
262,
13293,
427,
34483,
308,
4631,
257,
2195,
8021,
374,
10880,
253,
806,
7286,
273,
1608,
1479,
312,
29883,
275,
521,
3512,
3719,
7286,
275,
247,
3492,
2165,
964,
2490,
329,
1708,
4460,
18879,
1608,
1479,
312,
29883,
388,
9226,
1163,
329,
18189,
3196,
12545,
275,
7949,
290,
14182,
1255,
1157,
3542,
407,
23161,
17850,
714,
4692,
285,
12800,
407,
611,
763,
45459,
1157,
6114,
1608,
1479,
312,
29883,
347,
253,
2022,
1894,
285,
45811,
964,
380,
4460,
310,
873,
767,
1107,
846,
253,
16650,
427,
34483,
3660,
1157,
13654,
327,
1608,
1479,
312,
29883,
686,
84,
12714,
347,
45203,
273,
253,
9841,
4447,
33655,
19111,
6398,
281,
9232,
247,
44355,
295,
34483,
665,
4803,
689,
253,
13392,
8565,
273,
7949,
566,
285,
9437,
281,
5100,
247,
747,
1533,
1340,
12969,
407,
253,
1846,
952,
964,
733,
671,
33826,
521,
5675,
2954,
342,
8582,
1792,
1157,
27798,
839,
275,
779,
15586,
281,
1416,
521,
1429,
342,
617,
1157,
1107,
846,
253,
990,
273,
253,
4460,
964,
4928,
187,
426,
426,
1720,
2409,
426,
426,
4928,
187,
1608,
1479,
312,
29883,
556,
17045,
4122,
275,
253,
33022,
1608,
13293,
26159,
47859,
18395,
22207,
323,
253,
2962,
1157,
14949,
15606,
275,
253,
1755,
3578,
285,
10922,
7002,
1659,
275,
581,
8461,
964,
380,
1390,
824,
8461,
369,
275,
4332,
1157,
275,
534,
1608,
1479,
312,
29883,
369,
275,
28023,
1659,
1157,
3212,
322,
284,
8885,
285,
6386,
273,
388,
249,
682,
964,
7612,
348,
395,
885,
1754,
327,
1608,
1479,
312,
29883,
556,
671,
644,
4439,
1157,
1690,
2250,
8442,
1157,
2234,
13178,
1157,
285,
20412,
275,
1097,
521,
3512,
309,
285,
3512,
3719,
7286,
964,
427,
4490,
6383,
14285,
779,
347,
616,
2800,
16565,
7583,
2806,
419,
1250,
5086,
29326,
1894,
964,
33591,
27642,
19,
11731,
39329,
41386,
31999,
7352,
2902,
6289,
281,
1608,
1479,
312,
29883,
347,
581,
273,
521,
7583,
5810,
432,
26417,
14345,
964,
2490,
12090,
16516,
323,
38788,
1157,
29326,
1157,
3492,
3958,
1157,
285,
643,
2905,
3420,
452,
20503,
327,
1608,
1479,
312,
29883,
686,
84,
1894,
964,
309,
26756,
4767,
326,
1608,
1479,
312,
29883,
369,
581,
273,
616,
7583,
5810,
275,
253,
2962,
1157,
285,
6289,
281,
779,
347,
346,
253,
20731,
1429,
323,
667,
3120,
1214,
14,
33,
8785,
3558,
273,
28598,
1594,
346,
1955,
281,
521,
2087,
3480,
273,
23027,
285,
521,
27086,
1255,
281,
16584,
521,
2442,
964,
496,
247,
2278,
273,
9037,
9199,
1157,
309,
26756,
26108,
849,
1608,
1479,
312,
29883,
7303,
281,
36237,
521,
22658,
3753,
275,
1340,
281,
1379,
327,
253,
38357,
273,
247,
6657,
672,
7922,
281,
1421,
247,
2285,
275,
1340,
281,
19553,
322,
284,
17936,
530,
4635,
3227,
285,
5821,
326,
253,
3061,
281,
1056,
779,
775,
328,
249,
369,
4344,
964,
743,
553,
6317,
10701,
671,
20503,
327,
436,
2440,
1157,
6789,
1608,
1479,
312,
29883,
686,
84,
21313,
347,
346,
271,
11543,
8080,
346,
581,
273,
253,
16681,
273,
253,
12423,
964,
496,
247,
6774,
2278,
273,
9037,
13620,
1157,
275,
534,
253,
7517,
281,
19553,
322,
284,
17936,
556,
4242,
285,
253,
2758,
273,
1608,
1479,
312,
29883,
686,
84,
2285,
497,
21038,
11062,
1157,
309,
26756,
826,
21015,
253
] |
K 'awiil was installed on the throne of the new outpost at the age of four, in 635, and for many years served as a loyal vassal fighting for his brother, the king of Tikal. Roughly twenty years later Dos Pilas was attacked by Calakmul and was soundly defeated. B 'alaj Chan K 'awiil was captured by the king of Calakmul but, instead of being sacrificed, he was re @-@ instated on his throne as a vassal of his former enemy, and attacked Tikal in 657, forcing Nuun Ujol Chaak, the then king of Tikal, to temporarily abandon the city. The first two rulers of Dos Pilas continued to use the Mutal emblem glyph of Tikal, and they probably felt that they had a legitimate claim to the throne of Tikal itself. For some reason, B 'alaj Chan K 'awiil was not installed as the new ruler of Tikal ; instead he stayed at Dos Pilas. Tikal counterattacked against Dos Pilas in 672, driving B 'alaj Chan K 'awiil into an exile that lasted five years. Calakmul tried to encircle Tikal within an area dominated by its allies, such as El Peru, Dos Pilas and Caracol.
In 682, Jasaw Chan K 'awiil I erected the first dated monument at Tikal in 120 years and claimed the title of kaloomte ', so ending the hiatus. He initiated a programme of new construction and turned the tables on Calakmul when, in 695, he captured the enemy noble and threw the enemy state into a long decline from which it never fully recovered. After this, Calakmul never again erected a monument celebrating a military victory.
= = = = Tikal after Teotihuacán = = = =
By the 7th century, there was no active Teotihuacan presence at any Maya site and the center of Teotihuacan had been razed by 700. Even after this, formal war attire illustrated on monuments was Teotihuacan style. Jasaw Chan K 'awiil I and his heir Yik 'in Chan K 'awiil continued hostilities against Calakmul and its allies and imposed firm regional control over the area around Tikal, extending as far as the territory around Lake Petén Itzá. These two rulers were responsible for much of the impressive architecture visible today.
In 738, Quiriguá, a vassal of Copán, Tikal's key ally in the south, switched allegiance to Calakmul, defeated Copán and gained its own independence. It appears that this was a conscious effort on the part of Calakmul to bring about the collapse of Tikal's southern allies. This upset the balance of power in the southern Maya area and lead to a steady decline in the fortunes of Copán.
In the 8th century, the rulers of Tikal collected monuments from across the city and erected them in front of the North Acropolis. By the late 8th century and early 9th century, activity at Tikal slowed. Impressive architecture was still built but few hieroglyphic inscriptions refer to later rulers.
= = = Terminal Classic = = =
By the 9th century, the crisis of the Classic Maya collapse was sweeping across the region, with populations plummeting and city after city falling into silence. Increasingly endemic warfare in the Maya region caused Tikal's supporting population to heavily concentrate close to the city itself, accelerating the use of intensive agriculture and corresponding environmental decline. Construction continued at the beginning of the century, with the erection of Temple 3, the last of the city's major pyramids and the erection of monuments to mark the 19th K 'atun in 810. The beginning of the 10th Bak 'tun in 830 passed uncelebrated, and marks the beginning of a 60 @-@ year hiatus, probably resulting from the collapse of central control in the city. During this hiatus, satellite sites traditionally under Tikal's control began to erect their own monuments featuring local rulers and using the Mutal emblem glyph, with Tikal apparently lacking the authority or the power to crush these bids for independence. In 849, Jewel K 'awiil is mentioned on a stela at Seibal as visiting that city as the Divine Lord of Tikal but he is not recorded elsewhere and Tikal's once great power was little more than a memory. The sites of Ixlu and Jimbal had by now inherited the once exclusive Mutal emblem glyph.
As Tikal and its hinterland reached peak population, the area suffered deforestation, erosion and nutrient loss followed by a rapid decline in population levels. Tikal and its immediate surroundings seem to have lost the majority of its population during the period from 830 to 950 and central authority seems to have collapsed rapidly. There is not much evidence from Tikal that the city was directly affected by the endemic warfare that afflicted parts of the Maya region during the Terminal Classic, although an influx of refugees from the Petexbatún region may have exacerbated problems resulting from the already stretched environmental resources.
In the latter half of the 9th century there was an attempt to revive royal power at the much diminished city of Tikal, as evidenced by a stela erected in the Great Plaza by Jasaw Chan K 'awiil II in 869. This was the last monument erected at Tikal before the city finally fell into silence. The former satellites of Tikal, such as Jimbal and Uaxactun, did not last much longer, erecting their final monuments in 889. By the end of the 9th century the vast majority of Tikal's population had deserted the city, its royal palaces were occupied by squatters and simple thatched dwellings were being erected in the city's ceremonial plazas. The squatters blocked some doorways in the rooms they reoccupied in the monumental structures of the site and left rubbish that included a mixture of domestic refuse and non @-@ utilitarian items such as musical instruments. These inhabitants reused the earlier monuments for their own ritual activities far removed from those of the royal dynasty that had erected them. Some monuments were vandalized and some were moved to new locations. Before its final abandonment all respect for the old rulers had disappeared, with the tombs of the North Acropolis being explored for jade and the easier to find tombs being looted. After 950, Tikal was all but deserted, although a remnant population may have survived in perishable huts interspersed among the ruins. Even these final inhabitants abandoned the city in the 10th or 11th centuries and the rainforest claimed the ruins for the next thousand years. Some of Tikal's population may have migrated to the Peten Lakes region, which remained heavily populated in spite of a plunge in population levels in the first half of the 9th century.
The most likely cause of collapse at Tikal is overpopulation and agrarian failure. The fall of Tikal was a blow to the heart of Classic Maya civilization, the city having been at the forefront of courtly life, art and architecture for over a thousand years, with an ancient ruling dynasty. However, new research regarding paleoenvironmental proxies from the Tikal reservoir system suggests that a meteorological drought may have led to the abandonment of Tikal.
= = = Modern history = = =
In 1525, the Spanish conquistador Hernán Cortés passed within a few kilometres of the ruins of Tikal but did not mention them in his letters. After Spanish friar Andrés de Avendaño became lost in the Petén forests in early 1696 he described a ruin that may well have been Tikal.
As is often the case with huge ancient ruins, knowledge of the site was never completely lost in the region. It seems that local people never forgot about Tikal and they guided Guatemalan expeditions to the ruins in the 1850s. Some second- or third @-@ hand accounts of Tikal appeared in print starting in the 17th century, continuing through the writings of John Lloyd Stephens in the early 19th century ( Stephens and his illustrator Frederick Catherwood heard rumors of a lost city, with white building tops towering above the jungle, during their 1839 @-@ 40 travels in the region ). Because of the site's remoteness from modern towns, however, no explorers visited Tikal until Modesto Méndez and Ambrosio Tut, respectively the commissioner and the governor of Petén, visited it in 1848. Artist Eusebio Lara accompanied them and their account was published in Germany in 1853. Several other expeditions came to further investigate, map, and photograph Tikal in the 19th century ( including Alfred P. Maudslay in 1881 @-@ 82 ) and the early 20th century. Pioneering archaeologists started to clear, map and record the ruins in the 1880s.
In 1951, a small airstrip was built at the ruins, which previously could only be reached by several days'travel through the jungle on foot or mule. In 1956 the Tikal project began to map the city on a scale not previously seen in the Maya area. From 1956 through 1970, major archaeological excavations were carried out by the University of Pennsylvania Tikal Project. They mapped much of the site and excavated and restored many of the structures. Excavations directed by Edwin M. Sh | wikitext_103 | [
611,
686,
33259,
300,
369,
8038,
327,
253,
23399,
273,
253,
747,
562,
5996,
387,
253,
2363,
273,
1740,
1157,
275,
721,
1671,
1157,
285,
323,
1142,
1107,
5608,
347,
247,
14211,
362,
515,
267,
8615,
323,
521,
4929,
1157,
253,
6963,
273,
308,
1479,
267,
964,
43375,
314,
6818,
1107,
1996,
399,
375,
21263,
284,
369,
13964,
407,
2263,
518,
31601,
285,
369,
3590,
314,
16473,
964,
378,
686,
267,
1432,
26177,
611,
686,
33259,
300,
369,
10848,
407,
253,
6963,
273,
2263,
518,
31601,
533,
1157,
3185,
273,
1146,
31548,
1157,
344,
369,
294,
1214,
14,
33,
978,
456,
327,
521,
23399,
347,
247,
362,
515,
267,
273,
521,
3438,
9054,
1157,
285,
13964,
308,
1479,
267,
275,
721,
3011,
1157,
17190,
24903,
328,
530,
75,
311,
22951,
518,
1157,
253,
840,
6963,
273,
308,
1479,
267,
1157,
281,
20220,
9488,
253,
2846,
964,
380,
806,
767,
36491,
273,
399,
375,
21263,
284,
4821,
281,
897,
253,
15601,
267,
802,
12404,
33981,
273,
308,
1479,
267,
1157,
285,
597,
3164,
3543,
326,
597,
574,
247,
14905,
1750,
281,
253,
23399,
273,
308,
1479,
267,
3139,
964,
1198,
690,
1921,
1157,
378,
686,
267,
1432,
26177,
611,
686,
33259,
300,
369,
417,
8038,
347,
253,
747,
29658,
273,
308,
1479,
267,
3706,
3185,
344,
11791,
387,
399,
375,
21263,
284,
964,
308,
1479,
267,
4828,
1595,
16970,
1411,
399,
375,
21263,
284,
275,
721,
3547,
1157,
6276,
378,
686,
267,
1432,
26177,
611,
686,
33259,
300,
715,
271,
33927,
326,
20578,
2620,
1107,
964,
2263,
518,
31601,
3597,
281,
2349,
1426,
282,
308,
1479,
267,
1561,
271,
2170,
14691,
407,
697,
17760,
1157,
824,
347,
3599,
31805,
1157,
399,
375,
21263,
284,
285,
2639,
317,
311,
964,
2490,
496,
721,
3507,
1157,
500,
284,
1403,
26177,
611,
686,
33259,
300,
309,
33230,
253,
806,
15483,
25754,
387,
308,
1479,
267,
275,
7346,
1107,
285,
7558,
253,
4060,
273,
465,
267,
6188,
442,
686,
1157,
594,
12365,
253,
14260,
3144,
964,
754,
15247,
247,
13521,
273,
747,
5140,
285,
3531,
253,
7180,
327,
2263,
518,
31601,
672,
1157,
275,
721,
2222,
1157,
344,
10848,
253,
9054,
17874,
285,
13222,
253,
9054,
1375,
715,
247,
1048,
10343,
432,
534,
352,
1620,
4751,
12372,
964,
2732,
436,
1157,
2263,
518,
31601,
1620,
969,
33230,
247,
25754,
28765,
247,
4668,
10170,
964,
4928,
187,
426,
426,
426,
426,
308,
1479,
267,
846,
2745,
302,
6356,
86,
317,
9435,
426,
426,
426,
426,
4928,
187,
2896,
253,
818,
394,
5331,
1157,
627,
369,
642,
3939,
2745,
302,
6356,
86,
317,
266,
3361,
387,
667,
41151,
2670,
285,
253,
4055,
273,
2745,
302,
6356,
86,
317,
266,
574,
644,
1218,
4337,
407,
18450,
964,
4952,
846,
436,
1157,
7473,
2137,
863,
603,
12800,
327,
41650,
369,
2745,
302,
6356,
86,
317,
266,
3740,
964,
500,
284,
1403,
26177,
611,
686,
33259,
300,
309,
285,
521,
33961,
714,
1479,
686,
249,
26177,
611,
686,
33259,
300,
4821,
3167,
3191,
1411,
2263,
518,
31601,
285,
697,
17760,
285,
11295,
5882,
9933,
1453,
689,
253,
2170,
1475,
308,
1479,
267,
1157,
13633,
347,
2080,
347,
253,
12785,
1475,
9396,
8939,
9390,
733,
91,
1757,
964,
2053,
767,
36491,
497,
5506,
323,
1199,
273,
253,
13943,
10336,
7985,
3063,
964,
2490,
496,
818,
1839,
1157,
3277,
343,
36753,
1757,
1157,
247,
362,
515,
267,
273,
29231,
9435,
1157,
308,
1479,
267,
686,
84,
2234,
25550,
275,
253,
6420,
1157,
17609,
44436,
281,
2263,
518,
31601,
1157,
16473,
29231,
9435,
285,
12103,
697,
1211,
14275,
964,
733,
4620,
326,
436,
369,
247,
9680,
3434,
327,
253,
629,
273,
2263,
518,
31601,
281,
3324,
670,
253,
13551,
273,
308,
1479,
267,
686,
84,
11053,
17760,
964,
831,
14004,
253,
6654,
273,
1612,
275,
253,
11053,
41151,
2170,
285,
1421,
281,
247,
11792,
10343,
275,
253,
43203,
273,
29231,
9435,
964,
2490,
496,
253,
854,
394,
5331,
1157,
253,
36491,
273,
308,
1479,
267,
5728,
41650,
432,
2439,
253,
2846,
285,
33230,
731,
275,
2914,
273,
253,
3729,
5192,
37489,
964,
2896,
253,
3563,
854,
394,
5331,
285,
2393,
898,
394,
5331,
1157,
2425,
387,
308,
1479,
267,
28837,
964,
16009,
8122,
10336,
369,
1335,
4270,
533,
1643,
10549,
19644,
545,
280,
275,
28132,
3730,
281,
1996,
36491,
964,
4928,
187,
426,
426,
426,
37060,
27015,
426,
426,
426,
4928,
187,
2896,
253,
898,
394,
5331,
1157,
253,
8891,
273,
253,
27015,
41151,
13551,
369,
28110,
2439,
253,
2919,
1157,
342,
7625,
29896,
3899,
272,
285,
2846,
846,
2846,
10805,
715,
10837,
964,
38078,
314,
31401,
27205,
275,
253,
41151,
2919,
4269,
308,
1479,
267,
686,
84,
8109,
3072,
281,
11306,
21364,
2810,
281,
253,
2846,
3139,
1157,
38757,
253,
897,
273,
17193,
21047,
285,
3969,
6938,
10343,
964,
24969,
4821,
387,
253,
5068,
273,
253,
5331,
1157,
342,
253,
299,
15831,
273,
17658,
495,
1157,
253,
1390,
273,
253,
2846,
686,
84,
2201,
25874,
2352,
285,
253,
299,
15831,
273,
41650,
281,
1616,
253,
655,
394,
611,
686,
255,
328,
275,
854,
740,
964,
380,
5068,
273,
253,
884,
394,
25958,
686,
85,
328,
275,
854,
1229,
4817,
440,
44033,
1288,
456,
1157,
285,
10880,
253,
5068,
273,
247,
3925,
1214,
14,
33,
807,
14260,
3144,
1157,
3164,
4795,
432,
253,
13551,
273,
4275,
1453,
275,
253,
2846,
964,
6408,
436,
14260,
3144,
1157,
15109,
4375,
21533,
762,
308,
1479,
267,
686,
84,
1453,
3407,
281,
29893,
616,
1211,
41650,
15773,
1980,
36491,
285,
970,
253,
15601,
267,
802,
12404,
33981,
1157,
342,
308,
1479,
267,
8505,
14999,
253,
6265,
390,
253,
1612,
281,
30582,
841,
42863,
323,
14275,
964,
496,
854,
2537,
1157,
5679,
293,
611,
686,
33259,
300,
310,
5393,
327,
247,
331,
7896,
387,
1023,
34300,
347,
13975,
326,
2846,
347,
253,
35502,
6203,
273,
308,
1479,
267,
533,
344,
310,
417,
5950,
11358,
285,
308,
1479,
267,
686,
84,
2378,
1270,
1612,
369,
1652,
625,
685,
247,
3541,
964,
380,
4375,
273,
309,
89,
7675,
285,
500,
6785,
267,
574,
407,
1024,
20265,
253,
2378,
11855,
15601,
267,
802,
12404,
33981,
964,
2490,
1284,
308,
1479,
267,
285,
697,
288,
2388,
1373,
4925,
5241,
3072,
1157,
253,
2170,
9606,
809,
410,
20502,
1157,
32561,
285,
23281,
2957,
3560,
407,
247,
5233,
10343,
275,
3072,
2308,
964,
308,
1479,
267,
285,
697,
8993,
27762,
1646,
281,
452,
3663,
253,
5020,
273,
697,
3072,
1309,
253,
2180,
432,
854,
1229,
281,
49305,
285,
4275,
6265,
3133,
281,
452,
21900,
9086,
964,
1707,
310,
417,
1199,
1941,
432,
308,
1479,
267,
326,
253,
2846,
369,
3587,
5876,
407,
253,
31401,
27205,
326,
36107,
264,
4243,
273,
253,
41151,
2919,
1309,
253,
37060,
27015,
1157,
3738,
271,
32682,
273,
19382,
432,
253,
8939,
911,
13419,
19664,
2919,
778,
452,
45482,
3237,
4795,
432,
253,
2168,
20061,
6938,
5300,
964,
2490,
496,
253,
6158,
2716,
273,
253,
898,
394,
5331,
627,
369,
271,
3177,
281,
47122,
17292,
1612,
387,
253,
1199,
23028,
2846,
273,
308,
1479,
267,
1157,
347,
27007,
407,
247,
331,
7896,
33230,
275,
253,
6495,
33427,
407,
500,
284,
1403,
26177,
611,
686,
33259,
300,
3719,
275,
854,
2090,
964,
831,
369,
253,
1390,
25754,
33230,
387,
308,
1479,
267,
1078,
253,
2846,
4720,
6497,
715,
10837,
964,
380,
3438,
29388,
273,
308,
1479,
267,
1157,
824,
347,
500,
6785,
267,
285,
530,
991,
514,
328,
1157,
858,
417,
1390,
1199,
3356,
1157,
29893,
272,
616,
2457,
41650,
275,
854,
2511,
964,
2896,
253,
990,
273,
253,
898,
394,
5331,
253,
8485,
5020,
273,
308,
1479,
267,
686,
84,
3072,
574,
36986,
253,
2846,
1157,
697,
17292,
5796,
1951,
497,
13598,
407,
39163,
1336,
285,
2969,
326,
2147,
23031,
723,
497,
1146,
33230,
275,
253,
2846,
686,
84,
12999,
24755,
499,
1370,
284,
964,
380,
39163,
1336,
13230,
690,
3369,
1576,
275,
253,
9956,
597,
294,
32980,
275,
253,
25754,
267,
5289,
273,
253,
2670,
285,
1669,
45785,
326,
2908,
247,
7802,
273,
9836,
16410,
285,
1327,
1214,
14,
33,
4981,
14621,
4957,
824,
347,
12256,
13225,
964,
2053,
21251,
294,
3197,
253,
4321,
41650,
323,
616,
1211,
17651,
4712,
2080,
5176,
432,
1110,
273,
253,
17292,
34526,
326,
574,
33230,
731,
964,
3808,
41650,
497,
362,
14363,
1025,
285,
690,
497,
4395,
281,
747,
8593,
964,
9613,
697,
2457,
43289,
512,
1675,
323,
253,
1711,
36491,
574,
15159,
1157,
342,
253,
7275,
1768,
273,
253,
3729,
5192,
37489,
1146,
14859,
323,
480,
796,
285,
253,
6927,
281,
1089,
7275,
1768,
1146,
41045,
264,
964,
2732,
49305,
1157,
308,
1479,
267,
369,
512,
533,
36986,
1157,
3738,
247,
43003,
3072,
778,
452,
16139,
275,
591,
763,
494,
288,
14298,
734,
1033,
398,
264,
2190,
253,
28478,
964,
4952,
841,
2457,
21251,
13966,
253,
2846,
275,
253,
884,
394,
390,
1903,
394,
14020,
285,
253,
9313,
38250,
7558,
253,
28478,
323,
253,
1735,
8014,
1107,
964,
3808,
273,
308,
1479,
267,
686,
84,
3072,
778,
452,
40891,
281,
253,
8939,
257,
32396,
2919,
1157,
534,
6376,
11306,
26956,
275,
15866,
273,
247,
46894,
275,
3072,
2308,
275,
253,
806,
2716,
273,
253,
898,
394,
5331,
964,
2490,
380,
954,
2779,
2847,
273,
13551,
387,
308,
1479,
267,
310,
689,
30957,
285,
639,
83,
6656,
4433,
964,
380,
2965,
273,
308,
1479,
267,
369,
247,
8230,
281,
253,
2798,
273,
27015,
41151,
23749,
1157,
253,
2846,
1907,
644,
387,
253,
43213,
273,
1302,
314,
1495,
1157,
1445,
285,
10336,
323,
689,
247,
8014,
1107,
1157,
342,
271,
9129,
10362,
34526,
964,
1723,
1157,
747,
2561,
5001,
14530,
80,
20034,
267,
16843,
447,
432,
253,
308,
1479,
267,
18699,
985,
5936,
326,
247,
31710,
1975,
22216,
778,
452,
3977,
281,
253,
43289,
273,
308,
1479,
267,
964,
4928,
187,
426,
426,
426,
16349,
2892,
426,
426,
426,
4928,
187,
496,
1458,
1099,
1157,
253,
9883,
345,
32446,
9325,
26511,
9435,
26135,
5069,
4817,
1561,
247,
1643,
39050,
273,
253,
28478,
273,
308,
1479,
267,
533,
858,
417,
3748,
731,
275,
521,
4876,
964,
2732,
9883,
2054,
274,
1244,
83,
5069,
372,
8784,
11635,
21000,
3395,
3663,
275,
253,
8939,
9390,
21327,
275,
2393,
1668,
4196,
344,
2529,
247,
23737,
326,
778,
973,
452,
644,
308,
1479,
267,
964,
2490,
1284,
310,
2223,
253,
1083,
342,
5699,
9129,
28478,
1157,
3640,
273,
253,
2670,
369,
1620,
4336,
3663,
275,
253,
2919,
964,
733,
3133,
326,
1980,
952,
1620,
18298,
670,
308,
1479,
267,
285,
597,
18107,
40346,
30637,
16625,
4431,
281,
253,
28478,
275,
253,
38367,
84,
964,
3808,
1273,
14,
390,
2626,
1214,
14,
33,
1133,
8553,
273,
308,
1479,
267,
5420,
275,
3379,
4983,
275,
253,
1722,
394,
5331,
1157,
11440,
949,
253,
25527,
273,
2516,
24395,
48015,
275,
253,
2393,
655,
394,
5331,
313,
48015,
285,
521,
7339,
1080,
26485,
330,
1226,
5308,
3735,
28718,
273,
247,
3663,
2846,
1157,
342,
3168,
3652,
27164,
12413,
2158,
1840,
253,
31500,
1157,
1309,
616,
1283,
1867,
1214,
14,
33,
3387,
24376,
275,
253,
2919,
2387,
964,
4923,
273,
253,
2670,
686,
84,
25177,
8098,
432,
4980,
15918,
1157,
2299,
1157,
642,
8338,
2967,
11580,
308,
1479,
267,
1919,
4559,
22055,
353,
9390,
26196,
285,
15889,
2921,
900,
50016,
1157,
2975,
253,
28845,
285,
253,
14176,
273,
8939,
9390,
1157,
11580,
352,
275,
48308,
964,
37618,
444,
316,
2275,
900,
418,
4595,
11704,
731,
285,
616,
2395,
369,
3863,
275,
6176,
275,
1283,
3357,
964,
12090,
643,
16625,
4431,
2210,
281,
2007,
7409,
1157,
3711,
1157,
285,
10440,
308,
1479,
267,
275,
253,
655,
394,
5331,
313,
1690,
24179,
367,
15,
353,
5353,
3433,
333,
275,
49120,
1214,
14,
33,
11487,
2387,
285,
253,
2393,
1384,
394,
5331,
964,
44477,
2158,
21101,
11644,
3053,
281,
2590,
1157,
3711,
285,
1924,
253,
28478,
275,
253,
32626,
84,
964,
2490,
496,
25124,
1157,
247,
1355,
50239,
7417,
369,
4270,
387,
253,
28478,
1157,
534,
3786,
812,
760,
320,
4925,
407,
2067,
1897,
686,
4288,
949,
253,
31500,
327,
3174,
390,
278,
1657,
964,
496,
22716,
253,
308,
1479,
267,
2199,
3407,
281,
3711,
253,
2846,
327,
247,
4311,
417,
3786,
2326,
275,
253,
41151,
2170,
964,
4325,
22716,
949,
10333,
1157,
2201,
39327,
27960,
569,
497,
4824,
562,
407,
253,
2499,
273,
11637,
308,
1479,
267,
8049,
964,
1583,
18301,
1199,
273,
253,
2670,
285,
27960,
456,
285,
16789,
1142,
273,
253,
5289,
964,
1889,
43205,
569,
6828,
407,
42266,
353,
15,
1608
] |
= Raid on Manila ( 1798 ) =
The Raid on Manila of January 1798 was a Royal Navy false flag military operation during the French Revolutionary Wars intended to scout the strength of the defences of Manila, capital of the Spanish Philippines, capture a Manila galleon and assess the condition of the Spanish Navy squadron maintained in the port. Spain had transformed from an ally of Great Britain in the War of the First Coalition into an enemy in 1796. Thus the presence of a powerful Spanish squadron at Manila posed a threat to the China Fleet, an annual convoy of East Indiaman merchant ships from Macau in Qing Dynasty China to Britain, which was of vital economic importance to Britain. So severe was this threat that a major invasion of the Spanish Philippines had been planned from British India during 1797, but had been called off following the Treaty of Campo Formio in Europe and the possibility of a major war in India between the British East India Company and the Kingdom of Mysore.
To ensure the safety of the merchant ships gathering at Macau in the winter of 1797 – 98, the British commander in the East Indies, Rear @-@ Admiral Peter Rainier, sent a convoy to China escorted by the frigates HMS Sybille and HMS Fox and commanded by Captain Edward Cooke. After completing his mission Cooke decided to investigate the state of readiness of Spanish forces in Manila himself. He was also intrigued by reports that a ship carrying treasure was due to sail from Manila, which would make a valuable prize. Sailing in Sybille and accompanied by Captain Pulteney Malcolm in Fox, Cooke reached the Spanish capital on 13 January 1798.
Anchored in Manila Bay, Cooke pretended that his ships were French vessels and successfully lured successive boatloads of Spanish officials aboard, taking them prisoner in turn. Once he had determined from his captives the state of defences in Manila, that the treasure ship had been unloaded at Cavite and that the Spanish squadron was undergoing extensive repairs and thus unavailable for operations, he sent a raiding party against a squadron of gunboats in the mouth of the Pasig River. Capturing the gunboats in a bloodless attack, Cooke then released his prisoners and sailed southwards, unsuccessfully assaulting Zamboanga before returning to Macau.
= = Background = =
In 1796, after three years of the French Revolutionary Wars, Spain and the French Republic signed the Treaty of San Ildefonso. The secret terms of this treaty required Spain to renounce its alliance with Great Britain and subsequently to declare war on its former ally. In the East Indies this shift of political allegiance meant that the dominant British forces in the region were faced with the threat of attack from the Spanish Philippines to the east. Britain dominated the East Indies in 1796, controlling the trade routes through the Indian Ocean from the ports of Bombay, Madras and Calcutta. Dutch Ceylon, the Dutch Cape Colony and parts of the Dutch East Indies had been captured in 1795, and the French presence in the region had been confined to Île de France and a few subsidiary islands in the Western Indian Ocean.
Some of the most important trade routes began at Canton and Macau in Qing Dynasty China. Early in each year a large convoy known as the " China Fleet ", composed of large East Indiaman merchant ships in the employ of the British East India Company, sailed westwards to Europe from Macau laden with tea and other commercial cargo. This convoy was economically significant to Britain : one convoy in 1804 was valued at over £ 8 million ( the equivalent of £ 600 @,@ 000 @,@ 000 as of 2016 ). In January 1797 the convoy had been attacked by the French squadron in the East Indies, comprising six frigates commanded by Contre @-@ amiral Pierre César Charles de Sercey. In the ensuing Bali Strait Incident the commander deceived Sercey into believing that the unescorted convoy contained disguised ships of the line and the French admiral retreated, only learning of his error on his return to Île de France. There was considerable concern in India that Sercey might try again in 1798, or that the Spanish, who maintained a powerful squadron at Cavite, might make an attempt of their own.
Rainier's initial impulse on learning in November 1796 of the impending declaration of war between Britain and Spain was to draw up plans for a major invasion of the Philippines, centred on Manila in repetition of the successful British capture of Manila in 1762. Co @-@ operating with the Governor @-@ General of India Sir John Shore and Colonel Arthur Welleley among others, a substantial naval and military forces were earmarked for the operation which was in the advance planning stages, when unexpected news arrived in India in August 1797 announcing the Treaty of Campo Formio which brought the War of the First Coalition to an end. Britain now faced France and Spain alone, while emissaries from the Tipu Sultan of the Kingdom of Mysore, an old opponent of Britain in Southern India, were seeking French assistance with a renewed outbreak of hostilities. The resources planned for the operation against Manila were therefore retained in India and the operation cancelled, but the protection of the China Fleet was still essential and Rainier diverted some of his squadron eastwards to China.
A number of merchant ships had gathered at Bombay in the spring of 1797 in preparation for the trip to Macau to load trade goods and join the China Fleet. To escort this force, Rainier provided the 40 @-@ gun frigate HMS Sybille, captured from the French at the Battle of Mykonos in 1794, and the 50 @-@ gun HMS Centurion, which sailed with the convoy in July, taking passage through the Straits of Malacca, joined there by the ships of the line HMS Victorious and HMS Trident and the 32 @-@ gun frigate HMS Fox under Captain Pulteney Malcolm for the final voyage to Macau. The convoy arrived without incident on 13 December 1797, although the crews had been substantially weakened by tropical illnesses.
= = Cooke's raids = =
= = = Reconnaissance of Manilla = = =
With his convoy safely at anchor in Macau and the China Fleet several weeks from sailing, Cooke decided to reconnoitre Manila and make observations on the port and the Spanish squadron based there. As an added motivation, rumours in Macau suggested that the annual Manila galleon was due to arrive. This ship brought up to two million Spanish silver dollars from Acapulco across the Pacific Ocean stopping at Guam on its way to Manila. Depositing its dollars in the Philippines, the ship then loaded trade goods from the East Indies for the return journey to New Spain. This round trip was essential to the maintenance of the Spanish Empire in the East Indies, which operated at an enormous financial loss only mitigated by the substantial subsidy from New Spain. Spanish dollars were the accepted currency across most of the East Indies, and disruption of this financial system could have profound effects on regional trade ; but British sailors had nevertheless been attacking the Manila galleons since Thomas Cavendish in 1587.
Leaving the heavier warships at Macau, Cooke sailed on 5 January 1798 only with Sybille and Fox, the latter carrying a Mr. Bernard, an experienced linguist. Passing Luzon, Cooke's ships encountered a small Spanish merchant vessel, which was lured towards the frigates, which were flying French tricolors. Seizing the Spanish vessel, Cooke closely questioned the captain and learned that most of the Spanish squadron in Manila were undergoing extensive repairs at Cavite and were unfit to sail. Cooke rewarded the captain by releasing his vessel with its cargo intact, although he did remove 3 @,@ 900 silver dollars. The Spanish squadron had suffered badly in a typhoon in April 1797 and much of the damage had still not been repaired by the time Cooke's small squadron arrived off Manila. Cooke had taken precautions to disguise his ships as French vessels, modelling Sybille on the powerful 40 @-@ gun Forte and Fox on the smaller Prudente.
= = = Dinner on Sybille = = =
Late in the afternoon of 13 January 1798, Sybille and Fox arrived in Manila Bay, slipping unchallenged past the fortress of Corregidor and then sailing across the bay on the morning of 14 January, anchoring between Manila and Cavite. From his vantage point Cooke could see the Spanish squadron dismasted and under repair in Cavite, the ships of the line San Pedro, Europa and Montañés and the frigates Maria de la Cabeya and Luisa in dock and unfit for action. To Cooke's disappointment he could also see the Manila galleon, Marquesetta being unloaded at the Cavite docks and another valuable merchant ship Rey Carlos aground in the harbour. The Spanish had learned only shortly before Cooke's arrival that the British frigate HMS Resistance under Captain Edward Pakenham was in Philippine waters and had decided to remove the valuable cargo from the treasure ship rather than risk an attack.
Fox was the first British ship into the anchorage, and was consequently approached by the guardboat, whose crew came aboard. Malcolm, like Cooke, spoke French fluently and with Bernard translating was able to persuade the officer in charge that the new arrivals were Forte and Prudente seeking supplies and Spanish reinforcements for commerce raiding operations. The officer offered supplies but cautioned that none of the Spanish ships would be in a position to sail until March at the earliest. Cooke then joined the party on the deck of Fox, claiming | wikitext_103 | [
426,
11605,
301,
327,
43949,
313,
1722,
4185,
2387,
426,
4928,
187,
380,
11605,
301,
327,
43949,
273,
4247,
1722,
4185,
369,
247,
10043,
13669,
3221,
7908,
4668,
4254,
1309,
253,
5112,
42427,
14848,
6034,
281,
42513,
253,
4757,
273,
253,
809,
2979,
273,
43949,
1157,
5347,
273,
253,
9883,
22075,
1157,
9232,
247,
43949,
305,
4781,
251,
285,
2939,
253,
1617,
273,
253,
9883,
13669,
40294,
8838,
275,
253,
2245,
964,
11268,
574,
13657,
432,
271,
25550,
273,
6495,
9643,
275,
253,
3660,
273,
253,
3973,
32241,
715,
271,
9054,
275,
1722,
4196,
964,
3308,
253,
3361,
273,
247,
6422,
9883,
40294,
387,
43949,
22691,
247,
4322,
281,
253,
4135,
32521,
1157,
271,
7970,
47005,
273,
5791,
2102,
74,
14990,
24230,
11811,
432,
5602,
1952,
275,
49537,
32746,
9898,
4135,
281,
9643,
1157,
534,
369,
273,
12232,
5054,
6349,
281,
9643,
964,
1893,
5460,
369,
436,
4322,
326,
247,
2201,
11492,
273,
253,
9883,
22075,
574,
644,
9355,
432,
4782,
5427,
1309,
1722,
4148,
1157,
533,
574,
644,
1925,
745,
1563,
253,
32648,
273,
8647,
80,
7191,
900,
275,
3060,
285,
253,
6387,
273,
247,
2201,
2137,
275,
5427,
875,
253,
4782,
5791,
5427,
6487,
285,
253,
11491,
273,
48205,
410,
964,
2490,
1916,
5416,
253,
5252,
273,
253,
24230,
11811,
16778,
387,
5602,
1952,
275,
253,
8986,
273,
1722,
4148,
1108,
10508,
1157,
253,
4782,
17747,
275,
253,
5791,
44744,
1157,
416,
613,
1214,
14,
33,
28244,
7993,
21398,
1321,
1157,
2197,
247,
47005,
281,
4135,
46452,
407,
253,
48232,
684,
388,
3338,
5619,
67,
4002,
285,
388,
3338,
11024,
285,
26814,
407,
11918,
12824,
2434,
3136,
964,
2732,
21006,
521,
7517,
2434,
3136,
4425,
281,
7409,
253,
1375,
273,
40628,
273,
9883,
5621,
275,
43949,
2994,
964,
754,
369,
671,
48515,
407,
5012,
326,
247,
6215,
8785,
21764,
369,
1955,
281,
15901,
432,
43949,
1157,
534,
651,
1056,
247,
9865,
17767,
964,
322,
13454,
275,
5619,
67,
4002,
285,
11704,
407,
11918,
367,
503,
1751,
90,
34409,
275,
11024,
1157,
2434,
3136,
4925,
253,
9883,
5347,
327,
2145,
4247,
1722,
4185,
964,
2490,
743,
348,
2149,
275,
43949,
6912,
1157,
2434,
3136,
43325,
326,
521,
11811,
497,
5112,
12671,
285,
8379,
298,
1520,
20946,
9735,
2799,
84,
273,
9883,
6338,
22995,
1157,
3192,
731,
18897,
275,
1614,
964,
7243,
344,
574,
3413,
432,
521,
3403,
1644,
253,
1375,
273,
809,
2979,
275,
43949,
1157,
326,
253,
21764,
6215,
574,
644,
440,
19052,
387,
20120,
614,
285,
326,
253,
9883,
40294,
369,
17362,
9470,
25931,
285,
3021,
29356,
323,
5871,
1157,
344,
2197,
247,
1218,
2821,
3128,
1411,
247,
40294,
273,
5654,
45686,
275,
253,
6208,
273,
253,
17231,
304,
7121,
964,
9426,
981,
253,
5654,
45686,
275,
247,
2614,
1417,
2983,
1157,
2434,
3136,
840,
4439,
521,
16154,
285,
33497,
6420,
4515,
1157,
22727,
2920,
9222,
272,
1503,
47311,
28874,
1078,
10884,
281,
5602,
1952,
964,
4928,
187,
426,
426,
17720,
426,
426,
4928,
187,
496,
1722,
4196,
1157,
846,
1264,
1107,
273,
253,
5112,
42427,
14848,
1157,
11268,
285,
253,
5112,
4687,
6704,
253,
32648,
273,
5003,
309,
392,
832,
46958,
964,
380,
4279,
2426,
273,
436,
23848,
2424,
11268,
281,
3816,
12943,
697,
23158,
342,
6495,
9643,
285,
9674,
281,
11165,
2137,
327,
697,
3438,
25550,
964,
496,
253,
5791,
44744,
436,
5333,
273,
3569,
44436,
5486,
326,
253,
11360,
4782,
5621,
275,
253,
2919,
497,
11372,
342,
253,
4322,
273,
2983,
432,
253,
9883,
22075,
281,
253,
9268,
964,
9643,
14691,
253,
5791,
44744,
275,
1722,
4196,
1157,
10938,
253,
5454,
15050,
949,
253,
5396,
17323,
432,
253,
17596,
273,
29811,
333,
1157,
6984,
6230,
285,
2263,
7317,
893,
964,
13986,
16357,
19612,
1157,
253,
13986,
20904,
2065,
2421,
285,
4243,
273,
253,
13986,
5791,
44744,
574,
644,
10848,
275,
1722,
2222,
1157,
285,
253,
5112,
3361,
275,
253,
2919,
574,
644,
18414,
281,
25778,
282,
372,
6181,
285,
247,
1643,
30263,
17546,
275,
253,
6359,
5396,
17323,
964,
2490,
3808,
273,
253,
954,
1774,
5454,
15050,
3407,
387,
21860,
251,
285,
5602,
1952,
275,
49537,
32746,
9898,
4135,
964,
15643,
275,
1016,
807,
247,
1781,
47005,
1929,
347,
253,
346,
4135,
32521,
346,
1157,
9924,
273,
1781,
5791,
2102,
74,
14990,
24230,
11811,
275,
253,
2126,
273,
253,
4782,
5791,
5427,
6487,
1157,
33497,
8935,
4515,
281,
3060,
432,
5602,
1952,
9931,
257,
342,
10331,
285,
643,
6264,
18826,
964,
831,
47005,
369,
29187,
1534,
281,
9643,
1163,
581,
47005,
275,
1283,
2125,
369,
21392,
387,
689,
8157,
854,
3041,
313,
253,
6425,
273,
8157,
12891,
1214,
13,
33,
20181,
1214,
13,
33,
20181,
347,
273,
4022,
2387,
964,
496,
4247,
1722,
4148,
253,
47005,
574,
644,
13964,
407,
253,
5112,
40294,
275,
253,
5791,
44744,
1157,
11616,
2800,
48232,
684,
26814,
407,
3267,
250,
1214,
14,
33,
717,
7411,
25298,
330,
5069,
274,
8444,
372,
4165,
336,
90,
964,
496,
253,
40409,
378,
8952,
659,
12397,
3690,
888,
253,
17747,
372,
6991,
4165,
336,
90,
715,
22142,
326,
253,
440,
20039,
7551,
47005,
6221,
49932,
11811,
273,
253,
1386,
285,
253,
5112,
7599,
7411,
46047,
1157,
760,
4715,
273,
521,
2228,
327,
521,
1091,
281,
25778,
282,
372,
6181,
964,
1707,
369,
10665,
4468,
275,
5427,
326,
4165,
336,
90,
1537,
1611,
969,
275,
1722,
4185,
1157,
390,
326,
253,
9883,
1157,
665,
8838,
247,
6422,
40294,
387,
20120,
614,
1157,
1537,
1056,
271,
3177,
273,
616,
1211,
964,
2490,
21398,
1321,
686,
84,
3302,
27354,
327,
4715,
275,
4596,
1722,
4196,
273,
253,
40911,
16204,
273,
2137,
875,
9643,
285,
11268,
369,
281,
3812,
598,
5827,
323,
247,
2201,
11492,
273,
253,
22075,
1157,
1399,
433,
327,
43949,
275,
22563,
273,
253,
5547,
4782,
9232,
273,
43949,
275,
1722,
3763,
964,
2434,
1214,
14,
33,
6498,
342,
253,
15636,
1214,
14,
33,
4214,
273,
5427,
9011,
2516,
35787,
285,
20575,
15948,
411,
4415,
2205,
2190,
2571,
1157,
247,
6832,
25186,
285,
4668,
5621,
497,
299,
1513,
782,
264,
323,
253,
4254,
534,
369,
275,
253,
7170,
7219,
8661,
1157,
672,
12439,
3668,
7244,
275,
5427,
275,
4223,
1722,
4148,
30849,
253,
32648,
273,
8647,
80,
7191,
900,
534,
3982,
253,
3660,
273,
253,
3973,
32241,
281,
271,
990,
964,
9643,
1024,
11372,
6181,
285,
11268,
3815,
1157,
1223,
802,
739,
3927,
432,
253,
38708,
86,
43433,
273,
253,
11491,
273,
48205,
410,
1157,
271,
1711,
16871,
273,
9643,
275,
10586,
5427,
1157,
497,
8445,
5112,
8385,
342,
247,
23347,
15742,
273,
3167,
3191,
964,
380,
5300,
9355,
323,
253,
4254,
1411,
43949,
497,
3103,
14667,
275,
5427,
285,
253,
4254,
26224,
1157,
533,
253,
6055,
273,
253,
4135,
32521,
369,
1335,
5667,
285,
21398,
1321,
1073,
13083,
690,
273,
521,
40294,
9268,
4515,
281,
4135,
964,
2490,
329,
1180,
273,
24230,
11811,
574,
13037,
387,
29811,
333,
275,
253,
7203,
273,
1722,
4148,
275,
9008,
323,
253,
7408,
281,
5602,
1952,
281,
3301,
5454,
10229,
285,
6604,
253,
4135,
32521,
964,
1916,
33352,
436,
3490,
1157,
21398,
1321,
2530,
253,
3387,
1214,
14,
33,
5654,
1315,
12894,
388,
3338,
5619,
67,
4002,
1157,
10848,
432,
253,
5112,
387,
253,
15764,
273,
2752,
32937,
375,
275,
1722,
3953,
1157,
285,
253,
2456,
1214,
14,
33,
5654,
388,
3338,
2932,
321,
279,
1157,
534,
33497,
342,
253,
47005,
275,
4163,
1157,
3192,
10056,
949,
253,
19967,
953,
273,
5979,
3649,
66,
1157,
7416,
627,
407,
253,
11811,
273,
253,
1386,
388,
3338,
9964,
784,
285,
388,
3338,
1535,
888,
285,
253,
4567,
1214,
14,
33,
5654,
1315,
12894,
388,
3338,
11024,
762,
11918,
367,
503,
1751,
90,
34409,
323,
253,
2457,
31192,
281,
5602,
1952,
964,
380,
47005,
7244,
1293,
7119,
327,
2145,
4565,
1722,
4148,
1157,
3738,
253,
32173,
574,
644,
9619,
33153,
407,
20856,
31372,
964,
4928,
187,
426,
426,
2434,
3136,
686,
84,
39395,
426,
426,
4928,
19668,
426,
426,
426,
1720,
585,
34056,
273,
3083,
6077,
426,
426,
426,
4928,
187,
2726,
521,
47005,
15792,
387,
18536,
275,
5602,
1952,
285,
253,
4135,
32521,
2067,
3618,
432,
31474,
1157,
2434,
3136,
4425,
281,
8756,
2369,
262,
250,
43949,
285,
1056,
7313,
327,
253,
2245,
285,
253,
9883,
40294,
1754,
627,
964,
1284,
271,
2879,
16038,
1157,
11267,
2108,
275,
5602,
1952,
5125,
326,
253,
7970,
43949,
305,
4781,
251,
369,
1955,
281,
12666,
964,
831,
6215,
3982,
598,
281,
767,
3041,
9883,
9711,
8918,
432,
329,
4421,
335,
1940,
2439,
253,
11553,
17323,
15910,
387,
3262,
312,
327,
697,
1039,
281,
43949,
964,
3315,
375,
2996,
697,
8918,
275,
253,
22075,
1157,
253,
6215,
840,
10607,
5454,
10229,
432,
253,
5791,
44744,
323,
253,
1091,
9455,
281,
1457,
11268,
964,
831,
3790,
7408,
369,
5667,
281,
253,
9363,
273,
253,
9883,
13958,
275,
253,
5791,
44744,
1157,
534,
11658,
387,
271,
14779,
4832,
2957,
760,
4784,
27285,
407,
253,
6832,
14761,
90,
432,
1457,
11268,
964,
9883,
8918,
497,
253,
7607,
14731,
2439,
954,
273,
253,
5791,
44744,
1157,
285,
20638,
273,
436,
4832,
985,
812,
452,
15585,
2538,
327,
9933,
5454,
3706,
533,
4782,
35089,
574,
17837,
644,
20362,
253,
43949,
305,
4781,
790,
1580,
7195,
20120,
423,
763,
275,
1458,
2597,
964,
2490,
2070,
3292,
253,
27953,
16860,
16458,
387,
5602,
1952,
1157,
2434,
3136,
33497,
327,
608,
4247,
1722,
4185,
760,
342,
5619,
67,
4002,
285,
11024,
1157,
253,
6158,
8785,
247,
2305,
15,
22547,
1157,
271,
7407,
20365,
382,
964,
11271,
272,
7511,
5894,
1157,
2434,
3136,
686,
84,
11811,
14494,
247,
1355,
9883,
24230,
11179,
1157,
534,
369,
298,
1520,
4404,
253,
48232,
684,
1157,
534,
497,
12060,
5112,
492,
20917,
641,
964,
1023,
3006,
253,
9883,
11179,
1157,
2434,
3136,
8244,
17801,
253,
13595,
285,
6311,
326,
954,
273,
253,
9883,
40294,
275,
43949,
497,
17362,
9470,
25931,
387,
20120,
614,
285,
497,
5369,
262,
281,
15901,
964,
2434,
3136,
33302,
253,
13595,
407,
20437,
521,
11179,
342,
697,
18826,
15282,
1157,
3738,
344,
858,
5386,
495,
1214,
13,
33,
22908,
9711,
8918,
964,
380,
9883,
40294,
574,
9606,
16426,
275,
247,
46354,
3508,
275,
4162,
1722,
4148,
285,
1199,
273,
253,
4723,
574,
1335,
417,
644,
33172,
407,
253,
673,
2434,
3136,
686,
84,
1355,
40294,
7244,
745,
43949,
964,
2434,
3136,
574,
2668,
39933,
281,
40646,
521,
11811,
347,
5112,
12671,
1157,
26278,
5619,
67,
4002,
327,
253,
6422,
3387,
1214,
14,
33,
5654,
10188,
70,
285,
11024,
327,
253,
4577,
2604,
438,
13589,
964,
4928,
187,
426,
426,
426,
399,
5338,
327,
5619,
67,
4002,
426,
426,
426,
4928,
187,
26502,
275,
253,
9055,
273,
2145,
4247,
1722,
4185,
1157,
5619,
67,
4002,
285,
11024,
7244,
275,
43949,
6912,
1157,
37032,
440,
40893,
264,
2469,
253,
41289,
273,
3094,
1747,
49410,
285,
840,
31474,
2439,
253,
17699,
327,
253,
4131,
273,
1638,
4247,
1157,
11886,
4263,
875,
43949,
285,
20120,
614,
964,
4325,
521,
362,
44081,
1127,
2434,
3136,
812,
923,
253,
9883,
40294,
557,
78,
12457,
285,
762,
8706,
275,
20120,
614,
1157,
253,
11811,
273,
253,
1386,
5003,
33414,
1157,
19930,
285,
7812,
39564,
5069,
285,
253,
48232,
684,
17100,
372,
826,
15569,
2653,
66,
285,
7511,
8901,
275,
17463,
285,
5369,
262,
323,
2250,
964,
1916,
2434,
3136,
686,
84,
27531,
344,
812,
671,
923,
253,
43949,
305,
4781,
251,
1157,
2398,
10999,
19953,
1146,
440,
19052,
387,
253,
20120,
614,
277,
4121,
285,
1529,
9865,
24230,
6215,
47474,
23316,
639,
4650,
275,
253,
36050,
964,
380,
9883,
574,
6311,
760,
13515,
1078,
2434,
3136,
686,
84,
13024,
326,
253,
4782,
1315,
12894,
388,
3338,
35624,
762,
11918,
12824,
367,
2114,
3964,
369,
275,
43783,
12685,
285,
574,
4425,
281,
5386,
253,
9865,
18826,
432,
253,
21764,
6215,
2581,
685,
2495,
271,
2983,
964,
2490,
11024,
369,
253,
806,
4782,
6215,
715,
253,
11886,
4423,
1157,
285,
369,
17912,
13781,
407,
253,
7496,
27431,
1157,
3692,
10402,
2210,
22995,
964,
34409,
1157,
751,
2434,
3136,
1157,
7560,
5112,
2938,
1574,
285,
342,
22547,
42477,
369,
2104,
281,
29720,
253,
5908,
275,
4179,
326,
253,
747,
4582,
932,
497,
10188,
70,
285,
2604,
438,
13589,
8445,
13191,
285,
9883,
28432,
942,
323,
19938,
1218,
2821,
5871,
964,
380,
5908,
5907,
13191,
533,
17458,
264,
326,
5293,
273,
253,
9883,
11811,
651,
320,
275,
247,
1899,
281,
15901,
1919,
3919,
387,
253,
18353,
964,
2434,
3136,
840,
7416,
253,
3128,
327,
253,
12595,
273,
11024,
1157,
15081
] |
violations of international law. The original essay takes the " roosting chickens " of the title from a 1963 Malcolm X speech, in which Malcolm X linked the assassination of U.S. president John F. Kennedy to the violence which Kennedy perpetuated as " merely a case of chickens coming home to roost. " Churchill's essays in this book address the worldwide forms of resistance that he posits were and continue to be provoked by U.S. imperialism of the 20th and 21st centuries.
In Kill the Indian, Save the Man : The Genocidal Impact of American Indian Residential Schools ( 2004 ), Churchill traces the history of removing American Indian children from their homes to residential schools ( in Canada ) or Indian boarding schools ( in the USA ) as part of government policies ( 1880s – 1980s ) which he regards as genocidal.
= = Activism on Native American issues = =
Churchill has been active since at least 1984 as the co @-@ director of the Denver @-@ based American Indian Movement of Colorado, now an autonomous chapter of the American Indian Movement. In 1993, he and other local AIM leaders, including Russell Means, Glenn T. Morris, Robert Robideau, and David Hill, broke with the national AIM leadership, including Dennis Banks and the brothers Vernon and Clyde Bellecourt, claiming that all AIM chapters are autonomous. The AIM Grand Governing Council is based in Minneapolis and retains the name of the national group. It says that the schism arose when Means, Churchill, Glenn T. Morris and others openly supported the Miskito Indian group Misurasata, who were allied with the anti @-@ revolutionary, CIA @-@ backed Contras.
Journalists such as Harlan McKosato attributed the split to Means and other AIM members dividing over opposition to the Bellecourt brothers because of their alleged involvement in the execution of Anna Mae Aquash in December 1975, who was then the highest @-@ ranking woman in AIM but had been suspected of being an informant. It was a year in which other FBI informants had been discovered in AIM. On November 3, 1999, Means held a press conference in Denver, Colorado in which he accused the Bellecourt brothers of complicity in Aquash's death, and named three lower @-@ level AIM members involved in her death : Arlo Looking Cloud, John Graham, and Theda Nelson Clark. This was the first time that an AIM leader active at the time of the Aquash murder had publicly accused AIM of having been involved.
Looking Cloud and Graham were convicted of murder in 2004 and 2010, by federal and South Dakota state juries, respectively. By then Clark was being cared for in a nursing home and was not indicted. Means attributed the split in AIM to divisions in the aftermath of Aquash's murder. The journalist Harlan McKosato said in 1999, "... her [ Aquash's ] death has divided the American Indian Movement... "
The schism continued, with the national AIM leadership claiming that the local AIM leaders, such as Churchill, are tools of the U.S. government used against other American Indians. The leaders of the national AIM organization, now called AIM Grand Governing Council, claim that Churchill has worked in the past as an underground counter @-@ intelligence source for the U.S. government, for example the FBI, and local, non @-@ Indian, police forces, to subvert the national AIM organization. Specifically, they refer to a 1993 Boulder, Colorado interview with Jodi Rave, a former columnist for the Denver Post, in which Churchill stated that he " was teaching the Rapid City Police Department about the American Indian Movement. " In addition, Vernon Bellecourt accused Churchill of having'fraudulently represented himself as an Indian'to bolster his credentials. Bellecourt said he complained to the University of Colorado about this as early as 1986.
Churchill has been a leader of Colorado AIM's annual protests in Denver against the Columbus Day holiday and its associated parade. Colorado AIM's leadership has come into conflict with some leaders in the Denver Italian American community, the main supporters of the parade. As early as 2004, Churchill had claimed that such parades are unconstitutional, arguing that the Ninth Amendment to the Constitution provides Native Americans with a right not to be subjected to such displays, overriding the First Amendment rights of non @-@ Native Americans.
= = 9 / 11 essay controversy = =
Churchill wrote an essay in September 2001 entitled On the Justice of Roosting Chickens. In it, he argued that the September 11 attacks were provoked by U.S. foreign policy. He compared the role of financial workers at the World Trade Center in " ongoing genocidal American imperialism " to the role played by Adolf Eichmann in organizing the Holocaust. In 2005, this essay was widely publicized when Hamilton College invited Churchill to speak. This led to both condemnations of Churchill and counter @-@ accusations of McCarthyism by Churchill and supporters. Following the controversy, the University of Colorado interim Chancellor Phil DiStefano said, " While Professor Churchill has the constitutional right to express his political views, his essay on 9 / 11 has outraged and appalled us and the general public. "
A documentary called Shouting Fire : Stories from the Edge of Free Speech, broadcast on HBO, prominently features Churchill's case in addressing the issues of free speech and First Amendment rights.
= = Research misconduct investigation = =
The controversy attracted increased academic attention to Churchill's research, which had already been criticized by the legal scholar John LaVelle and historian Guenter Lewy. Additional critics were the sociologist Thomas Brown, who had been preparing an article on Churchill's work, and the historians R.G. Robertson and Russell Thornton, who claimed that Churchill had misrepresented their work. In 2005, University of Colorado Boulder administrators ordered an investigation into seven allegations of research misconduct, including three allegations of plagiarism, and four allegations of fabrication or falsification regarding the history of the Dawes Act, the Indian Arts and Crafts Act of 1990, and statements that smallpox was intentionally spread to Native Americans by John Smith in 1614 and by the United States Army at Fort Clark in 1837 ( not to be confused with the well @-@ documented use of smallpox @-@ infected blankets at Fort Pitt in 1764 ).
On May 16, 2006 the University released their findings ; the Investigative Committee agreed unanimously that Churchill had engaged in " serious research misconduct ", including falsification, fabrication, and two of the three allegations of plagiarism. The committee was divided on the appropriate level of sanctions. The Standing Committee on Research Misconduct accepted the findings of the Investigative Committee but also disagreed on what sanctions should be imposed. Churchill's appeal against his proposed dismissal was considered by a panel of the University's Privilege and Tenure Committee, which found that two of the seven findings of misconduct did not constitute dismissible offences. Three members recommended that the penalty should be demotion and one year's suspension without pay, while two favored dismissal.
On July 24, 2007, the University regents voted seven to two to uphold all seven of the findings of research misconduct, overruling the recommendation of Privilege and Tenure panel that two be dismissed. By a vote of eight to one, the regents determined to fire Churchill.
The next day, Churchill filed a lawsuit in state court claiming that the firing was retribution for his expressing politically unpopular views. The jury in Churchill's suit for reinstatement weighed the university's claims of academic misconduct per jury instructions it received in the case. As Stanley Fish said, " It was the jury ’ s task to determine whether Churchill ’ s dismissal would have occurred independently of the adverse political response to his constitutionally protected statements. " The jury found that the alleged misconduct would not have led to Churchill's firing and rejected the university's academic misconduct claim as the grounds for dismissal. On April 1, 2009, a Colorado jury found that Churchill had been wrongly fired, and awarded $ 1 in damages. As one of the jurors said later in a press interview, " it wasn 't a slap in his face or anything like that when we didn 't give him any money. It's just that [ Churchill's attorney ] David Lane kept saying this wasn 't about the money, and in the end, we took his word for that. " Churchill's counsel asked Chief Judge Larry J. Naves of the Denver District Court to order reinstatement in light of the verdict.
On July 7, 2009, Judge Naves found that the defendants ( university ) were entitled to quasi @-@ judicial immunity as a matter of law, vacated the jury verdict and determined that the University did not owe Churchill any financial compensation. Naves denied Churchill's request for reinstatement at CU.
Churchill appealed both decisions. On November 24, 2010, a three @-@ judge panel of the Colorado Court of Appeals affirmed the trial court's decision. In February 2011, Churchill filed a petition for writ of certiorari with the Colorado Supreme Court. In late May 2011, the Colorado Supreme Court agreed to hear his case. Court records indicate that oral arguments began June 7, 2012. On September 10, 2012, the court ruled that the University had " quasi @-@ judicial immunity ", upholding the trial court's ruling. On April 1, 2013, the U.S. Supreme Court declined to hear an appeal from Churchill.
= = Honors = =
1992, Alfred University awarded him an honorary Doctorate of Humane Letters.
= = Works = =
Books, as editor
Marxism and Native Americans. Boulder CO : South End Press. 1984. ISBN 978 @-@ 0 @ | wikitext_103 | [
15927,
273,
5213,
1569,
964,
380,
3236,
16555,
3936,
253,
346,
687,
493,
272,
29466,
346,
273,
253,
4060,
432,
247,
19949,
34409,
1594,
6519,
1157,
275,
534,
34409,
1594,
7939,
253,
34024,
273,
530,
15,
52,
15,
4007,
2516,
401,
15,
16598,
281,
253,
7217,
534,
16598,
14549,
11634,
347,
346,
7960,
247,
1083,
273,
29466,
3551,
1728,
281,
687,
493,
964,
346,
27961,
686,
84,
30506,
275,
436,
1984,
2953,
253,
11762,
4948,
273,
5052,
326,
344,
803,
953,
497,
285,
4035,
281,
320,
42652,
407,
530,
15,
52,
15,
21474,
1204,
273,
253,
1384,
394,
285,
3127,
296,
14020,
964,
2490,
496,
26464,
253,
5396,
1157,
23017,
253,
3083,
1163,
380,
2588,
406,
11421,
29930,
273,
2448,
5396,
2213,
9440,
27498,
313,
6157,
2387,
1157,
27961,
20274,
253,
2892,
273,
11922,
2448,
5396,
2151,
432,
616,
9076,
281,
16252,
6629,
313,
275,
6144,
2387,
390,
5396,
34519,
6629,
313,
275,
253,
5106,
2387,
347,
629,
273,
2208,
7823,
313,
32626,
84,
1108,
9178,
84,
2387,
534,
344,
17730,
347,
730,
406,
11421,
964,
4928,
187,
426,
426,
39750,
1204,
327,
18199,
2448,
3374,
426,
426,
4928,
187,
27961,
556,
644,
3939,
1580,
387,
1878,
12459,
347,
253,
820,
1214,
14,
33,
6423,
273,
253,
20734,
1214,
14,
33,
1754,
2448,
5396,
25678,
273,
13338,
1157,
1024,
271,
26279,
8857,
273,
253,
2448,
5396,
25678,
964,
496,
9725,
1157,
344,
285,
643,
1980,
329,
2894,
7038,
1157,
1690,
17410,
46062,
1157,
31026,
308,
15,
17771,
1157,
6911,
6625,
504,
1952,
1157,
285,
5119,
7061,
1157,
9377,
342,
253,
3872,
329,
2894,
9550,
1157,
1690,
26062,
28896,
285,
253,
13189,
42171,
285,
41158,
615,
31596,
13550,
1157,
15081,
326,
512,
329,
2894,
23168,
403,
26279,
964,
380,
329,
2894,
8481,
443,
1189,
920,
6456,
310,
1754,
275,
32635,
285,
32751,
253,
1416,
273,
253,
3872,
1387,
964,
733,
2296,
326,
253,
5807,
1204,
20944,
672,
46062,
1157,
27961,
1157,
31026,
308,
15,
17771,
285,
2571,
22134,
4516,
253,
353,
1886,
7067,
5396,
1387,
29056,
27356,
682,
1157,
665,
497,
38952,
342,
253,
3270,
1214,
14,
33,
22564,
1157,
17879,
1214,
14,
33,
17245,
3267,
6230,
964,
2490,
9109,
1346,
824,
347,
3972,
13409,
16638,
375,
4611,
12877,
253,
8085,
281,
46062,
285,
643,
329,
2894,
2758,
23534,
689,
10266,
281,
253,
31596,
13550,
13189,
984,
273,
616,
5575,
10171,
275,
253,
10636,
273,
16543,
40793,
23231,
1225,
275,
4565,
14752,
1157,
665,
369,
840,
253,
4585,
1214,
14,
33,
19947,
3416,
275,
329,
2894,
533,
574,
644,
13282,
273,
1146,
271,
37065,
964,
733,
369,
247,
807,
275,
534,
643,
12578,
4151,
1103,
574,
644,
6888,
275,
329,
2894,
964,
1623,
4596,
495,
1157,
7544,
1157,
46062,
2918,
247,
2315,
8059,
275,
20734,
1157,
13338,
275,
534,
344,
10145,
253,
31596,
13550,
13189,
273,
5177,
414,
275,
23231,
1225,
686,
84,
2471,
1157,
285,
4907,
1264,
2406,
1214,
14,
33,
1268,
329,
2894,
2758,
3206,
275,
617,
2471,
1163,
1780,
4213,
23359,
18189,
1157,
2516,
17953,
1157,
285,
380,
1473,
19027,
15319,
964,
831,
369,
253,
806,
673,
326,
271,
329,
2894,
6657,
3939,
387,
253,
673,
273,
253,
23231,
1225,
7701,
574,
13644,
10145,
329,
2894,
273,
1907,
644,
3206,
964,
2490,
23359,
18189,
285,
17953,
497,
13084,
273,
7701,
275,
6157,
285,
4267,
1157,
407,
4400,
285,
3684,
23528,
1375,
5099,
447,
1157,
2975,
964,
2896,
840,
15319,
369,
1146,
24782,
323,
275,
247,
15929,
1728,
285,
369,
417,
38455,
964,
46062,
12877,
253,
8085,
275,
329,
2894,
281,
22387,
275,
253,
31433,
273,
23231,
1225,
686,
84,
7701,
964,
380,
17264,
3972,
13409,
16638,
375,
4611,
753,
275,
7544,
1157,
346,
3346,
617,
544,
23231,
1225,
686,
84,
5032,
2471,
556,
4272,
253,
2448,
5396,
25678,
3346,
346,
2490,
380,
5807,
1204,
4821,
1157,
342,
253,
3872,
329,
2894,
9550,
15081,
326,
253,
1980,
329,
2894,
7038,
1157,
824,
347,
27961,
1157,
403,
5657,
273,
253,
530,
15,
52,
15,
2208,
908,
1411,
643,
2448,
16869,
964,
380,
7038,
273,
253,
3872,
329,
2894,
6003,
1157,
1024,
1925,
329,
2894,
8481,
443,
1189,
920,
6456,
1157,
1750,
326,
27961,
556,
4307,
275,
253,
2469,
347,
271,
19076,
4828,
1214,
14,
33,
9260,
2603,
323,
253,
530,
15,
52,
15,
2208,
1157,
323,
1650,
253,
12578,
1157,
285,
1980,
1157,
1327,
1214,
14,
33,
5396,
1157,
3513,
5621,
1157,
281,
749,
1748,
253,
3872,
329,
2894,
6003,
964,
13658,
1157,
597,
3730,
281,
247,
9725,
378,
35233,
1157,
13338,
4572,
342,
500,
26206,
416,
1123,
1157,
247,
3438,
43556,
323,
253,
20734,
5779,
1157,
275,
534,
27961,
4767,
326,
344,
346,
369,
9551,
253,
37645,
3228,
9651,
4487,
670,
253,
2448,
5396,
25678,
964,
346,
496,
1635,
1157,
42171,
31596,
13550,
10145,
27961,
273,
1907,
686,
9116,
335,
1574,
6607,
2994,
347,
271,
5396,
686,
281,
48404,
521,
23820,
964,
31596,
13550,
753,
344,
19375,
281,
253,
2499,
273,
13338,
670,
436,
347,
2393,
347,
12140,
964,
2490,
27961,
556,
644,
247,
6657,
273,
13338,
329,
2894,
686,
84,
7970,
18162,
275,
20734,
1411,
253,
27899,
6258,
13319,
285,
697,
2330,
28768,
964,
13338,
329,
2894,
686,
84,
9550,
556,
1705,
715,
7344,
342,
690,
7038,
275,
253,
20734,
9890,
2448,
3114,
1157,
253,
2022,
14501,
273,
253,
28768,
964,
1284,
2393,
347,
6157,
1157,
27961,
574,
7558,
326,
824,
1061,
3355,
403,
27093,
1157,
16425,
326,
253,
32533,
10737,
281,
253,
10350,
3400,
18199,
7108,
342,
247,
987,
417,
281,
320,
12021,
281,
824,
12646,
1157,
49776,
253,
3973,
10737,
3570,
273,
1327,
1214,
14,
33,
18199,
7108,
964,
4928,
187,
426,
426,
898,
1227,
1903,
16555,
16305,
426,
426,
4928,
187,
27961,
4159,
271,
16555,
275,
4397,
6585,
7429,
1623,
253,
8293,
273,
8741,
493,
272,
46797,
561,
964,
496,
352,
1157,
344,
9125,
326,
253,
4397,
1903,
8104,
497,
42652,
407,
530,
15,
52,
15,
5639,
3646,
964,
754,
2429,
253,
2554,
273,
4832,
5820,
387,
253,
3645,
17061,
5197,
275,
346,
10800,
730,
406,
11421,
2448,
21474,
1204,
346,
281,
253,
2554,
4546,
407,
2006,
6352,
444,
469,
8420,
275,
26169,
253,
34140,
964,
496,
5826,
1157,
436,
16555,
369,
7561,
1345,
1025,
672,
9516,
6822,
12470,
27961,
281,
3984,
964,
831,
3977,
281,
1097,
25650,
569,
273,
27961,
285,
4828,
1214,
14,
33,
29672,
273,
32101,
1204,
407,
27961,
285,
14501,
964,
11977,
253,
16305,
1157,
253,
2499,
273,
13338,
26964,
34641,
6778,
6129,
6812,
71,
4692,
753,
1157,
346,
3900,
12734,
27961,
556,
253,
10281,
987,
281,
3890,
521,
3569,
6849,
1157,
521,
16555,
327,
898,
1227,
1903,
556,
562,
34785,
285,
622,
18859,
441,
285,
253,
2087,
1345,
964,
346,
2490,
329,
18802,
1925,
1608,
20309,
8726,
1163,
30902,
432,
253,
24105,
273,
7648,
38399,
1157,
10675,
327,
41069,
1157,
46454,
3386,
27961,
686,
84,
1083,
275,
15974,
253,
3374,
273,
1959,
6519,
285,
3973,
10737,
3570,
964,
4928,
187,
426,
426,
5489,
21600,
5839,
426,
426,
4928,
187,
380,
16305,
17755,
2559,
11073,
4116,
281,
27961,
686,
84,
2561,
1157,
534,
574,
2168,
644,
23159,
407,
253,
4320,
26902,
2516,
3905,
55,
4415,
285,
24072,
3262,
9553,
11146,
90,
964,
14117,
17139,
497,
253,
10621,
10364,
7195,
7233,
1157,
665,
574,
644,
13828,
271,
3929,
327,
27961,
686,
84,
789,
1157,
285,
253,
30525,
416,
15,
40,
15,
34405,
285,
17410,
50087,
1157,
665,
7558,
326,
27961,
574,
25355,
264,
616,
789,
964,
496,
5826,
1157,
2499,
273,
13338,
378,
35233,
30015,
6960,
271,
5839,
715,
5093,
11307,
273,
2561,
21600,
1157,
1690,
1264,
11307,
273,
32929,
11158,
1204,
1157,
285,
1740,
11307,
273,
22911,
390,
21649,
1877,
5001,
253,
2892,
273,
253,
27080,
265,
3162,
1157,
253,
5396,
15118,
285,
35090,
84,
3162,
273,
7901,
1157,
285,
7234,
326,
1355,
81,
1004,
369,
23209,
5195,
281,
18199,
7108,
407,
2516,
6212,
275,
1668,
1047,
285,
407,
253,
1986,
2077,
8663,
387,
10188,
15319,
275,
1283,
1787,
313,
417,
281,
320,
13477,
342,
253,
973,
1214,
14,
33,
14290,
897,
273,
1355,
81,
1004,
1214,
14,
33,
9813,
40144,
387,
10188,
15946,
275,
1722,
1540,
2387,
964,
2490,
1623,
2552,
1668,
1157,
5403,
253,
2499,
4439,
616,
4342,
3706,
253,
32668,
800,
7039,
5821,
38350,
326,
27961,
574,
9583,
275,
346,
4092,
2561,
21600,
346,
1157,
1690,
21649,
1877,
1157,
22911,
1157,
285,
767,
273,
253,
1264,
11307,
273,
32929,
11158,
1204,
964,
380,
9353,
369,
4272,
327,
253,
4569,
1268,
273,
17634,
964,
380,
37496,
7039,
327,
5489,
29056,
11018,
7607,
253,
4342,
273,
253,
32668,
800,
7039,
533,
671,
41030,
327,
752,
17634,
943,
320,
11295,
964,
27961,
686,
84,
4549,
1411,
521,
4081,
16852,
369,
2783,
407,
247,
5370,
273,
253,
2499,
686,
84,
19178,
587,
463,
285,
13728,
459,
7039,
1157,
534,
1119,
326,
767,
273,
253,
5093,
4342,
273,
21600,
858,
417,
12647,
5597,
917,
745,
2979,
964,
9064,
2758,
8521,
326,
253,
12339,
943,
320,
1471,
5011,
285,
581,
807,
686,
84,
13394,
1293,
2075,
1157,
1223,
767,
25973,
16852,
964,
2490,
1623,
4163,
2164,
1157,
5215,
1157,
253,
2499,
810,
592,
14285,
5093,
281,
767,
281,
39954,
512,
5093,
273,
253,
4342,
273,
2561,
21600,
1157,
17797,
16292,
253,
17401,
273,
19178,
587,
463,
285,
13728,
459,
5370,
326,
767,
320,
11511,
964,
2896,
247,
6273,
273,
4314,
281,
581,
1157,
253,
810,
592,
3413,
281,
3289,
27961,
964,
2490,
380,
1735,
1388,
1157,
27961,
4724,
247,
15091,
275,
1375,
1302,
15081,
326,
253,
14954,
369,
851,
2382,
323,
521,
13002,
23075,
46807,
6849,
964,
380,
4984,
275,
27961,
686,
84,
4176,
323,
30938,
26333,
24398,
253,
9835,
686,
84,
3916,
273,
11073,
21600,
591,
4984,
7997,
352,
2959,
275,
253,
1083,
964,
1284,
20923,
23645,
753,
1157,
346,
733,
369,
253,
4984,
15956,
256,
4836,
281,
3653,
1880,
27961,
15956,
256,
16852,
651,
452,
5866,
10939,
273,
253,
10021,
3569,
2380,
281,
521,
38704,
6885,
7234,
964,
346,
380,
4984,
1119,
326,
253,
5575,
21600,
651,
417,
452,
3977,
281,
27961,
686,
84,
14954,
285,
10945,
253,
9835,
686,
84,
11073,
21600,
1750,
347,
253,
9905,
323,
16852,
964,
1623,
4162,
337,
1157,
4748,
1157,
247,
13338,
4984,
1119,
326,
27961,
574,
644,
47723,
11226,
1157,
285,
11941,
370,
337,
275,
8540,
964,
1284,
581,
273,
253,
25710,
753,
1996,
275,
247,
2315,
4572,
1157,
346,
352,
3589,
686,
85,
247,
37551,
275,
521,
2454,
390,
2712,
751,
326,
672,
359,
1904,
686,
85,
1918,
779,
667,
2583,
964,
733,
686,
84,
816,
326,
544,
27961,
686,
84,
6834,
5032,
5119,
19051,
4934,
3981,
436,
3589,
686,
85,
670,
253,
2583,
1157,
285,
275,
253,
990,
1157,
359,
2335,
521,
3159,
323,
326,
964,
346,
27961,
686,
84,
5067,
2546,
9060,
6798,
20681,
500,
15,
427,
3465,
273,
253,
20734,
4412,
2111,
281,
1340,
30938,
26333,
275,
1708,
273,
253,
11844,
964,
2490,
1623,
4163,
818,
1157,
4748,
1157,
6798,
427,
3465,
1119,
326,
253,
7159,
313,
9835,
2387,
497,
7429,
281,
15539,
1214,
14,
33,
12379,
11979,
347,
247,
2647,
273,
1569,
1157,
35617,
253,
4984,
11844,
285,
3413,
326,
253,
2499,
858,
417,
24186,
27961,
667,
4832,
10963,
964,
427,
3465,
5868,
27961,
686,
84,
2748,
323,
30938,
26333,
387,
32463,
964,
2490,
27961,
20652,
1097,
7089,
964,
1623,
4596,
2164,
1157,
4267,
1157,
247,
1264,
1214,
14,
33,
5963,
5370,
273,
253,
13338,
2111,
273,
9892,
16337,
253,
2332,
1302,
686,
84,
3061,
964,
496,
5080,
4332,
1157,
27961,
4724,
247,
5266,
323,
2416,
273,
5306,
43738,
342,
253,
13338,
6413,
2111,
964,
496,
3563,
2552,
4332,
1157,
253,
13338,
6413,
2111,
5821,
281,
4089,
521,
1083,
964,
2111,
5861,
5224,
326,
7946,
7125,
3407,
3978,
818,
1157,
4050,
964,
1623,
4397,
884,
1157,
4050,
1157,
253,
1302,
12969,
326,
253,
2499,
574,
346,
15539,
1214,
14,
33,
12379,
11979,
346,
1157,
598,
16514,
253,
2332,
1302,
686,
84,
10362,
964,
1623,
4162,
337,
1157,
4072,
1157,
253,
530,
15,
52,
15,
6413,
2111,
13072,
281,
4089,
271,
4549,
432,
27961,
964,
4928,
187,
426,
426,
10916,
641,
426,
426,
4928,
187,
9748,
1157,
24179,
2499,
11941,
779,
271,
10390,
552,
15058,
366,
273,
16765,
1351,
29027,
964,
4928,
187,
426,
426,
15390,
426,
426,
4928,
187,
16103,
1157,
347,
8121,
2490,
19381,
1204,
285,
18199,
7108,
964,
378,
35233,
6392,
1163,
3684,
8072,
5687,
964,
12459,
964,
4110,
17044,
34292,
1214,
14,
33,
470,
1214
] |
months due to the delay of his planned move to the United States by the outbreak of the Gulf War, but was engrossed in the project for nearly a year. His designs for levels were intended to attract both hardcore and casual gamers by integrating occasional challenging set pieces into the mostly accessible level design. The game's color scheme was influenced by the work of pop artist Eizin Suzuki, and the aesthetics of Green Hill were influenced by the geography of California.
In designing the game mechanics, Naka was inspired by Shigeru Miyamoto, whose games he had enjoyed playing years earlier. Admiring the simplicity of Miyamoto's mechanics in complex environments, Naka decided that Sonic would be controlled with only a directional pad for movement and a single button for jumping. He also wanted his creation to be more action @-@ oriented than the Mario series ; while playing Super Mario Bros., he had wondered why the levels could not be cleared more quickly. Due to the need to demonstrate the Genesis'technological prowess, the developing game underwent extensive testing and redesign, a process taking over six months. The developers'efforts were rewarded ; according to Yuji Naka, the game had the fastest @-@ ever character speed in a video game and a rotation effect in the special stages that was considered impossible on the console. The team intended to add a two @-@ player mode displayed via split @-@ screen, but Naka's programming knowledge was insufficient to implement this feature. However, such a mode would later appear in sequel Sonic the Hedgehog 2 ( 1992 ), where the second player would control Sonic's best friend Miles " Tails " Prower. Naka, Oshima, and Yasuhara worked 19 hours a day on the project for several months.
Naka's relationship with Sega of Japan was tenuous during this time ; he received little credit for his involvement in the game. He left the company shortly after the game's release, although Sega of America hired him later. Before leaving, however, he defied Sega of Japan's prohibition of developer credits by displaying a few names in black text on a black background, identifiable only by looking at the game's code.
= = = Music = = =
The music for Sonic the Hedgehog was composed and produced by Masato Nakamura, bassist and lead songwriter of the J @-@ pop band Dreams Come True. The game uses onboard Yamaha YM2612 and SN76489 programmable sound generators to produce a variety of stereo sound effects and music. It was originally intended to have a sound test menu with animations of Sonic breakdancing to the music of a " Sonic Band " of Sharps Chicken on guitar, Max Monkey on bass, Mach Rabbit on drums, and Vector the Crocodile on keyboard. The playable Vector became a recurring character in the series, also appearing in Knuckles'Chaotix, Sonic Heroes, and Sonic Free Riders. The development schedule scrapped the feature, and Yuji Naka replaced the test with the " Se @-@ ga! " chant used in TV commercials ( which reportedly used one @-@ eighth of the memory of the four @-@ megabit cartridge ).
On October 19, 2011, twenty years after the game's release, a three @-@ disc compilation of music from Sonic the Hedgehog and Sonic the Hedgehog 2 was released in Japan. The first disc features original tracks from both games, the second contains Masato Nakamura's demo recordings and the third comprises songs by Dreams Come True and their Akon remixes.
= = = Packaging and release = = =
Game @-@ package illustrator Akira Watanabe said that his goal was to make the characters " colorful ", using clear lines and gradation to " finish them neatly ". According to Watanabe, the developers asked him to create a package design " similar to pop art... without being particular to conventional packages " – something " original " and " stylish ". The game was released in North America, Europe, and Australia on June 23, 1991, and in Japan on July 26. Sega of America packaged it with American Genesis consoles, replacing Altered Beast. Genesis owners who bought their consoles before the switch could request free copies of Sonic the Hedgehog by mail. Sega of America created a large @-@ scale marketing campaign to promote the game and Sonic as a mascot for the company.
= = Alternate versions and ports = =
= = = 8 @-@ bit version = = =
A version of Sonic the Hedgehog was developed by Ancient and released in 1991 for Sega's 8 @-@ bit consoles, the Master System and Game Gear. Its plot and gameplay mechanics are similar to the 16 @-@ bit version, with different level themes and digital assets. The level design is flatter, with no vertical loops, and Sonic cannot re @-@ collect his rings after being hit. The game has a different soundtrack, composed by chiptune musician Yuzo Koshiro and including his compositions and adaptations of music from the 16 @-@ bit version. It was the final game released for the Master System in North America. The Master System version was re @-@ released for Wii's Virtual Console service in North America on August 4, 2008, and in Europe on August 8. The Game Gear version was re @-@ released for the Nintendo 3DS Virtual Console on June 13, 2013, and included as an unlockable game in Sonic Adventure DX : Director's Cut for GameCube and Windows and Sonic Mega Collection Plus for PlayStation 2, Xbox, and Windows.
= = = Sonic the Hedgehog Genesis = = =
A port, Sonic the Hedgehog Genesis, was released for the Game Boy Advance ( GBA ) on November 14, 2006 in United States to mark the game's fifteenth anniversary. It included several new features, such as the ability to save game progress, a level select option, and an Anniversary Mode with the Spin Dash move ( not originally implemented until Sonic the Hedgehog 2 ). Its screen is slightly zoomed in, and adapted to the GBA's widescreen aspect ratio. The game received poor reviews, with a Metacritic score of 33 percent ; the chief complaints concerned its poor conversion to the Game Boy Advance ( resulting in a slow frame rate ), remixed chunky music, and poor preservation of the original gameplay.
= = = Compilation releases = = =
With its sequels for the Genesis, Sonic the Hedgehog has been ported for a wide range of home and handheld consoles and personal computers. It has appeared in Sonic Compilation ( 1995 ) for the Genesis, Sonic Jam ( 1997 ) for the Sega Saturn and Game.com, Sonic Mega Collection ( 2002 ), Sonic Mega Collection Plus ( 2004 ), Sonic's Ultimate Genesis Collection ( 2009 ) for the Xbox 360 and PlayStation 3, and Sonic Classic Collection ( 2010 ) for the Nintendo DS. Additionally, the game is an unlockable reward in the console versions of Sonic Generations.
= = = Downloadable releases = = =
Sonic the Hedgehog has been available for all three major seventh @-@ generation video game consoles. It was part of the Wii Virtual Console at the service's 2006 introduction, and was released for the Xbox Live Arcade and PlayStation Network shortly afterwards. The game was released for the iPod Classic, iPod video, and video @-@ capable iPod Nano models in 2007 and for Apple's iOS service ( compatible iPhone and iPod touch models ) in April 2009. Sonic the Hedgehog became available on GameTap in September 2009. In October 2010, it was released as a Microsoft Windows download which was ported to Steam. The game was ported to two online app services ( Google Play and the Amazon Appstore ) in December 2012. A remastered mobile port, created using Christian Whitehead's Retro Engine previously used in the 2011 rerelease of Sonic CD, was released on iOS, replacing the original port, on May 15, 2013 with an Android version released the following day. The port features widescreen graphics, the optional ability to spin dash, a time attack mode, and the unlockable option to play as Tails or Knuckles the Echidna. The game was also released as part of the Nintendo 3DS 3D Classics line in May 2013 in Japan, and worldwide in December.
= = Reception = =
Sonic the Hedgehog was critically praised at its release and in retrospective reviews, with an 86 @-@ percent approval rating at the review aggregator GameRankings based on nine reviews. The game rivaled the Mario series, particularly Super Mario World ( which was recently released for Genesis rival Super Nintendo Entertainment System ). Paul Rand of Computer and Video Games compared the two in depth and characterized Sonic the Hedgehog as being faster, with brighter colors, and Super Mario World as having more " depth of play ".
Reviewers noted the game's colorful, detailed graphics. Rand called its color scheme " lively, but never garish ", praising the interaction of color with detail in the sprites, backgrounds, and animations and describing its graphics as the best available for the Genesis. Reviewer Boogie Man of GamePro called the intricate backgrounds " eye @-@ popping " and " gorgeous ", which was echoed by Mean Machines. According to the Lessers ( Hartley, Patricia, and Kirk ) of Dragon, " The graphics and animation in Sonic the Hedgehog make this a serious contender for the best video game of | wikitext_103 | [
2607,
1955,
281,
253,
5778,
273,
521,
9355,
2118,
281,
253,
1986,
2077,
407,
253,
15742,
273,
253,
18351,
3660,
1157,
533,
369,
2209,
1350,
264,
275,
253,
2199,
323,
4829,
247,
807,
964,
3032,
11809,
323,
2308,
497,
6034,
281,
6427,
1097,
45960,
285,
15120,
40178,
407,
24399,
19322,
11132,
873,
7437,
715,
253,
6571,
12482,
1268,
2216,
964,
380,
2165,
686,
84,
3295,
6974,
369,
12208,
407,
253,
789,
273,
1684,
9558,
444,
478,
249,
47848,
1157,
285,
253,
47326,
273,
6115,
7061,
497,
12208,
407,
253,
37756,
273,
5002,
964,
2490,
496,
20462,
253,
2165,
17823,
1157,
427,
10573,
369,
11797,
407,
1608,
8047,
86,
47923,
32150,
1157,
3692,
3958,
344,
574,
11346,
4882,
1107,
4321,
964,
24127,
4261,
253,
17647,
273,
47923,
32150,
686,
84,
17823,
275,
2570,
12620,
1157,
427,
10573,
4425,
326,
322,
5120,
651,
320,
6537,
342,
760,
247,
36799,
13229,
323,
4866,
285,
247,
2014,
6409,
323,
22802,
964,
754,
671,
3078,
521,
8869,
281,
320,
625,
2250,
1214,
14,
33,
19373,
685,
253,
27264,
2962,
3706,
1223,
4882,
6053,
27264,
29906,
15,
1157,
344,
574,
13876,
2139,
253,
2308,
812,
417,
320,
16481,
625,
4541,
964,
12571,
281,
253,
878,
281,
7568,
253,
39184,
686,
20417,
39488,
405,
1157,
253,
6684,
2165,
13368,
9470,
5175,
285,
45755,
1157,
247,
1232,
3192,
689,
2800,
2607,
964,
380,
12259,
686,
6031,
497,
33302,
3706,
2556,
281,
23888,
8020,
427,
10573,
1157,
253,
2165,
574,
253,
22583,
1214,
14,
33,
2455,
1894,
3885,
275,
247,
3492,
2165,
285,
247,
9381,
1055,
275,
253,
2714,
8661,
326,
369,
2783,
7479,
327,
253,
9667,
964,
380,
2285,
6034,
281,
823,
247,
767,
1214,
14,
33,
4760,
4438,
8653,
3066,
8085,
1214,
14,
33,
3601,
1157,
533,
427,
10573,
686,
84,
10717,
3640,
369,
12497,
281,
3359,
436,
4735,
964,
1723,
1157,
824,
247,
4438,
651,
1996,
3176,
275,
24590,
322,
5120,
253,
388,
13057,
44855,
374,
313,
9748,
2387,
1157,
835,
253,
1273,
4760,
651,
1453,
322,
5120,
686,
84,
1682,
3331,
29761,
346,
308,
5351,
346,
367,
736,
254,
964,
427,
10573,
1157,
473,
1200,
8032,
1157,
285,
48171,
6968,
4595,
4307,
655,
3038,
247,
1388,
327,
253,
2199,
323,
2067,
2607,
964,
2490,
427,
10573,
686,
84,
2954,
342,
322,
3604,
273,
4047,
369,
3578,
3472,
1309,
436,
673,
3706,
344,
2959,
1652,
6152,
323,
521,
10171,
275,
253,
2165,
964,
754,
1669,
253,
2567,
13515,
846,
253,
2165,
686,
84,
3727,
1157,
3738,
322,
3604,
273,
3968,
14565,
779,
1996,
964,
9613,
6108,
1157,
2299,
1157,
344,
809,
728,
322,
3604,
273,
4047,
686,
84,
30034,
273,
13722,
20079,
407,
19703,
247,
1643,
4454,
275,
2806,
2505,
327,
247,
2806,
4114,
1157,
38640,
760,
407,
2819,
387,
253,
2165,
686,
84,
2127,
964,
4928,
187,
426,
426,
426,
11412,
426,
426,
426,
4928,
187,
380,
3440,
323,
322,
5120,
253,
388,
13057,
44855,
369,
9924,
285,
4197,
407,
12962,
4611,
27280,
41421,
1157,
16819,
382,
285,
1421,
4498,
16360,
273,
253,
500,
1214,
14,
33,
1684,
3961,
48774,
13516,
11793,
964,
380,
2165,
4648,
40791,
27117,
19369,
714,
46,
1731,
805,
285,
7167,
24,
1540,
2511,
45062,
3590,
21025,
281,
4711,
247,
5235,
273,
36167,
3590,
2538,
285,
3440,
964,
733,
369,
8927,
6034,
281,
452,
247,
3590,
1071,
8910,
342,
43588,
273,
322,
5120,
2740,
69,
6816,
281,
253,
3440,
273,
247,
346,
322,
5120,
16804,
346,
273,
25454,
793,
31541,
327,
12609,
1157,
7903,
4200,
2364,
327,
16819,
1157,
20310,
41948,
327,
27275,
1157,
285,
17811,
253,
13198,
19880,
587,
327,
15487,
964,
380,
1132,
494,
17811,
3395,
247,
36108,
1894,
275,
253,
2962,
1157,
671,
15602,
275,
10381,
37746,
686,
22951,
302,
895,
1157,
322,
5120,
44925,
1157,
285,
322,
5120,
7648,
416,
5852,
964,
380,
2440,
10130,
660,
28016,
253,
4735,
1157,
285,
23888,
8020,
427,
10573,
7932,
253,
1071,
342,
253,
346,
1023,
1214,
14,
33,
23646,
2195,
346,
49479,
908,
275,
5579,
47864,
313,
534,
17324,
908,
581,
1214,
14,
33,
23738,
273,
253,
3541,
273,
253,
1740,
1214,
14,
33,
19488,
46442,
28719,
2387,
964,
2490,
1623,
4437,
655,
1157,
4332,
1157,
6818,
1107,
846,
253,
2165,
686,
84,
3727,
1157,
247,
1264,
1214,
14,
33,
1262,
25234,
273,
3440,
432,
322,
5120,
253,
388,
13057,
44855,
285,
322,
5120,
253,
388,
13057,
44855,
374,
369,
4439,
275,
4047,
964,
380,
806,
1262,
3386,
3236,
11411,
432,
1097,
3958,
1157,
253,
1273,
4428,
12962,
4611,
27280,
41421,
686,
84,
22020,
19654,
285,
253,
2626,
12093,
9575,
407,
48774,
13516,
11793,
285,
616,
14181,
251,
867,
895,
265,
964,
4928,
187,
426,
426,
426,
18715,
2977,
285,
3727,
426,
426,
426,
4928,
187,
10850,
1214,
14,
33,
5522,
7339,
1080,
14181,
8432,
11327,
266,
12424,
753,
326,
521,
4736,
369,
281,
1056,
253,
5810,
346,
30820,
346,
1157,
970,
2590,
3104,
285,
3805,
318,
281,
346,
8416,
731,
36166,
346,
964,
4794,
281,
11327,
266,
12424,
1157,
253,
12259,
2546,
779,
281,
2794,
247,
5522,
2216,
346,
2074,
281,
1684,
1445,
3346,
1293,
1146,
1798,
281,
6041,
12149,
346,
1108,
1633,
346,
3236,
346,
285,
346,
38194,
346,
964,
380,
2165,
369,
4439,
275,
3729,
3968,
1157,
3060,
1157,
285,
6976,
327,
3978,
3495,
1157,
10226,
1157,
285,
275,
4047,
327,
4163,
3436,
964,
322,
3604,
273,
3968,
32487,
352,
342,
2448,
39184,
49261,
1157,
15706,
1219,
3606,
35887,
964,
39184,
9891,
665,
8686,
616,
49261,
1078,
253,
5234,
812,
2748,
1959,
10125,
273,
322,
5120,
253,
388,
13057,
44855,
407,
8888,
964,
322,
3604,
273,
3968,
3562,
247,
1781,
1214,
14,
33,
4311,
9137,
4544,
281,
8591,
253,
2165,
285,
322,
5120,
347,
247,
43796,
302,
323,
253,
2567,
964,
4928,
187,
426,
426,
14255,
366,
9508,
285,
17596,
426,
426,
4928,
19668,
426,
426,
426,
854,
1214,
14,
33,
2372,
2715,
426,
426,
426,
4928,
187,
329,
2715,
273,
322,
5120,
253,
388,
13057,
44855,
369,
3715,
407,
32198,
285,
4439,
275,
10226,
323,
322,
3604,
686,
84,
854,
1214,
14,
33,
2372,
49261,
1157,
253,
10718,
4155,
285,
10850,
39676,
964,
7850,
7484,
285,
30355,
17823,
403,
2074,
281,
253,
1668,
1214,
14,
33,
2372,
2715,
1157,
342,
1027,
1268,
16876,
285,
5865,
10434,
964,
380,
1268,
2216,
310,
892,
2569,
1157,
342,
642,
9118,
17417,
1157,
285,
322,
5120,
2550,
294,
1214,
14,
33,
4822,
521,
14445,
846,
1146,
4352,
964,
380,
2165,
556,
247,
1027,
35846,
1157,
9924,
407,
448,
9155,
2517,
26650,
714,
7958,
80,
24986,
5801,
287,
285,
1690,
521,
16672,
285,
41655,
273,
3440,
432,
253,
1668,
1214,
14,
33,
2372,
2715,
964,
733,
369,
253,
2457,
2165,
4439,
323,
253,
10718,
4155,
275,
3729,
3968,
964,
380,
10718,
4155,
2715,
369,
294,
1214,
14,
33,
4439,
323,
41884,
686,
84,
25750,
26466,
2579,
275,
3729,
3968,
327,
4223,
577,
1157,
4695,
1157,
285,
275,
3060,
327,
4223,
854,
964,
380,
10850,
39676,
2715,
369,
294,
1214,
14,
33,
4439,
323,
253,
26862,
495,
5942,
25750,
26466,
327,
3978,
2145,
1157,
4072,
1157,
285,
2908,
347,
271,
19444,
494,
2165,
275,
322,
5120,
38264,
49183,
1163,
9966,
686,
84,
18665,
323,
10850,
36,
4338,
285,
7464,
285,
322,
5120,
44969,
17078,
14820,
323,
35228,
374,
1157,
26252,
1157,
285,
7464,
964,
4928,
187,
426,
426,
426,
322,
5120,
253,
388,
13057,
44855,
39184,
426,
426,
426,
4928,
187,
329,
2245,
1157,
322,
5120,
253,
388,
13057,
44855,
39184,
1157,
369,
4439,
323,
253,
10850,
12143,
36808,
313,
443,
6327,
2387,
327,
4596,
1638,
1157,
5403,
275,
1986,
2077,
281,
1616,
253,
2165,
686,
84,
5813,
16565,
19054,
964,
733,
2908,
2067,
747,
3386,
1157,
824,
347,
253,
3745,
281,
5321,
2165,
4780,
1157,
247,
1268,
3609,
4500,
1157,
285,
271,
7359,
16488,
24629,
342,
253,
33757,
37521,
2118,
313,
417,
8927,
9009,
1919,
322,
5120,
253,
388,
13057,
44855,
374,
2387,
964,
7850,
3601,
310,
5777,
21282,
264,
275,
1157,
285,
12956,
281,
253,
443,
6327,
686,
84,
259,
1487,
8759,
4809,
4313,
964,
380,
2165,
2959,
4105,
10123,
1157,
342,
247,
6365,
317,
17425,
4868,
273,
5922,
2558,
3706,
253,
7015,
14672,
7514,
697,
4105,
9436,
281,
253,
10850,
12143,
36808,
313,
4795,
275,
247,
3468,
3665,
2281,
2387,
1157,
867,
2658,
20540,
90,
3440,
1157,
285,
4105,
23029,
273,
253,
3236,
30355,
964,
4928,
187,
426,
426,
426,
3631,
10108,
16784,
426,
426,
426,
4928,
187,
2726,
697,
2160,
1241,
323,
253,
39184,
1157,
322,
5120,
253,
388,
13057,
44855,
556,
644,
2245,
264,
323,
247,
4618,
2491,
273,
1728,
285,
45848,
49261,
285,
3367,
12823,
964,
733,
556,
5420,
275,
322,
5120,
3631,
10108,
313,
8878,
2387,
323,
253,
39184,
1157,
322,
5120,
15315,
313,
8210,
2387,
323,
253,
322,
3604,
38876,
285,
10850,
15,
681,
1157,
322,
5120,
44969,
17078,
313,
6752,
2387,
1157,
322,
5120,
44969,
17078,
14820,
313,
6157,
2387,
1157,
322,
5120,
686,
84,
37648,
39184,
17078,
313,
4748,
2387,
323,
253,
26252,
16951,
285,
35228,
495,
1157,
285,
322,
5120,
27015,
17078,
313,
4267,
2387,
323,
253,
26862,
20807,
964,
9157,
1157,
253,
2165,
310,
271,
19444,
494,
10921,
275,
253,
9667,
9508,
273,
322,
5120,
15345,
569,
964,
4928,
187,
426,
426,
426,
21578,
494,
16784,
426,
426,
426,
4928,
187,
322,
5120,
253,
388,
13057,
44855,
556,
644,
2130,
323,
512,
1264,
2201,
20117,
1214,
14,
33,
5978,
3492,
2165,
49261,
964,
733,
369,
629,
273,
253,
41884,
25750,
26466,
387,
253,
2579,
686,
84,
5403,
10199,
1157,
285,
369,
4439,
323,
253,
26252,
14309,
26476,
796,
285,
35228,
10701,
13515,
16906,
964,
380,
2165,
369,
4439,
323,
253,
41020,
27015,
1157,
41020,
3492,
1157,
285,
3492,
1214,
14,
33,
7032,
41020,
42026,
3210,
275,
5215,
285,
323,
8217,
686,
84,
16567,
2579,
313,
13333,
13971,
285,
41020,
5181,
3210,
2387,
275,
4162,
4748,
964,
322,
5120,
253,
388,
13057,
44855,
3395,
2130,
327,
10850,
53,
522,
275,
4397,
4748,
964,
496,
4437,
4267,
1157,
352,
369,
4439,
347,
247,
9664,
7464,
6184,
534,
369,
2245,
264,
281,
28984,
964,
380,
2165,
369,
2245,
264,
281,
767,
3909,
622,
3238,
313,
5559,
10223,
285,
253,
10550,
2051,
11869,
2387,
275,
4565,
4050,
964,
329,
867,
284,
3606,
6109,
2245,
1157,
3562,
970,
6416,
5219,
2522,
686,
84,
6724,
287,
10797,
3786,
908,
275,
253,
4332,
294,
16690,
273,
322,
5120,
3437,
1157,
369,
4439,
327,
16567,
1157,
15706,
253,
3236,
2245,
1157,
327,
2552,
1458,
1157,
4072,
342,
271,
10469,
2715,
4439,
253,
1563,
1388,
964,
380,
2245,
3386,
259,
1487,
8759,
15896,
1157,
253,
15266,
3745,
281,
5508,
20134,
1157,
247,
673,
2983,
4438,
1157,
285,
253,
19444,
494,
4500,
281,
1132,
347,
308,
5351,
390,
10381,
37746,
253,
444,
42290,
2072,
964,
380,
2165,
369,
671,
4439,
347,
629,
273,
253,
26862,
495,
5942,
495,
37,
6550,
982,
1386,
275,
2552,
4072,
275,
4047,
1157,
285,
11762,
275,
4565,
964,
4928,
187,
426,
426,
1720,
2409,
426,
426,
4928,
187,
322,
5120,
253,
388,
13057,
44855,
369,
21038,
26108,
387,
697,
3727,
285,
275,
19403,
10123,
1157,
342,
271,
11614,
1214,
14,
33,
2558,
9612,
13716,
387,
253,
2278,
9406,
1080,
10850,
34337,
723,
1754,
327,
7457,
10123,
964,
380,
2165,
10874,
3256,
253,
27264,
2962,
1157,
3782,
6053,
27264,
3645,
313,
534,
369,
4102,
4439,
323,
39184,
16136,
6053,
26862,
23890,
4155,
2387,
964,
5171,
18250,
273,
19179,
285,
16428,
12568,
2429,
253,
767,
275,
6864,
285,
7943,
322,
5120,
253,
388,
13057,
44855,
347,
1146,
7938,
1157,
342,
32950,
9830,
1157,
285,
6053,
27264,
3645,
347,
1907,
625,
346,
6864,
273,
1132,
346,
964,
2490,
8439,
398,
4879,
253,
2165,
686,
84,
30820,
1157,
7000,
15896,
964,
18250,
1925,
697,
3295,
6974,
346,
33073,
1157,
533,
1620,
6746,
763,
346,
1157,
9791,
2182,
253,
5016,
273,
3295,
342,
2508,
275,
253,
653,
31320,
1157,
24550,
1157,
285,
43588,
285,
12930,
697,
15896,
347,
253,
1682,
2130,
323,
253,
39184,
964,
8439,
254,
3452,
462,
466,
3083,
273,
10850,
1845,
1925,
253,
36930,
24550,
346,
5130,
1214,
14,
33,
42084,
346,
285,
346,
23535,
346,
1157,
534,
369,
32457,
407,
9601,
20310,
1100,
964,
4794,
281,
253,
15405,
398,
313,
14089,
2205,
1157,
39206,
1157,
285,
22579,
2387,
273,
22371,
1157,
346,
380,
15896,
285,
16904,
275,
322,
5120,
253,
388,
13057,
44855,
1056,
436,
247,
4092,
49865,
323,
253,
1682,
3492,
2165,
273
] |